]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - tools/quake3/common/unzip.c
Merge branch 'master' into divVerent/farplanedist-sky-fix
[xonotic/netradiant.git] / tools / quake3 / common / unzip.c
1 /*
2 WARNING: DO NOT UNCRUSTIFY
3 It will still compile after an uncrustify, but it will be *broken*
4 See https://github.com/TTimo/GtkRadiant/issues/33
5 */
6
7 /*
8 Copyright (C) 1999-2007 id Software, Inc. and contributors.
9 For a list of contributors, see the accompanying CONTRIBUTORS file.
10
11 This file is part of GtkRadiant.
12
13 GtkRadiant is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2 of the License, or
16 (at your option) any later version.
17
18 GtkRadiant is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 GNU General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with GtkRadiant; if not, write to the Free Software
25 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
26 */
27
28 /*****************************************************************************
29  * name:                unzip.c
30  *
31  * desc:                IO on .zip files using portions of zlib 
32  *
33  *
34  *****************************************************************************/
35
36 #include <stdlib.h>
37 #include <stdio.h>
38 #include <string.h>
39 #include "unzip.h"
40
41 // TTimo added for safe_malloc wrapping
42 #include "cmdlib.h"
43
44 /* unzip.h -- IO for uncompress .zip files using zlib 
45    Version 0.15 beta, Mar 19th, 1998,
46
47    Copyright (C) 1998 Gilles Vollant
48
49    This unzip package allow extract file from .ZIP file, compatible with PKZip 2.04g
50      WinZip, InfoZip tools and compatible.
51    Encryption and multi volume ZipFile (span) are not supported.
52    Old compressions used by old PKZip 1.x are not supported
53
54    THIS IS AN ALPHA VERSION. AT THIS STAGE OF DEVELOPPEMENT, SOMES API OR STRUCTURE
55    CAN CHANGE IN FUTURE VERSION !!
56    I WAIT FEEDBACK at mail info@winimage.com
57    Visit also http://www.winimage.com/zLibDll/unzip.htm for evolution
58
59    Condition of use and distribution are the same than zlib :
60
61   This software is provided 'as-is', without any express or implied
62   warranty.  In no event will the authors be held liable for any damages
63   arising from the use of this software.
64
65   Permission is granted to anyone to use this software for any purpose,
66   including commercial applications, and to alter it and redistribute it
67   freely, subject to the following restrictions:
68
69   1. The origin of this software must not be misrepresented; you must not
70      claim that you wrote the original software. If you use this software
71      in a product, an acknowledgment in the product documentation would be
72      appreciated but is not required.
73   2. Altered source versions must be plainly marked as such, and must not be
74      misrepresented as being the original software.
75   3. This notice may not be removed or altered from any source distribution.
76
77
78 */
79 /* for more info about .ZIP format, see 
80       ftp://ftp.cdrom.com/pub/infozip/doc/appnote-970311-iz.zip
81    PkWare has also a specification at :
82       ftp://ftp.pkware.com/probdesc.zip */
83
84 /* zlib.h -- interface of the 'zlib' general purpose compression library
85   version 1.1.3, July 9th, 1998
86
87   Copyright (C) 1995-1998 Jean-loup Gailly and Mark Adler
88
89   This software is provided 'as-is', without any express or implied
90   warranty.  In no event will the authors be held liable for any damages
91   arising from the use of this software.
92
93   Permission is granted to anyone to use this software for any purpose,
94   including commercial applications, and to alter it and redistribute it
95   freely, subject to the following restrictions:
96
97   1. The origin of this software must not be misrepresented; you must not
98      claim that you wrote the original software. If you use this software
99      in a product, an acknowledgment in the product documentation would be
100      appreciated but is not required.
101   2. Altered source versions must be plainly marked as such, and must not be
102      misrepresented as being the original software.
103   3. This notice may not be removed or altered from any source distribution.
104
105   Jean-loup Gailly        Mark Adler
106   jloup@gzip.org          madler@alumni.caltech.edu
107
108
109   The data format used by the zlib library is described by RFCs (Request for
110   Comments) 1950 to 1952 in the files ftp://ds.internic.net/rfc/rfc1950.txt
111   (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
112 */
113
114 /* zconf.h -- configuration of the zlib compression library
115  * Copyright (C) 1995-1998 Jean-loup Gailly.
116  * For conditions of distribution and use, see copyright notice in zlib.h 
117  */
118
119
120 #ifndef _ZCONF_H
121 #define _ZCONF_H
122
123 /* Maximum value for memLevel in deflateInit2 */
124 #ifndef MAX_MEM_LEVEL
125 #  ifdef MAXSEG_64K
126 #    define MAX_MEM_LEVEL 8
127 #  else
128 #    define MAX_MEM_LEVEL 9
129 #  endif
130 #endif
131
132 /* Maximum value for windowBits in deflateInit2 and inflateInit2.
133  * WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files
134  * created by gzip. (Files created by minigzip can still be extracted by
135  * gzip.)
136  */
137 #ifndef MAX_WBITS
138 #  define MAX_WBITS   15 /* 32K LZ77 window */
139 #endif
140
141 /* The memory requirements for deflate are (in bytes):
142             (1 << (windowBits+2)) +  (1 << (memLevel+9))
143  that is: 128K for windowBits=15  +  128K for memLevel = 8  (default values)
144  plus a few kilobytes for small objects. For example, if you want to reduce
145  the default memory requirements from 256K to 128K, compile with
146      make CFLAGS="-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7"
147  Of course this will generally degrade compression (there's no free lunch).
148
149    The memory requirements for inflate are (in bytes) 1 << windowBits
150  that is, 32K for windowBits=15 (default value) plus a few kilobytes
151  for small objects.
152 */
153
154                         /* Type declarations */
155
156 #ifndef OF /* function prototypes */
157 #define OF(args)  args
158 #endif
159
160 typedef unsigned char  Byte;  /* 8 bits */
161 typedef unsigned int   uInt;  /* 16 bits or more */
162 typedef unsigned long  uLong; /* 32 bits or more */
163 typedef Byte    *voidp;
164
165 #ifndef SEEK_SET
166 #  define SEEK_SET        0       /* Seek from beginning of file.  */
167 #  define SEEK_CUR        1       /* Seek from current position.  */
168 #  define SEEK_END        2       /* Set file pointer to EOF plus "offset" */
169 #endif
170
171 #endif /* _ZCONF_H */
172
173 #define ZLIB_VERSION "1.1.3"
174
175 /* 
176      The 'zlib' compression library provides in-memory compression and
177   decompression functions, including integrity checks of the uncompressed
178   data.  This version of the library supports only one compression method
179   (deflation) but other algorithms will be added later and will have the same
180   stream interface.
181
182      Compression can be done in a single step if the buffers are large
183   enough (for example if an input file is mmap'ed), or can be done by
184   repeated calls of the compression function.  In the latter case, the
185   application must provide more input and/or consume the output
186   (providing more output space) before each call.
187
188      The library also supports reading and writing files in gzip (.gz) format
189   with an interface similar to that of stdio.
190
191      The library does not install any signal handler. The decoder checks
192   the consistency of the compressed data, so the library should never
193   crash even in case of corrupted input.
194 */
195
196 /*
197    The application must update next_in and avail_in when avail_in has
198    dropped to zero. It must update next_out and avail_out when avail_out
199    has dropped to zero. The application must initialize zalloc, zfree and
200    opaque before calling the init function. All other fields are set by the
201    compression library and must not be updated by the application.
202
203    The opaque value provided by the application will be passed as the first
204    parameter for calls of zalloc and zfree. This can be useful for custom
205    memory management. The compression library attaches no meaning to the
206    opaque value.
207
208    zalloc must return Z_NULL if there is not enough memory for the object.
209    If zlib is used in a multi-threaded application, zalloc and zfree must be
210    thread safe.
211
212    On 16-bit systems, the functions zalloc and zfree must be able to allocate
213    exactly 65536 bytes, but will not be required to allocate more than this
214    if the symbol MAXSEG_64K is defined (see zconf.h). WARNING: On MSDOS,
215    pointers returned by zalloc for objects of exactly 65536 bytes *must*
216    have their offset normalized to zero. The default allocation function
217    provided by this library ensures this (see zutil.c). To reduce memory
218    requirements and avoid any allocation of 64K objects, at the expense of
219    compression ratio, compile the library with -DMAX_WBITS=14 (see zconf.h).
220
221    The fields total_in and total_out can be used for statistics or
222    progress reports. After compression, total_in holds the total size of
223    the uncompressed data and may be saved for use in the decompressor
224    (particularly if the decompressor wants to decompress everything in
225    a single step).
226 */
227
228                         /* constants */
229
230 #define Z_NO_FLUSH      0
231 #define Z_PARTIAL_FLUSH 1 /* will be removed, use Z_SYNC_FLUSH instead */
232 #define Z_SYNC_FLUSH    2
233 #define Z_FULL_FLUSH    3
234 #define Z_FINISH        4
235 /* Allowed flush values; see deflate() below for details */
236
237 #define Z_OK            0
238 #define Z_STREAM_END    1
239 #define Z_NEED_DICT     2
240 #define Z_ERRNO        (-1)
241 #define Z_STREAM_ERROR (-2)
242 #define Z_DATA_ERROR   (-3)
243 #define Z_MEM_ERROR    (-4)
244 #define Z_BUF_ERROR    (-5)
245 #define Z_VERSION_ERROR (-6)
246 /* Return codes for the compression/decompression functions. Negative
247  * values are errors, positive values are used for special but normal events.
248  */
249
250 #define Z_NO_COMPRESSION         0
251 #define Z_BEST_SPEED             1
252 #define Z_BEST_COMPRESSION       9
253 #define Z_DEFAULT_COMPRESSION  (-1)
254 /* compression levels */
255
256 #define Z_FILTERED            1
257 #define Z_HUFFMAN_ONLY        2
258 #define Z_DEFAULT_STRATEGY    0
259 /* compression strategy; see deflateInit2() below for details */
260
261 #define Z_BINARY   0
262 #define Z_ASCII    1
263 #define Z_UNKNOWN  2
264 /* Possible values of the data_type field */
265
266 #define Z_DEFLATED   8
267 /* The deflate compression method (the only one supported in this version) */
268
269 #define Z_NULL  0  /* for initializing zalloc, zfree, opaque */
270
271 #define zlib_version zlibVersion()
272 /* for compatibility with versions < 1.0.2 */
273
274                         /* basic functions */
275
276 const char * zlibVersion OF((void));
277 /* The application can compare zlibVersion and ZLIB_VERSION for consistency.
278    If the first character differs, the library code actually used is
279    not compatible with the zlib.h header file used by the application.
280    This check is automatically made by deflateInit and inflateInit.
281  */
282
283 /* 
284 int deflateInit OF((z_streamp strm, int level));
285
286      Initializes the internal stream state for compression. The fields
287    zalloc, zfree and opaque must be initialized before by the caller.
288    If zalloc and zfree are set to Z_NULL, deflateInit updates them to
289    use default allocation functions.
290
291      The compression level must be Z_DEFAULT_COMPRESSION, or between 0 and 9:
292    1 gives best speed, 9 gives best compression, 0 gives no compression at
293    all (the input data is simply copied a block at a time).
294    Z_DEFAULT_COMPRESSION requests a default compromise between speed and
295    compression (currently equivalent to level 6).
296
297      deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not
298    enough memory, Z_STREAM_ERROR if level is not a valid compression level,
299    Z_VERSION_ERROR if the zlib library version (zlib_version) is incompatible
300    with the version assumed by the caller (ZLIB_VERSION).
301    msg is set to null if there is no error message.  deflateInit does not
302    perform any compression: this will be done by deflate().
303 */
304
305
306 int deflate OF((z_streamp strm, int flush));
307 /*
308     deflate compresses as much data as possible, and stops when the input
309   buffer becomes empty or the output buffer becomes full. It may introduce some
310   output latency (reading input without producing any output) except when
311   forced to flush.
312
313     The detailed semantics are as follows. deflate performs one or both of the
314   following actions:
315
316   - Compress more input starting at next_in and update next_in and avail_in
317     accordingly. If not all input can be processed (because there is not
318     enough room in the output buffer), next_in and avail_in are updated and
319     processing will resume at this point for the next call of deflate().
320
321   - Provide more output starting at next_out and update next_out and avail_out
322     accordingly. This action is forced if the parameter flush is non zero.
323     Forcing flush frequently degrades the compression ratio, so this parameter
324     should be set only when necessary (in interactive applications).
325     Some output may be provided even if flush is not set.
326
327   Before the call of deflate(), the application should ensure that at least
328   one of the actions is possible, by providing more input and/or consuming
329   more output, and updating avail_in or avail_out accordingly; avail_out
330   should never be zero before the call. The application can consume the
331   compressed output when it wants, for example when the output buffer is full
332   (avail_out == 0), or after each call of deflate(). If deflate returns Z_OK
333   and with zero avail_out, it must be called again after making room in the
334   output buffer because there might be more output pending.
335
336     If the parameter flush is set to Z_SYNC_FLUSH, all pending output is
337   flushed to the output buffer and the output is aligned on a byte boundary, so
338   that the decompressor can get all input data available so far. (In particular
339   avail_in is zero after the call if enough output space has been provided
340   before the call.)  Flushing may degrade compression for some compression
341   algorithms and so it should be used only when necessary.
342
343     If flush is set to Z_FULL_FLUSH, all output is flushed as with
344   Z_SYNC_FLUSH, and the compression state is reset so that decompression can
345   restart from this point if previous compressed data has been damaged or if
346   random access is desired. Using Z_FULL_FLUSH too often can seriously degrade
347   the compression.
348
349     If deflate returns with avail_out == 0, this function must be called again
350   with the same value of the flush parameter and more output space (updated
351   avail_out), until the flush is complete (deflate returns with non-zero
352   avail_out).
353
354     If the parameter flush is set to Z_FINISH, pending input is processed,
355   pending output is flushed and deflate returns with Z_STREAM_END if there
356   was enough output space; if deflate returns with Z_OK, this function must be
357   called again with Z_FINISH and more output space (updated avail_out) but no
358   more input data, until it returns with Z_STREAM_END or an error. After
359   deflate has returned Z_STREAM_END, the only possible operations on the
360   stream are deflateReset or deflateEnd.
361   
362     Z_FINISH can be used immediately after deflateInit if all the compression
363   is to be done in a single step. In this case, avail_out must be at least
364   0.1% larger than avail_in plus 12 bytes.  If deflate does not return
365   Z_STREAM_END, then it must be called again as described above.
366
367     deflate() sets strm->adler to the adler32 checksum of all input read
368   so (that is, total_in bytes).
369
370     deflate() may update data_type if it can make a good guess about
371   the input data type (Z_ASCII or Z_BINARY). In doubt, the data is considered
372   binary. This field is only for information purposes and does not affect
373   the compression algorithm in any manner.
374
375     deflate() returns Z_OK if some progress has been made (more input
376   processed or more output produced), Z_STREAM_END if all input has been
377   consumed and all output has been produced (only when flush is set to
378   Z_FINISH), Z_STREAM_ERROR if the stream state was inconsistent (for example
379   if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible
380   (for example avail_in or avail_out was zero).
381 */
382
383
384 int deflateEnd OF((z_streamp strm));
385 /*
386      All dynamically allocated data structures for this stream are freed.
387    This function discards any unprocessed input and does not flush any
388    pending output.
389
390      deflateEnd returns Z_OK if success, Z_STREAM_ERROR if the
391    stream state was inconsistent, Z_DATA_ERROR if the stream was freed
392    prematurely (some input or output was discarded). In the error case,
393    msg may be set but then points to a static string (which must not be
394    deallocated).
395 */
396
397
398 /* 
399 int inflateInit OF((z_streamp strm));
400
401      Initializes the internal stream state for decompression. The fields
402    next_in, avail_in, zalloc, zfree and opaque must be initialized before by
403    the caller. If next_in is not Z_NULL and avail_in is large enough (the exact
404    value depends on the compression method), inflateInit determines the
405    compression method from the zlib header and allocates all data structures
406    accordingly; otherwise the allocation will be deferred to the first call of
407    inflate.  If zalloc and zfree are set to Z_NULL, inflateInit updates them to
408    use default allocation functions.
409
410      inflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough
411    memory, Z_VERSION_ERROR if the zlib library version is incompatible with the
412    version assumed by the caller.  msg is set to null if there is no error
413    message. inflateInit does not perform any decompression apart from reading
414    the zlib header if present: this will be done by inflate().  (So next_in and
415    avail_in may be modified, but next_out and avail_out are unchanged.)
416 */
417
418
419 int inflate OF((z_streamp strm, int flush));
420 /*
421     inflate decompresses as much data as possible, and stops when the input
422   buffer becomes empty or the output buffer becomes full. It may some
423   introduce some output latency (reading input without producing any output)
424   except when forced to flush.
425
426   The detailed semantics are as follows. inflate performs one or both of the
427   following actions:
428
429   - Decompress more input starting at next_in and update next_in and avail_in
430     accordingly. If not all input can be processed (because there is not
431     enough room in the output buffer), next_in is updated and processing
432     will resume at this point for the next call of inflate().
433
434   - Provide more output starting at next_out and update next_out and avail_out
435     accordingly.  inflate() provides as much output as possible, until there
436     is no more input data or no more space in the output buffer (see below
437     about the flush parameter).
438
439   Before the call of inflate(), the application should ensure that at least
440   one of the actions is possible, by providing more input and/or consuming
441   more output, and updating the next_* and avail_* values accordingly.
442   The application can consume the uncompressed output when it wants, for
443   example when the output buffer is full (avail_out == 0), or after each
444   call of inflate(). If inflate returns Z_OK and with zero avail_out, it
445   must be called again after making room in the output buffer because there
446   might be more output pending.
447
448     If the parameter flush is set to Z_SYNC_FLUSH, inflate flushes as much
449   output as possible to the output buffer. The flushing behavior of inflate is
450   not specified for values of the flush parameter other than Z_SYNC_FLUSH
451   and Z_FINISH, but the current implementation actually flushes as much output
452   as possible anyway.
453
454     inflate() should normally be called until it returns Z_STREAM_END or an
455   error. However if all decompression is to be performed in a single step
456   (a single call of inflate), the parameter flush should be set to
457   Z_FINISH. In this case all pending input is processed and all pending
458   output is flushed; avail_out must be large enough to hold all the
459   uncompressed data. (The size of the uncompressed data may have been saved
460   by the compressor for this purpose.) The next operation on this stream must
461   be inflateEnd to deallocate the decompression state. The use of Z_FINISH
462   is never required, but can be used to inform inflate that a faster routine
463   may be used for the single inflate() call.
464
465      If a preset dictionary is needed at this point (see inflateSetDictionary
466   below), inflate sets strm-adler to the adler32 checksum of the
467   dictionary chosen by the compressor and returns Z_NEED_DICT; otherwise 
468   it sets strm->adler to the adler32 checksum of all output produced
469   so (that is, total_out bytes) and returns Z_OK, Z_STREAM_END or
470   an error code as described below. At the end of the stream, inflate()
471   checks that its computed adler32 checksum is equal to that saved by the
472   compressor and returns Z_STREAM_END only if the checksum is correct.
473
474     inflate() returns Z_OK if some progress has been made (more input processed
475   or more output produced), Z_STREAM_END if the end of the compressed data has
476   been reached and all uncompressed output has been produced, Z_NEED_DICT if a
477   preset dictionary is needed at this point, Z_DATA_ERROR if the input data was
478   corrupted (input stream not conforming to the zlib format or incorrect
479   adler32 checksum), Z_STREAM_ERROR if the stream structure was inconsistent
480   (for example if next_in or next_out was NULL), Z_MEM_ERROR if there was not
481   enough memory, Z_BUF_ERROR if no progress is possible or if there was not
482   enough room in the output buffer when Z_FINISH is used. In the Z_DATA_ERROR
483   case, the application may then call inflateSync to look for a good
484   compression block.
485 */
486
487
488 int inflateEnd OF((z_streamp strm));
489 /*
490      All dynamically allocated data structures for this stream are freed.
491    This function discards any unprocessed input and does not flush any
492    pending output.
493
494      inflateEnd returns Z_OK if success, Z_STREAM_ERROR if the stream state
495    was inconsistent. In the error case, msg may be set but then points to a
496    static string (which must not be deallocated).
497 */
498
499                         /* Advanced functions */
500
501 /*
502     The following functions are needed only in some special applications.
503 */
504
505 /*   
506 int deflateInit2 OF((z_streamp strm,
507                                      int  level,
508                                      int  method,
509                                      int  windowBits,
510                                      int  memLevel,
511                                      int  strategy));
512
513      This is another version of deflateInit with more compression options. The
514    fields next_in, zalloc, zfree and opaque must be initialized before by
515    the caller.
516
517      The method parameter is the compression method. It must be Z_DEFLATED in
518    this version of the library.
519
520      The windowBits parameter is the base two logarithm of the window size
521    (the size of the history buffer).  It should be in the range 8..15 for this
522    version of the library. Larger values of this parameter result in better
523    compression at the expense of memory usage. The default value is 15 if
524    deflateInit is used instead.
525
526      The memLevel parameter specifies how much memory should be allocated
527    for the internal compression state. memLevel=1 uses minimum memory but
528    is slow and reduces compression ratio; memLevel=9 uses maximum memory
529    for optimal speed. The default value is 8. See zconf.h for total memory
530    usage as a function of windowBits and memLevel.
531
532      The strategy parameter is used to tune the compression algorithm. Use the
533    value Z_DEFAULT_STRATEGY for normal data, Z_FILTERED for data produced by a
534    filter (or predictor), or Z_HUFFMAN_ONLY to force Huffman encoding only (no
535    string match).  Filtered data consists mostly of small values with a
536    somewhat random distribution. In this case, the compression algorithm is
537    tuned to compress them better. The effect of Z_FILTERED is to force more
538    Huffman coding and less string matching; it is somewhat intermediate
539    between Z_DEFAULT and Z_HUFFMAN_ONLY. The strategy parameter only affects
540    the compression ratio but not the correctness of the compressed output even
541    if it is not set appropriately.
542
543       deflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
544    memory, Z_STREAM_ERROR if a parameter is invalid (such as an invalid
545    method). msg is set to null if there is no error message.  deflateInit2 does
546    not perform any compression: this will be done by deflate().
547 */
548                             
549 int deflateSetDictionary OF((z_streamp strm,
550                                              const Byte *dictionary,
551                                              uInt  dictLength));
552 /*
553      Initializes the compression dictionary from the given byte sequence
554    without producing any compressed output. This function must be called
555    immediately after deflateInit, deflateInit2 or deflateReset, before any
556    call of deflate. The compressor and decompressor must use exactly the same
557    dictionary (see inflateSetDictionary).
558
559      The dictionary should consist of strings (byte sequences) that are likely
560    to be encountered later in the data to be compressed, with the most commonly
561    used strings preferably put towards the end of the dictionary. Using a
562    dictionary is most useful when the data to be compressed is short and can be
563    predicted with good accuracy; the data can then be compressed better than
564    with the default empty dictionary.
565
566      Depending on the size of the compression data structures selected by
567    deflateInit or deflateInit2, a part of the dictionary may in effect be
568    discarded, for example if the dictionary is larger than the window size in
569    deflate or deflate2. Thus the strings most likely to be useful should be
570    put at the end of the dictionary, not at the front.
571
572      Upon return of this function, strm->adler is set to the Adler32 value
573    of the dictionary; the decompressor may later use this value to determine
574    which dictionary has been used by the compressor. (The Adler32 value
575    applies to the whole dictionary even if only a subset of the dictionary is
576    actually used by the compressor.)
577
578      deflateSetDictionary returns Z_OK if success, or Z_STREAM_ERROR if a
579    parameter is invalid (such as NULL dictionary) or the stream state is
580    inconsistent (for example if deflate has already been called for this stream
581    or if the compression method is bsort). deflateSetDictionary does not
582    perform any compression: this will be done by deflate().
583 */
584
585 int deflateCopy OF((z_streamp dest,
586                                     z_streamp source));
587 /*
588      Sets the destination stream as a complete copy of the source stream.
589
590      This function can be useful when several compression strategies will be
591    tried, for example when there are several ways of pre-processing the input
592    data with a filter. The streams that will be discarded should then be freed
593    by calling deflateEnd.  Note that deflateCopy duplicates the internal
594    compression state which can be quite large, so this strategy is slow and
595    can consume lots of memory.
596
597      deflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not
598    enough memory, Z_STREAM_ERROR if the source stream state was inconsistent
599    (such as zalloc being NULL). msg is left unchanged in both source and
600    destination.
601 */
602
603 int deflateReset OF((z_streamp strm));
604 /*
605      This function is equivalent to deflateEnd followed by deflateInit,
606    but does not free and reallocate all the internal compression state.
607    The stream will keep the same compression level and any other attributes
608    that may have been set by deflateInit2.
609
610       deflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source
611    stream state was inconsistent (such as zalloc or state being NULL).
612 */
613
614 int deflateParams OF((z_streamp strm,
615                                       int level,
616                                       int strategy));
617 /*
618      Dynamically update the compression level and compression strategy.  The
619    interpretation of level and strategy is as in deflateInit2.  This can be
620    used to switch between compression and straight copy of the input data, or
621    to switch to a different kind of input data requiring a different
622    strategy. If the compression level is changed, the input available so far
623    is compressed with the old level (and may be flushed); the new level will
624    take effect only at the next call of deflate().
625
626      Before the call of deflateParams, the stream state must be set as for
627    a call of deflate(), since the currently available input may have to
628    be compressed and flushed. In particular, strm->avail_out must be non-zero.
629
630      deflateParams returns Z_OK if success, Z_STREAM_ERROR if the source
631    stream state was inconsistent or if a parameter was invalid, Z_BUF_ERROR
632    if strm->avail_out was zero.
633 */
634
635 /*   
636 int inflateInit2 OF((z_streamp strm,
637                                      int  windowBits));
638
639      This is another version of inflateInit with an extra parameter. The
640    fields next_in, avail_in, zalloc, zfree and opaque must be initialized
641    before by the caller.
642
643      The windowBits parameter is the base two logarithm of the maximum window
644    size (the size of the history buffer).  It should be in the range 8..15 for
645    this version of the library. The default value is 15 if inflateInit is used
646    instead. If a compressed stream with a larger window size is given as
647    input, inflate() will return with the error code Z_DATA_ERROR instead of
648    trying to allocate a larger window.
649
650       inflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
651    memory, Z_STREAM_ERROR if a parameter is invalid (such as a negative
652    memLevel). msg is set to null if there is no error message.  inflateInit2
653    does not perform any decompression apart from reading the zlib header if
654    present: this will be done by inflate(). (So next_in and avail_in may be
655    modified, but next_out and avail_out are unchanged.)
656 */
657
658 int inflateSetDictionary OF((z_streamp strm,
659                                              const Byte *dictionary,
660                                              uInt  dictLength));
661 /*
662      Initializes the decompression dictionary from the given uncompressed byte
663    sequence. This function must be called immediately after a call of inflate
664    if this call returned Z_NEED_DICT. The dictionary chosen by the compressor
665    can be determined from the Adler32 value returned by this call of
666    inflate. The compressor and decompressor must use exactly the same
667    dictionary (see deflateSetDictionary).
668
669      inflateSetDictionary returns Z_OK if success, Z_STREAM_ERROR if a
670    parameter is invalid (such as NULL dictionary) or the stream state is
671    inconsistent, Z_DATA_ERROR if the given dictionary doesn't match the
672    expected one (incorrect Adler32 value). inflateSetDictionary does not
673    perform any decompression: this will be done by subsequent calls of
674    inflate().
675 */
676
677 int inflateSync OF((z_streamp strm));
678 /* 
679     Skips invalid compressed data until a full flush point (see above the
680   description of deflate with Z_FULL_FLUSH) can be found, or until all
681   available input is skipped. No output is provided.
682
683     inflateSync returns Z_OK if a full flush point has been found, Z_BUF_ERROR
684   if no more input was provided, Z_DATA_ERROR if no flush point has been found,
685   or Z_STREAM_ERROR if the stream structure was inconsistent. In the success
686   case, the application may save the current current value of total_in which
687   indicates where valid compressed data was found. In the error case, the
688   application may repeatedly call inflateSync, providing more input each time,
689   until success or end of the input data.
690 */
691
692 int inflateReset OF((z_streamp strm));
693 /*
694      This function is equivalent to inflateEnd followed by inflateInit,
695    but does not free and reallocate all the internal decompression state.
696    The stream will keep attributes that may have been set by inflateInit2.
697
698       inflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source
699    stream state was inconsistent (such as zalloc or state being NULL).
700 */
701
702
703                         /* utility functions */
704
705 /*
706      The following utility functions are implemented on top of the
707    basic stream-oriented functions. To simplify the interface, some
708    default options are assumed (compression level and memory usage,
709    standard memory allocation functions). The source code of these
710    utility functions can easily be modified if you need special options.
711 */
712
713 int compress OF((Byte *dest,   uLong *destLen,
714                                  const Byte *source, uLong sourceLen));
715 /*
716      Compresses the source buffer into the destination buffer.  sourceLen is
717    the byte length of the source buffer. Upon entry, destLen is the total
718    size of the destination buffer, which must be at least 0.1% larger than
719    sourceLen plus 12 bytes. Upon exit, destLen is the actual size of the
720    compressed buffer.
721      This function can be used to compress a whole file at once if the
722    input file is mmap'ed.
723      compress returns Z_OK if success, Z_MEM_ERROR if there was not
724    enough memory, Z_BUF_ERROR if there was not enough room in the output
725    buffer.
726 */
727
728 int compress2 OF((Byte *dest,   uLong *destLen,
729                                   const Byte *source, uLong sourceLen,
730                                   int level));
731 /*
732      Compresses the source buffer into the destination buffer. The level
733    parameter has the same meaning as in deflateInit.  sourceLen is the byte
734    length of the source buffer. Upon entry, destLen is the total size of the
735    destination buffer, which must be at least 0.1% larger than sourceLen plus
736    12 bytes. Upon exit, destLen is the actual size of the compressed buffer.
737
738      compress2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
739    memory, Z_BUF_ERROR if there was not enough room in the output buffer,
740    Z_STREAM_ERROR if the level parameter is invalid.
741 */
742
743 int uncompress OF((Byte *dest,   uLong *destLen,
744                                    const Byte *source, uLong sourceLen));
745 /*
746      Decompresses the source buffer into the destination buffer.  sourceLen is
747    the byte length of the source buffer. Upon entry, destLen is the total
748    size of the destination buffer, which must be large enough to hold the
749    entire uncompressed data. (The size of the uncompressed data must have
750    been saved previously by the compressor and transmitted to the decompressor
751    by some mechanism outside the scope of this compression library.)
752    Upon exit, destLen is the actual size of the compressed buffer.
753      This function can be used to decompress a whole file at once if the
754    input file is mmap'ed.
755
756      uncompress returns Z_OK if success, Z_MEM_ERROR if there was not
757    enough memory, Z_BUF_ERROR if there was not enough room in the output
758    buffer, or Z_DATA_ERROR if the input data was corrupted.
759 */
760
761
762 typedef voidp gzFile;
763
764 gzFile gzopen  OF((const char *path, const char *mode));
765 /*
766      Opens a gzip (.gz) file for reading or writing. The mode parameter
767    is as in fopen ("rb" or "wb") but can also include a compression level
768    ("wb9") or a strategy: 'f' for filtered data as in "wb6f", 'h' for
769    Huffman only compression as in "wb1h". (See the description
770    of deflateInit2 for more information about the strategy parameter.)
771
772      gzopen can be used to read a file which is not in gzip format; in this
773    case gzread will directly read from the file without decompression.
774
775      gzopen returns NULL if the file could not be opened or if there was
776    insufficient memory to allocate the (de)compression state; errno
777    can be checked to distinguish the two cases (if errno is zero, the
778    zlib error is Z_MEM_ERROR).  */
779
780 gzFile gzdopen  OF((int fd, const char *mode));
781 /*
782      gzdopen() associates a gzFile with the file descriptor fd.  File
783    descriptors are obtained from calls like open, dup, creat, pipe or
784    fileno (in the file has been previously opened with fopen).
785    The mode parameter is as in gzopen.
786      The next call of gzclose on the returned gzFile will also close the
787    file descriptor fd, just like fclose(fdopen(fd), mode) closes the file
788    descriptor fd. If you want to keep fd open, use gzdopen(dup(fd), mode).
789      gzdopen returns NULL if there was insufficient memory to allocate
790    the (de)compression state.
791 */
792
793 int gzsetparams OF((gzFile file, int level, int strategy));
794 /*
795      Dynamically update the compression level or strategy. See the description
796    of deflateInit2 for the meaning of these parameters.
797      gzsetparams returns Z_OK if success, or Z_STREAM_ERROR if the file was not
798    opened for writing.
799 */
800
801 int    gzread  OF((gzFile file, voidp buf, unsigned len));
802 /*
803      Reads the given number of uncompressed bytes from the compressed file.
804    If the input file was not in gzip format, gzread copies the given number
805    of bytes into the buffer.
806      gzread returns the number of uncompressed bytes actually read (0 for
807    end of file, -1 for error). */
808
809 int    gzwrite OF((gzFile file, 
810                                    const voidp buf, unsigned len));
811 /*
812      Writes the given number of uncompressed bytes into the compressed file.
813    gzwrite returns the number of uncompressed bytes actually written
814    (0 in case of error).
815 */
816
817 int    gzprintf OF((gzFile file, const char *format, ...));
818 /*
819      Converts, formats, and writes the args to the compressed file under
820    control of the format string, as in fprintf. gzprintf returns the number of
821    uncompressed bytes actually written (0 in case of error).
822 */
823
824 int gzputs OF((gzFile file, const char *s));
825 /*
826       Writes the given null-terminated string to the compressed file, excluding
827    the terminating null character.
828       gzputs returns the number of characters written, or -1 in case of error.
829 */
830
831 char * gzgets OF((gzFile file, char *buf, int len));
832 /*
833       Reads bytes from the compressed file until len-1 characters are read, or
834    a newline character is read and transferred to buf, or an end-of-file
835    condition is encountered.  The string is then terminated with a null
836    character.
837       gzgets returns buf, or Z_NULL in case of error.
838 */
839
840 int    gzputc OF((gzFile file, int c));
841 /*
842       Writes c, converted to an unsigned char, into the compressed file.
843    gzputc returns the value that was written, or -1 in case of error.
844 */
845
846 int    gzgetc OF((gzFile file));
847 /*
848       Reads one byte from the compressed file. gzgetc returns this byte
849    or -1 in case of end of file or error.
850 */
851
852 int    gzflush OF((gzFile file, int flush));
853 /*
854      Flushes all pending output into the compressed file. The parameter
855    flush is as in the deflate() function. The return value is the zlib
856    error number (see function gzerror below). gzflush returns Z_OK if
857    the flush parameter is Z_FINISH and all output could be flushed.
858      gzflush should be called only when strictly necessary because it can
859    degrade compression.
860 */
861
862 long gzseek OF((gzFile file,
863                                       long offset, int whence));
864 /* 
865       Sets the starting position for the next gzread or gzwrite on the
866    given compressed file. The offset represents a number of bytes in the
867    uncompressed data stream. The whence parameter is defined as in lseek(2);
868    the value SEEK_END is not supported.
869      If the file is opened for reading, this function is emulated but can be
870    extremely slow. If the file is opened for writing, only forward seeks are
871    supported; gzseek then compresses a sequence of zeroes up to the new
872    starting position.
873
874       gzseek returns the resulting offset location as measured in bytes from
875    the beginning of the uncompressed stream, or -1 in case of error, in
876    particular if the file is opened for writing and the new starting position
877    would be before the current position.
878 */
879
880 int    gzrewind OF((gzFile file));
881 /*
882      Rewinds the given file. This function is supported only for reading.
883
884    gzrewind(file) is equivalent to (int)gzseek(file, 0L, SEEK_SET)
885 */
886
887 long    gztell OF((gzFile file));
888 /*
889      Returns the starting position for the next gzread or gzwrite on the
890    given compressed file. This position represents a number of bytes in the
891    uncompressed data stream.
892
893    gztell(file) is equivalent to gzseek(file, 0L, SEEK_CUR)
894 */
895
896 int gzeof OF((gzFile file));
897 /*
898      Returns 1 when EOF has previously been detected reading the given
899    input stream, otherwise zero.
900 */
901
902 int    gzclose OF((gzFile file));
903 /*
904      Flushes all pending output if necessary, closes the compressed file
905    and deallocates all the (de)compression state. The return value is the zlib
906    error number (see function gzerror below).
907 */
908
909 const char * gzerror OF((gzFile file, int *errnum));
910 /*
911      Returns the error message for the last error which occurred on the
912    given compressed file. errnum is set to zlib error number. If an
913    error occurred in the file system and not in the compression library,
914    errnum is set to Z_ERRNO and the application may consult errno
915    to get the exact error code.
916 */
917
918                         /* checksum functions */
919
920 /*
921      These functions are not related to compression but are exported
922    anyway because they might be useful in applications using the
923    compression library.
924 */
925
926 uLong adler32 OF((uLong adler, const Byte *buf, uInt len));
927
928 /*
929      Update a running Adler-32 checksum with the bytes buf[0..len-1] and
930    return the updated checksum. If buf is NULL, this function returns
931    the required initial value for the checksum.
932    An Adler-32 checksum is almost as reliable as a CRC32 but can be computed
933    much faster. Usage example:
934
935      uLong adler = adler32(0L, Z_NULL, 0);
936
937      while (read_buffer(buffer, length) != EOF) {
938        adler = adler32(adler, buffer, length);
939      }
940      if (adler != original_adler) error();
941 */
942
943 uLong crc32   OF((uLong crc, const Byte *buf, uInt len));
944 /*
945      Update a running crc with the bytes buf[0..len-1] and return the updated
946    crc. If buf is NULL, this function returns the required initial value
947    for the crc. Pre- and post-conditioning (one's complement) is performed
948    within this function so it shouldn't be done by the application.
949    Usage example:
950
951      uLong crc = crc32(0L, Z_NULL, 0);
952
953      while (read_buffer(buffer, length) != EOF) {
954        crc = crc32(crc, buffer, length);
955      }
956      if (crc != original_crc) error();
957 */
958
959 // private stuff to not include cmdlib.h
960 /*
961 ============================================================================
962
963                                         BYTE ORDER FUNCTIONS
964
965 ============================================================================
966 */
967
968 #ifdef _SGI_SOURCE
969 #define __BIG_ENDIAN__
970 #endif
971
972 #ifdef __BIG_ENDIAN__
973
974 short   __LittleShort (short l)
975 {
976         byte    b1,b2;
977
978         b1 = l&255;
979         b2 = (l>>8)&255;
980
981         return (b1<<8) + b2;
982 }
983
984 short   __BigShort (short l)
985 {
986         return l;
987 }
988
989
990 int    __LittleLong (int l)
991 {
992         byte    b1,b2,b3,b4;
993
994         b1 = l&255;
995         b2 = (l>>8)&255;
996         b3 = (l>>16)&255;
997         b4 = (l>>24)&255;
998
999         return ((int)b1<<24) + ((int)b2<<16) + ((int)b3<<8) + b4;
1000 }
1001
1002 int    __BigLong (int l)
1003 {
1004         return l;
1005 }
1006
1007
1008 float   __LittleFloat (float l)
1009 {
1010         union {byte b[4]; float f;} in, out;
1011         
1012         in.f = l;
1013         out.b[0] = in.b[3];
1014         out.b[1] = in.b[2];
1015         out.b[2] = in.b[1];
1016         out.b[3] = in.b[0];
1017         
1018         return out.f;
1019 }
1020
1021 float   __BigFloat (float l)
1022 {
1023         return l;
1024 }
1025
1026
1027 #else
1028
1029
1030 short   __BigShort (short l)
1031 {
1032         byte    b1,b2;
1033
1034         b1 = l&255;
1035         b2 = (l>>8)&255;
1036
1037         return (b1<<8) + b2;
1038 }
1039
1040 short   __LittleShort (short l)
1041 {
1042         return l;
1043 }
1044
1045
1046 int    __BigLong (int l)
1047 {
1048         byte    b1,b2,b3,b4;
1049
1050         b1 = l&255;
1051         b2 = (l>>8)&255;
1052         b3 = (l>>16)&255;
1053         b4 = (l>>24)&255;
1054
1055         return ((int)b1<<24) + ((int)b2<<16) + ((int)b3<<8) + b4;
1056 }
1057
1058 int    __LittleLong (int l)
1059 {
1060         return l;
1061 }
1062
1063 float   __BigFloat (float l)
1064 {
1065         union {byte b[4]; float f;} in, out;
1066         
1067         in.f = l;
1068         out.b[0] = in.b[3];
1069         out.b[1] = in.b[2];
1070         out.b[2] = in.b[1];
1071         out.b[3] = in.b[0];
1072         
1073         return out.f;
1074 }
1075
1076 float   __LittleFloat (float l)
1077 {
1078         return l;
1079 }
1080
1081
1082
1083 #endif
1084
1085
1086
1087
1088                         /* various hacks, don't look :) */
1089
1090 /* deflateInit and inflateInit are macros to allow checking the zlib version
1091  * and the compiler's view of z_stream:
1092  */
1093 int deflateInit_ OF((z_streamp strm, int level,
1094                                      const char *version, int stream_size));
1095 int inflateInit_ OF((z_streamp strm,
1096                                      const char *version, int stream_size));
1097 int deflateInit2_ OF((z_streamp strm, int  level, int  method,
1098                                       int windowBits, int memLevel,
1099                                       int strategy, const char *version,
1100                                       int stream_size));
1101 int inflateInit2_ OF((z_streamp strm, int  windowBits,
1102                                       const char *version, int stream_size));
1103 #define deflateInit(strm, level) \
1104         deflateInit_((strm), (level),       ZLIB_VERSION, sizeof(z_stream))
1105 #define inflateInit(strm) \
1106         inflateInit_((strm),                ZLIB_VERSION, sizeof(z_stream))
1107 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \
1108         deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\
1109                       (strategy),           ZLIB_VERSION, sizeof(z_stream))
1110 #define inflateInit2(strm, windowBits) \
1111         inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream))
1112
1113
1114 const char   * zError           OF((int err));
1115 int            inflateSyncPoint OF((z_streamp z));
1116 const uLong * get_crc_table    OF((void));
1117
1118 typedef unsigned char  uch;
1119 typedef unsigned short ush;
1120 typedef unsigned long  ulg;
1121
1122 extern const char *z_errmsg[10]; /* indexed by 2-zlib_error */
1123 /* (size given to avoid silly warnings with Visual C++) */
1124
1125 #define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)]
1126
1127 #define ERR_RETURN(strm,err) \
1128   return (strm->msg = (char*)ERR_MSG(err), (err))
1129 /* To be used only when the state is known to be valid */
1130
1131         /* common constants */
1132
1133 #ifndef DEF_WBITS
1134 #  define DEF_WBITS MAX_WBITS
1135 #endif
1136 /* default windowBits for decompression. MAX_WBITS is for compression only */
1137
1138 #if MAX_MEM_LEVEL >= 8
1139 #  define DEF_MEM_LEVEL 8
1140 #else
1141 #  define DEF_MEM_LEVEL  MAX_MEM_LEVEL
1142 #endif
1143 /* default memLevel */
1144
1145 #define STORED_BLOCK 0
1146 #define STATIC_TREES 1
1147 #define DYN_TREES    2
1148 /* The three kinds of block type */
1149
1150 #define MIN_MATCH  3
1151 #define MAX_MATCH  258
1152 /* The minimum and maximum match lengths */
1153
1154 #define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
1155
1156         /* target dependencies */
1157
1158         /* Common defaults */
1159
1160 #ifndef OS_CODE
1161 #  define OS_CODE  0x03  /* assume Unix */
1162 #endif
1163
1164 #ifndef F_OPEN
1165 #  define F_OPEN(name, mode) fopen((name), (mode))
1166 #endif
1167
1168          /* functions */
1169
1170 #ifdef HAVE_STRERROR
1171    extern char *strerror OF((int));
1172 #  define zstrerror(errnum) strerror(errnum)
1173 #else
1174 #  define zstrerror(errnum) ""
1175 #endif
1176
1177 #define zmemcpy memcpy
1178 #define zmemcmp memcmp
1179 #define zmemzero(dest, len) memset(dest, 0, len)
1180
1181 /* Diagnostic functions */
1182 #ifdef _ZIP_DEBUG_
1183    int z_verbose = 0;
1184 #  define Assert(cond,msg) assert(cond);
1185    //{if(!(cond)) Sys_Error(msg);}
1186 #  define Trace(x) {if (z_verbose>=0) Sys_Error x ;}
1187 #  define Tracev(x) {if (z_verbose>0) Sys_Error x ;}
1188 #  define Tracevv(x) {if (z_verbose>1) Sys_Error x ;}
1189 #  define Tracec(c,x) {if (z_verbose>0 && (c)) Sys_Error x ;}
1190 #  define Tracecv(c,x) {if (z_verbose>1 && (c)) Sys_Error x ;}
1191 #else
1192 #  define Assert(cond,msg)
1193 #  define Trace(x)
1194 #  define Tracev(x)
1195 #  define Tracevv(x)
1196 #  define Tracec(c,x)
1197 #  define Tracecv(c,x)
1198 #endif
1199
1200
1201 typedef uLong (*check_func) OF((uLong check, const Byte *buf, uInt len));
1202 voidp zcalloc OF((voidp opaque, unsigned items, unsigned size));
1203 void   zcfree  OF((voidp opaque, voidp ptr));
1204
1205 #define ZALLOC(strm, items, size) \
1206            (*((strm)->zalloc))((strm)->opaque, (items), (size))
1207 #define ZFREE(strm, addr)  (*((strm)->zfree))((strm)->opaque, (voidp)(addr))
1208 #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
1209
1210
1211 #if !defined(unix) && !defined(CASESENSITIVITYDEFAULT_YES) && \
1212                       !defined(CASESENSITIVITYDEFAULT_NO)
1213 #define CASESENSITIVITYDEFAULT_NO
1214 #endif
1215
1216
1217 #ifndef UNZ_BUFSIZE
1218 #define UNZ_BUFSIZE (65536)
1219 #endif
1220
1221 #ifndef UNZ_MAXFILENAMEINZIP
1222 #define UNZ_MAXFILENAMEINZIP (256)
1223 #endif
1224
1225 #ifndef ALLOC
1226 # define ALLOC(size) (safe_malloc(size))
1227 #endif
1228 #ifndef TRYFREE
1229 # define TRYFREE(p) {if (p) free(p);}
1230 #endif
1231
1232 #define SIZECENTRALDIRITEM (0x2e)
1233 #define SIZEZIPLOCALHEADER (0x1e)
1234
1235
1236
1237 /* ===========================================================================
1238      Read a byte from a gz_stream; update next_in and avail_in. Return EOF
1239    for end of file.
1240    IN assertion: the stream s has been sucessfully opened for reading.
1241 */
1242
1243 /*
1244 static int unzlocal_getByte(FILE *fin,int *pi)
1245 {
1246     unsigned char c;
1247         int err = fread(&c, 1, 1, fin);
1248     if (err==1)
1249     {
1250         *pi = (int)c;
1251         return UNZ_OK;
1252     }
1253     else
1254     {
1255         if (ferror(fin)) 
1256             return UNZ_ERRNO;
1257         else
1258             return UNZ_EOF;
1259     }
1260 }
1261 */
1262
1263 /* ===========================================================================
1264    Reads a long in LSB order from the given gz_stream. Sets 
1265 */
1266 static int unzlocal_getShort (FILE* fin, uLong *pX)
1267 {
1268         short   v;
1269
1270         if ( fread( &v, sizeof( v ), 1, fin ) != 1 ) {
1271                 return UNZ_EOF;
1272         }
1273
1274         *pX = __LittleShort( v);
1275         return UNZ_OK;
1276
1277 /*
1278     uLong x ;
1279     int i;
1280     int err;
1281
1282     err = unzlocal_getByte(fin,&i);
1283     x = (uLong)i;
1284     
1285     if (err==UNZ_OK)
1286         err = unzlocal_getByte(fin,&i);
1287     x += ((uLong)i)<<8;
1288    
1289     if (err==UNZ_OK)
1290         *pX = x;
1291     else
1292         *pX = 0;
1293     return err;
1294 */
1295 }
1296
1297 static int unzlocal_getLong (FILE *fin, uLong *pX)
1298 {
1299         int             v;
1300
1301         if ( fread( &v, sizeof( v ), 1, fin ) != 1 ) {
1302                 return UNZ_EOF;
1303         }
1304
1305         *pX = __LittleLong( v);
1306         return UNZ_OK;
1307
1308 /*
1309     uLong x ;
1310     int i;
1311     int err;
1312
1313     err = unzlocal_getByte(fin,&i);
1314     x = (uLong)i;
1315     
1316     if (err==UNZ_OK)
1317         err = unzlocal_getByte(fin,&i);
1318     x += ((uLong)i)<<8;
1319
1320     if (err==UNZ_OK)
1321         err = unzlocal_getByte(fin,&i);
1322     x += ((uLong)i)<<16;
1323
1324     if (err==UNZ_OK)
1325         err = unzlocal_getByte(fin,&i);
1326     x += ((uLong)i)<<24;
1327    
1328     if (err==UNZ_OK)
1329         *pX = x;
1330     else
1331         *pX = 0;
1332     return err;
1333 */
1334 }
1335
1336
1337 /* My own strcmpi / strcasecmp */
1338 static int strcmpcasenosensitive_internal (const char* fileName1,const char* fileName2)
1339 {
1340         for (;;)
1341         {
1342                 char c1=*(fileName1++);
1343                 char c2=*(fileName2++);
1344                 if ((c1>='a') && (c1<='z'))
1345                         c1 -= 0x20;
1346                 if ((c2>='a') && (c2<='z'))
1347                         c2 -= 0x20;
1348                 if (c1=='\0')
1349                         return ((c2=='\0') ? 0 : -1);
1350                 if (c2=='\0')
1351                         return 1;
1352                 if (c1<c2)
1353                         return -1;
1354                 if (c1>c2)
1355                         return 1;
1356         }
1357 }
1358
1359
1360 #ifdef  CASESENSITIVITYDEFAULT_NO
1361 #define CASESENSITIVITYDEFAULTVALUE 2
1362 #else
1363 #define CASESENSITIVITYDEFAULTVALUE 1
1364 #endif
1365
1366 #ifndef STRCMPCASENOSENTIVEFUNCTION
1367 #define STRCMPCASENOSENTIVEFUNCTION strcmpcasenosensitive_internal
1368 #endif
1369
1370 /* 
1371    Compare two filename (fileName1,fileName2).
1372    If iCaseSenisivity = 1, comparision is case sensitivity (like strcmp)
1373    If iCaseSenisivity = 2, comparision is not case sensitivity (like strcmpi
1374                                                                 or strcasecmp)
1375    If iCaseSenisivity = 0, case sensitivity is defaut of your operating system
1376         (like 1 on Unix, 2 on Windows)
1377
1378 */
1379 extern int unzStringFileNameCompare (const char* fileName1,const char* fileName2,int iCaseSensitivity)
1380 {
1381         if (iCaseSensitivity==0)
1382                 iCaseSensitivity=CASESENSITIVITYDEFAULTVALUE;
1383
1384         if (iCaseSensitivity==1)
1385                 return strcmp(fileName1,fileName2);
1386
1387         return STRCMPCASENOSENTIVEFUNCTION(fileName1,fileName2);
1388
1389
1390 #define BUFREADCOMMENT (0x400)
1391
1392 /*
1393   Locate the Central directory of a zipfile (at the end, just before
1394     the global comment)
1395 */
1396 static uLong unzlocal_SearchCentralDir(FILE *fin)
1397 {
1398         unsigned char* buf;
1399         uLong uSizeFile;
1400         uLong uBackRead;
1401         uLong uMaxBack=0xffff; /* maximum size of global comment */
1402         uLong uPosFound=0;
1403         
1404         if (fseek(fin,0,SEEK_END) != 0)
1405                 return 0;
1406
1407
1408         uSizeFile = ftell( fin );
1409         
1410         if (uMaxBack>uSizeFile)
1411                 uMaxBack = uSizeFile;
1412
1413         buf = (unsigned char*)safe_malloc(BUFREADCOMMENT+4);
1414         if (buf==NULL)
1415                 return 0;
1416
1417         uBackRead = 4;
1418         while (uBackRead<uMaxBack)
1419         {
1420                 uLong uReadSize,uReadPos ;
1421                 int i;
1422                 if (uBackRead+BUFREADCOMMENT>uMaxBack) 
1423                         uBackRead = uMaxBack;
1424                 else
1425                         uBackRead+=BUFREADCOMMENT;
1426                 uReadPos = uSizeFile-uBackRead ;
1427                 
1428                 uReadSize = ((BUFREADCOMMENT+4) < (uSizeFile-uReadPos)) ? 
1429                      (BUFREADCOMMENT+4) : (uSizeFile-uReadPos);
1430                 if (fseek(fin,uReadPos,SEEK_SET)!=0)
1431                         break;
1432
1433                 if (fread(buf,(uInt)uReadSize,1,fin)!=1)
1434                         break;
1435
1436                 for (i=(int)uReadSize-3; (i--)>0;)
1437                         if (((*(buf+i))==0x50) && ((*(buf+i+1))==0x4b) && 
1438                                 ((*(buf+i+2))==0x05) && ((*(buf+i+3))==0x06))
1439                         {
1440                                 uPosFound = uReadPos+i;
1441                                 break;
1442                         }
1443
1444                 if (uPosFound!=0)
1445                         break;
1446         }
1447         free(buf);
1448         return uPosFound;
1449 }
1450
1451 extern unzFile unzReOpen (const char* path, unzFile file)
1452 {
1453         unz_s *s;
1454         FILE * fin;
1455
1456     fin=fopen(path,"rb");
1457         if (fin==NULL)
1458                 return NULL;
1459
1460         s=(unz_s*)safe_malloc(sizeof(unz_s));
1461         memcpy(s, (unz_s*)file, sizeof(unz_s));
1462
1463         s->file = fin;
1464         return (unzFile)s;      
1465 }
1466
1467 /*
1468   Open a Zip file. path contain the full pathname (by example,
1469      on a Windows NT computer "c:\\test\\zlib109.zip" or on an Unix computer
1470          "zlib/zlib109.zip".
1471          If the zipfile cannot be opened (file don't exist or in not valid), the
1472            return value is NULL.
1473      Else, the return value is a unzFile Handle, usable with other function
1474            of this unzip package.
1475 */
1476 extern unzFile unzOpen (const char* path)
1477 {
1478         unz_s us;
1479         unz_s *s;
1480         uLong central_pos,uL;
1481         FILE * fin ;
1482
1483         uLong number_disk;          /* number of the current dist, used for 
1484                                                                    spaning ZIP, unsupported, always 0*/
1485         uLong number_disk_with_CD;  /* number the the disk with central dir, used
1486                                                                    for spaning ZIP, unsupported, always 0*/
1487         uLong number_entry_CD;      /* total number of entries in
1488                                        the central dir 
1489                                        (same than number_entry on nospan) */
1490
1491         int err=UNZ_OK;
1492
1493     fin=fopen(path,"rb");
1494         if (fin==NULL)
1495                 return NULL;
1496
1497         central_pos = unzlocal_SearchCentralDir(fin);
1498         if (central_pos==0)
1499                 err=UNZ_ERRNO;
1500
1501         if (fseek(fin,central_pos,SEEK_SET)!=0)
1502                 err=UNZ_ERRNO;
1503
1504         /* the signature, already checked */
1505         if (unzlocal_getLong(fin,&uL)!=UNZ_OK)
1506                 err=UNZ_ERRNO;
1507
1508         /* number of this disk */
1509         if (unzlocal_getShort(fin,&number_disk)!=UNZ_OK)
1510                 err=UNZ_ERRNO;
1511
1512         /* number of the disk with the start of the central directory */
1513         if (unzlocal_getShort(fin,&number_disk_with_CD)!=UNZ_OK)
1514                 err=UNZ_ERRNO;
1515
1516         /* total number of entries in the central dir on this disk */
1517         if (unzlocal_getShort(fin,&us.gi.number_entry)!=UNZ_OK)
1518                 err=UNZ_ERRNO;
1519
1520         /* total number of entries in the central dir */
1521         if (unzlocal_getShort(fin,&number_entry_CD)!=UNZ_OK)
1522                 err=UNZ_ERRNO;
1523
1524         if ((number_entry_CD!=us.gi.number_entry) ||
1525                 (number_disk_with_CD!=0) ||
1526                 (number_disk!=0))
1527                 err=UNZ_BADZIPFILE;
1528
1529         /* size of the central directory */
1530         if (unzlocal_getLong(fin,&us.size_central_dir)!=UNZ_OK)
1531                 err=UNZ_ERRNO;
1532
1533         /* offset of start of central directory with respect to the 
1534               starting disk number */
1535         if (unzlocal_getLong(fin,&us.offset_central_dir)!=UNZ_OK)
1536                 err=UNZ_ERRNO;
1537
1538         /* zipfile comment length */
1539         if (unzlocal_getShort(fin,&us.gi.size_comment)!=UNZ_OK)
1540                 err=UNZ_ERRNO;
1541
1542         if ((central_pos<us.offset_central_dir+us.size_central_dir) && 
1543                 (err==UNZ_OK))
1544                 err=UNZ_BADZIPFILE;
1545
1546         if (err!=UNZ_OK)
1547         {
1548                 fclose(fin);
1549                 return NULL;
1550         }
1551
1552         us.file=fin;
1553         us.byte_before_the_zipfile = central_pos -
1554                                     (us.offset_central_dir+us.size_central_dir);
1555         us.central_pos = central_pos;
1556     us.pfile_in_zip_read = NULL;
1557         
1558
1559         s=(unz_s*)safe_malloc(sizeof(unz_s));
1560         *s=us;
1561 //      unzGoToFirstFile((unzFile)s);   
1562         return (unzFile)s;      
1563 }
1564
1565
1566 /*
1567   Close a ZipFile opened with unzipOpen.
1568   If there is files inside the .Zip opened with unzipOpenCurrentFile (see later),
1569     these files MUST be closed with unzipCloseCurrentFile before call unzipClose.
1570   return UNZ_OK if there is no problem. */
1571 extern int unzClose (unzFile file)
1572 {
1573         unz_s* s;
1574         if (file==NULL)
1575                 return UNZ_PARAMERROR;
1576         s=(unz_s*)file;
1577
1578     if (s->pfile_in_zip_read!=NULL)
1579         unzCloseCurrentFile(file);
1580
1581         fclose(s->file);
1582         free(s);
1583         return UNZ_OK;
1584 }
1585
1586
1587 /*
1588   Write info about the ZipFile in the *pglobal_info structure.
1589   No preparation of the structure is needed
1590   return UNZ_OK if there is no problem. */
1591 extern int unzGetGlobalInfo (unzFile file,unz_global_info *pglobal_info)
1592 {
1593         unz_s* s;
1594         if (file==NULL)
1595                 return UNZ_PARAMERROR;
1596         s=(unz_s*)file;
1597         *pglobal_info=s->gi;
1598         return UNZ_OK;
1599 }
1600
1601
1602 /*
1603    Translate date/time from Dos format to tm_unz (readable more easilty)
1604 */
1605 static void unzlocal_DosDateToTmuDate (uLong ulDosDate, tm_unz* ptm)
1606 {
1607     uLong uDate;
1608     uDate = (uLong)(ulDosDate>>16);
1609     ptm->tm_mday = (uInt)(uDate&0x1f) ;
1610     ptm->tm_mon =  (uInt)((((uDate)&0x1E0)/0x20)-1) ;
1611     ptm->tm_year = (uInt)(((uDate&0x0FE00)/0x0200)+1980) ;
1612
1613     ptm->tm_hour = (uInt) ((ulDosDate &0xF800)/0x800);
1614     ptm->tm_min =  (uInt) ((ulDosDate&0x7E0)/0x20) ;
1615     ptm->tm_sec =  (uInt) (2*(ulDosDate&0x1f)) ;
1616 }
1617
1618 /*
1619   Get Info about the current file in the zipfile, with internal only info
1620 */
1621 static int unzlocal_GetCurrentFileInfoInternal (unzFile file,
1622                                                   unz_file_info *pfile_info,
1623                                                   unz_file_info_internal 
1624                                                   *pfile_info_internal,
1625                                                   char *szFileName,
1626                                                                                                   uLong fileNameBufferSize,
1627                                                   void *extraField,
1628                                                                                                   uLong extraFieldBufferSize,
1629                                                   char *szComment,
1630                                                                                                   uLong commentBufferSize)
1631 {
1632         unz_s* s;
1633         unz_file_info file_info;
1634         unz_file_info_internal file_info_internal;
1635         int err=UNZ_OK;
1636         uLong uMagic;
1637         long lSeek=0;
1638
1639         if (file==NULL)
1640                 return UNZ_PARAMERROR;
1641         s=(unz_s*)file;
1642         if (fseek(s->file,s->pos_in_central_dir+s->byte_before_the_zipfile,SEEK_SET)!=0)
1643                 err=UNZ_ERRNO;
1644
1645
1646         /* we check the magic */
1647         if (err==UNZ_OK)
1648                 if (unzlocal_getLong(s->file,&uMagic) != UNZ_OK)
1649                         err=UNZ_ERRNO;
1650                 else if (uMagic!=0x02014b50)
1651                         err=UNZ_BADZIPFILE;
1652
1653         if (unzlocal_getShort(s->file,&file_info.version) != UNZ_OK)
1654                 err=UNZ_ERRNO;
1655
1656         if (unzlocal_getShort(s->file,&file_info.version_needed) != UNZ_OK)
1657                 err=UNZ_ERRNO;
1658
1659         if (unzlocal_getShort(s->file,&file_info.flag) != UNZ_OK)
1660                 err=UNZ_ERRNO;
1661
1662         if (unzlocal_getShort(s->file,&file_info.compression_method) != UNZ_OK)
1663                 err=UNZ_ERRNO;
1664
1665         if (unzlocal_getLong(s->file,&file_info.dosDate) != UNZ_OK)
1666                 err=UNZ_ERRNO;
1667
1668     unzlocal_DosDateToTmuDate(file_info.dosDate,&file_info.tmu_date);
1669
1670         if (unzlocal_getLong(s->file,&file_info.crc) != UNZ_OK)
1671                 err=UNZ_ERRNO;
1672
1673         if (unzlocal_getLong(s->file,&file_info.compressed_size) != UNZ_OK)
1674                 err=UNZ_ERRNO;
1675
1676         if (unzlocal_getLong(s->file,&file_info.uncompressed_size) != UNZ_OK)
1677                 err=UNZ_ERRNO;
1678
1679         if (unzlocal_getShort(s->file,&file_info.size_filename) != UNZ_OK)
1680                 err=UNZ_ERRNO;
1681
1682         if (unzlocal_getShort(s->file,&file_info.size_file_extra) != UNZ_OK)
1683                 err=UNZ_ERRNO;
1684
1685         if (unzlocal_getShort(s->file,&file_info.size_file_comment) != UNZ_OK)
1686                 err=UNZ_ERRNO;
1687
1688         if (unzlocal_getShort(s->file,&file_info.disk_num_start) != UNZ_OK)
1689                 err=UNZ_ERRNO;
1690
1691         if (unzlocal_getShort(s->file,&file_info.internal_fa) != UNZ_OK)
1692                 err=UNZ_ERRNO;
1693
1694         if (unzlocal_getLong(s->file,&file_info.external_fa) != UNZ_OK)
1695                 err=UNZ_ERRNO;
1696
1697         if (unzlocal_getLong(s->file,&file_info_internal.offset_curfile) != UNZ_OK)
1698                 err=UNZ_ERRNO;
1699
1700         lSeek+=file_info.size_filename;
1701         if ((err==UNZ_OK) && (szFileName!=NULL))
1702         {
1703                 uLong uSizeRead ;
1704                 if (file_info.size_filename<fileNameBufferSize)
1705                 {
1706                         *(szFileName+file_info.size_filename)='\0';
1707                         uSizeRead = file_info.size_filename;
1708                 }
1709                 else
1710                         uSizeRead = fileNameBufferSize;
1711
1712                 if ((file_info.size_filename>0) && (fileNameBufferSize>0))
1713                         if (fread(szFileName,(uInt)uSizeRead,1,s->file)!=1)
1714                                 err=UNZ_ERRNO;
1715                 lSeek -= uSizeRead;
1716         }
1717
1718         
1719         if ((err==UNZ_OK) && (extraField!=NULL))
1720         {
1721                 uLong uSizeRead ;
1722                 if (file_info.size_file_extra<extraFieldBufferSize)
1723                         uSizeRead = file_info.size_file_extra;
1724                 else
1725                         uSizeRead = extraFieldBufferSize;
1726
1727                 if (lSeek!=0)
1728                         if (fseek(s->file,lSeek,SEEK_CUR)==0)
1729                                 lSeek=0;
1730                         else
1731                                 err=UNZ_ERRNO;
1732                 if ((file_info.size_file_extra>0) && (extraFieldBufferSize>0))
1733                         if (fread(extraField,(uInt)uSizeRead,1,s->file)!=1)
1734                                 err=UNZ_ERRNO;
1735                 lSeek += file_info.size_file_extra - uSizeRead;
1736         }
1737         else
1738                 lSeek+=file_info.size_file_extra; 
1739
1740         
1741         if ((err==UNZ_OK) && (szComment!=NULL))
1742         {
1743                 uLong uSizeRead ;
1744                 if (file_info.size_file_comment<commentBufferSize)
1745                 {
1746                         *(szComment+file_info.size_file_comment)='\0';
1747                         uSizeRead = file_info.size_file_comment;
1748                 }
1749                 else
1750                         uSizeRead = commentBufferSize;
1751
1752                 if (lSeek!=0)
1753                         if (fseek(s->file,lSeek,SEEK_CUR)==0)
1754                                 lSeek=0;
1755                         else
1756                                 err=UNZ_ERRNO;
1757                 if ((file_info.size_file_comment>0) && (commentBufferSize>0))
1758                         if (fread(szComment,(uInt)uSizeRead,1,s->file)!=1)
1759                                 err=UNZ_ERRNO;
1760                 lSeek+=file_info.size_file_comment - uSizeRead;
1761         }
1762         else
1763                 lSeek+=file_info.size_file_comment;
1764
1765         if ((err==UNZ_OK) && (pfile_info!=NULL))
1766                 *pfile_info=file_info;
1767
1768         if ((err==UNZ_OK) && (pfile_info_internal!=NULL))
1769                 *pfile_info_internal=file_info_internal;
1770
1771         return err;
1772 }
1773
1774
1775
1776 /*
1777   Write info about the ZipFile in the *pglobal_info structure.
1778   No preparation of the structure is needed
1779   return UNZ_OK if there is no problem.
1780 */
1781 extern int unzGetCurrentFileInfo (      unzFile file, unz_file_info *pfile_info,
1782                                                                         char *szFileName, uLong fileNameBufferSize,
1783                                                                         void *extraField, uLong extraFieldBufferSize,
1784                                                                         char *szComment, uLong commentBufferSize)
1785 {
1786         return unzlocal_GetCurrentFileInfoInternal(file,pfile_info,NULL,
1787                                                                                                 szFileName,fileNameBufferSize,
1788                                                                                                 extraField,extraFieldBufferSize,
1789                                                                                                 szComment,commentBufferSize);
1790 }
1791
1792 /*
1793   Set the current file of the zipfile to the first file.
1794   return UNZ_OK if there is no problem
1795 */
1796 extern int unzGoToFirstFile (unzFile file)
1797 {
1798         int err=UNZ_OK;
1799         unz_s* s;
1800         if (file==NULL)
1801                 return UNZ_PARAMERROR;
1802         s=(unz_s*)file;
1803         s->pos_in_central_dir=s->offset_central_dir;
1804         s->num_file=0;
1805         err=unzlocal_GetCurrentFileInfoInternal(file,&s->cur_file_info,
1806                                                                                          &s->cur_file_info_internal,
1807                                                                                          NULL,0,NULL,0,NULL,0);
1808         s->current_file_ok = (err == UNZ_OK);
1809         return err;
1810 }
1811
1812
1813 /*
1814   Set the current file of the zipfile to the next file.
1815   return UNZ_OK if there is no problem
1816   return UNZ_END_OF_LIST_OF_FILE if the actual file was the latest.
1817 */
1818 extern int unzGoToNextFile (unzFile file)
1819 {
1820         unz_s* s;       
1821         int err;
1822
1823         if (file==NULL)
1824                 return UNZ_PARAMERROR;
1825         s=(unz_s*)file;
1826         if (!s->current_file_ok)
1827                 return UNZ_END_OF_LIST_OF_FILE;
1828         if (s->num_file+1==s->gi.number_entry)
1829                 return UNZ_END_OF_LIST_OF_FILE;
1830
1831         s->pos_in_central_dir += SIZECENTRALDIRITEM + s->cur_file_info.size_filename +
1832                         s->cur_file_info.size_file_extra + s->cur_file_info.size_file_comment ;
1833         s->num_file++;
1834         err = unzlocal_GetCurrentFileInfoInternal(file,&s->cur_file_info,
1835                                                                                            &s->cur_file_info_internal,
1836                                                                                            NULL,0,NULL,0,NULL,0);
1837         s->current_file_ok = (err == UNZ_OK);
1838         return err;
1839 }
1840
1841
1842 /*
1843   Try locate the file szFileName in the zipfile.
1844   For the iCaseSensitivity signification, see unzipStringFileNameCompare
1845
1846   return value :
1847   UNZ_OK if the file is found. It becomes the current file.
1848   UNZ_END_OF_LIST_OF_FILE if the file is not found
1849 */
1850 extern int unzLocateFile (unzFile file, const char *szFileName, int iCaseSensitivity)
1851 {
1852         unz_s* s;       
1853         int err;
1854
1855         
1856         uLong num_fileSaved;
1857         uLong pos_in_central_dirSaved;
1858
1859
1860         if (file==NULL)
1861                 return UNZ_PARAMERROR;
1862
1863     if (strlen(szFileName)>=UNZ_MAXFILENAMEINZIP)
1864         return UNZ_PARAMERROR;
1865
1866         s=(unz_s*)file;
1867         if (!s->current_file_ok)
1868                 return UNZ_END_OF_LIST_OF_FILE;
1869
1870         num_fileSaved = s->num_file;
1871         pos_in_central_dirSaved = s->pos_in_central_dir;
1872
1873         err = unzGoToFirstFile(file);
1874
1875         while (err == UNZ_OK)
1876         {
1877                 char szCurrentFileName[UNZ_MAXFILENAMEINZIP+1];
1878                 unzGetCurrentFileInfo(file,NULL,
1879                                                                 szCurrentFileName,sizeof(szCurrentFileName)-1,
1880                                                                 NULL,0,NULL,0);
1881                 if (unzStringFileNameCompare(szCurrentFileName,
1882                                                                                 szFileName,iCaseSensitivity)==0)
1883                         return UNZ_OK;
1884                 err = unzGoToNextFile(file);
1885         }
1886
1887         s->num_file = num_fileSaved ;
1888         s->pos_in_central_dir = pos_in_central_dirSaved ;
1889         return err;
1890 }
1891
1892
1893 /*
1894   Read the static header of the current zipfile
1895   Check the coherency of the static header and info in the end of central
1896         directory about this file
1897   store in *piSizeVar the size of extra info in static header
1898         (filename and size of extra field data)
1899 */
1900 static int unzlocal_CheckCurrentFileCoherencyHeader (unz_s* s, uInt* piSizeVar,
1901                                                                                                         uLong *poffset_local_extrafield,
1902                                                                                                         uInt *psize_local_extrafield)
1903 {
1904         uLong uMagic,uData,uFlags;
1905         uLong size_filename;
1906         uLong size_extra_field;
1907         int err=UNZ_OK;
1908
1909         *piSizeVar = 0;
1910         *poffset_local_extrafield = 0;
1911         *psize_local_extrafield = 0;
1912
1913         if (fseek(s->file,s->cur_file_info_internal.offset_curfile +
1914                                                                 s->byte_before_the_zipfile,SEEK_SET)!=0)
1915                 return UNZ_ERRNO;
1916
1917
1918         if (err==UNZ_OK)
1919                 if (unzlocal_getLong(s->file,&uMagic) != UNZ_OK)
1920                         err=UNZ_ERRNO;
1921                 else if (uMagic!=0x04034b50)
1922                         err=UNZ_BADZIPFILE;
1923
1924         if (unzlocal_getShort(s->file,&uData) != UNZ_OK)
1925                 err=UNZ_ERRNO;
1926 /*
1927         else if ((err==UNZ_OK) && (uData!=s->cur_file_info.wVersion))
1928                 err=UNZ_BADZIPFILE;
1929 */
1930         if (unzlocal_getShort(s->file,&uFlags) != UNZ_OK)
1931                 err=UNZ_ERRNO;
1932
1933         if (unzlocal_getShort(s->file,&uData) != UNZ_OK)
1934                 err=UNZ_ERRNO;
1935         else if ((err==UNZ_OK) && (uData!=s->cur_file_info.compression_method))
1936                 err=UNZ_BADZIPFILE;
1937
1938     if ((err==UNZ_OK) && (s->cur_file_info.compression_method!=0) &&
1939                          (s->cur_file_info.compression_method!=Z_DEFLATED))
1940         err=UNZ_BADZIPFILE;
1941
1942         if (unzlocal_getLong(s->file,&uData) != UNZ_OK) /* date/time */
1943                 err=UNZ_ERRNO;
1944
1945         if (unzlocal_getLong(s->file,&uData) != UNZ_OK) /* crc */
1946                 err=UNZ_ERRNO;
1947         else if ((err==UNZ_OK) && (uData!=s->cur_file_info.crc) &&
1948                                       ((uFlags & 8)==0))
1949                 err=UNZ_BADZIPFILE;
1950
1951         if (unzlocal_getLong(s->file,&uData) != UNZ_OK) /* size compr */
1952                 err=UNZ_ERRNO;
1953         else if ((err==UNZ_OK) && (uData!=s->cur_file_info.compressed_size) &&
1954                                                           ((uFlags & 8)==0))
1955                 err=UNZ_BADZIPFILE;
1956
1957         if (unzlocal_getLong(s->file,&uData) != UNZ_OK) /* size uncompr */
1958                 err=UNZ_ERRNO;
1959         else if ((err==UNZ_OK) && (uData!=s->cur_file_info.uncompressed_size) && 
1960                                                           ((uFlags & 8)==0))
1961                 err=UNZ_BADZIPFILE;
1962
1963
1964         if (unzlocal_getShort(s->file,&size_filename) != UNZ_OK)
1965                 err=UNZ_ERRNO;
1966         else if ((err==UNZ_OK) && (size_filename!=s->cur_file_info.size_filename))
1967                 err=UNZ_BADZIPFILE;
1968
1969         *piSizeVar += (uInt)size_filename;
1970
1971         if (unzlocal_getShort(s->file,&size_extra_field) != UNZ_OK)
1972                 err=UNZ_ERRNO;
1973         *poffset_local_extrafield= s->cur_file_info_internal.offset_curfile +
1974                                                                         SIZEZIPLOCALHEADER + size_filename;
1975         *psize_local_extrafield = (uInt)size_extra_field;
1976
1977         *piSizeVar += (uInt)size_extra_field;
1978
1979         return err;
1980 }
1981                                                                                                 
1982 /*
1983   Open for reading data the current file in the zipfile.
1984   If there is no error and the file is opened, the return value is UNZ_OK.
1985 */
1986 extern int unzOpenCurrentFile (unzFile file)
1987 {
1988         int err=UNZ_OK;
1989         int Store;
1990         uInt iSizeVar;
1991         unz_s* s;
1992         file_in_zip_read_info_s* pfile_in_zip_read_info;
1993         uLong offset_local_extrafield;  /* offset of the static extra field */
1994         uInt  size_local_extrafield;    /* size of the static extra field */
1995
1996         if (file==NULL)
1997                 return UNZ_PARAMERROR;
1998         s=(unz_s*)file;
1999         if (!s->current_file_ok)
2000                 return UNZ_PARAMERROR;
2001
2002     if (s->pfile_in_zip_read != NULL)
2003         unzCloseCurrentFile(file);
2004
2005         if (unzlocal_CheckCurrentFileCoherencyHeader(s,&iSizeVar,
2006                                 &offset_local_extrafield,&size_local_extrafield)!=UNZ_OK)
2007                 return UNZ_BADZIPFILE;
2008
2009         pfile_in_zip_read_info = (file_in_zip_read_info_s*)
2010                                                                             safe_malloc(sizeof(file_in_zip_read_info_s));
2011         if (pfile_in_zip_read_info==NULL)
2012                 return UNZ_INTERNALERROR;
2013
2014         pfile_in_zip_read_info->read_buffer=(char*)safe_malloc(UNZ_BUFSIZE);
2015         pfile_in_zip_read_info->offset_local_extrafield = offset_local_extrafield;
2016         pfile_in_zip_read_info->size_local_extrafield = size_local_extrafield;
2017         pfile_in_zip_read_info->pos_local_extrafield=0;
2018
2019         if (pfile_in_zip_read_info->read_buffer==NULL)
2020         {
2021                 free(pfile_in_zip_read_info);
2022                 return UNZ_INTERNALERROR;
2023         }
2024
2025         pfile_in_zip_read_info->stream_initialised=0;
2026         
2027         if ((s->cur_file_info.compression_method!=0) &&
2028         (s->cur_file_info.compression_method!=Z_DEFLATED))
2029                 err=UNZ_BADZIPFILE;
2030         Store = s->cur_file_info.compression_method==0;
2031
2032         pfile_in_zip_read_info->crc32_wait=s->cur_file_info.crc;
2033         pfile_in_zip_read_info->crc32=0;
2034         pfile_in_zip_read_info->compression_method =
2035             s->cur_file_info.compression_method;
2036         pfile_in_zip_read_info->file=s->file;
2037         pfile_in_zip_read_info->byte_before_the_zipfile=s->byte_before_the_zipfile;
2038
2039     pfile_in_zip_read_info->stream.total_out = 0;
2040
2041         if (!Store)
2042         {
2043           pfile_in_zip_read_info->stream.zalloc = (alloc_func)0;
2044           pfile_in_zip_read_info->stream.zfree = (free_func)0;
2045           pfile_in_zip_read_info->stream.opaque = (voidp)0; 
2046       
2047           err=inflateInit2(&pfile_in_zip_read_info->stream, -MAX_WBITS);
2048           if (err == Z_OK)
2049             pfile_in_zip_read_info->stream_initialised=1;
2050         /* windowBits is passed < 0 to tell that there is no zlib header.
2051          * Note that in this case inflate *requires* an extra "dummy" byte
2052          * after the compressed stream in order to complete decompression and
2053          * return Z_STREAM_END. 
2054          * In unzip, i don't wait absolutely Z_STREAM_END because I known the 
2055          * size of both compressed and uncompressed data
2056          */
2057         }
2058         pfile_in_zip_read_info->rest_read_compressed = 
2059             s->cur_file_info.compressed_size ;
2060         pfile_in_zip_read_info->rest_read_uncompressed = 
2061             s->cur_file_info.uncompressed_size ;
2062
2063         
2064         pfile_in_zip_read_info->pos_in_zipfile = 
2065             s->cur_file_info_internal.offset_curfile + SIZEZIPLOCALHEADER + 
2066                           iSizeVar;
2067         
2068         pfile_in_zip_read_info->stream.avail_in = (uInt)0;
2069
2070
2071         s->pfile_in_zip_read = pfile_in_zip_read_info;
2072     return UNZ_OK;
2073 }
2074
2075
2076 /*
2077   Read bytes from the current file.
2078   buf contain buffer where data must be copied
2079   len the size of buf.
2080
2081   return the number of byte copied if somes bytes are copied
2082   return 0 if the end of file was reached
2083   return <0 with error code if there is an error
2084     (UNZ_ERRNO for IO error, or zLib error for uncompress error)
2085 */
2086 extern int unzReadCurrentFile  (unzFile file, void *buf, unsigned len)
2087 {
2088         int err=UNZ_OK;
2089         uInt iRead = 0;
2090         unz_s* s;
2091         file_in_zip_read_info_s* pfile_in_zip_read_info;
2092         if (file==NULL)
2093                 return UNZ_PARAMERROR;
2094         s=(unz_s*)file;
2095     pfile_in_zip_read_info=s->pfile_in_zip_read;
2096
2097         if (pfile_in_zip_read_info==NULL)
2098                 return UNZ_PARAMERROR;
2099
2100
2101         if ((pfile_in_zip_read_info->read_buffer == NULL))
2102                 return UNZ_END_OF_LIST_OF_FILE;
2103         if (len==0)
2104                 return 0;
2105
2106         pfile_in_zip_read_info->stream.next_out = (Byte*)buf;
2107
2108         pfile_in_zip_read_info->stream.avail_out = (uInt)len;
2109         
2110         if (len>pfile_in_zip_read_info->rest_read_uncompressed)
2111                 pfile_in_zip_read_info->stream.avail_out = 
2112                   (uInt)pfile_in_zip_read_info->rest_read_uncompressed;
2113
2114         while (pfile_in_zip_read_info->stream.avail_out>0)
2115         {
2116                 if ((pfile_in_zip_read_info->stream.avail_in==0) &&
2117             (pfile_in_zip_read_info->rest_read_compressed>0))
2118                 {
2119                         uInt uReadThis = UNZ_BUFSIZE;
2120                         if (pfile_in_zip_read_info->rest_read_compressed<uReadThis)
2121                                 uReadThis = (uInt)pfile_in_zip_read_info->rest_read_compressed;
2122                         if (uReadThis == 0)
2123                                 return UNZ_EOF;
2124                         if (s->cur_file_info.compressed_size == pfile_in_zip_read_info->rest_read_compressed)
2125                                 if (fseek(pfile_in_zip_read_info->file,
2126                                                   pfile_in_zip_read_info->pos_in_zipfile + 
2127                                                          pfile_in_zip_read_info->byte_before_the_zipfile,SEEK_SET)!=0)
2128                                         return UNZ_ERRNO;
2129                         if (fread(pfile_in_zip_read_info->read_buffer,uReadThis,1,
2130                          pfile_in_zip_read_info->file)!=1)
2131                                 return UNZ_ERRNO;
2132                         pfile_in_zip_read_info->pos_in_zipfile += uReadThis;
2133
2134                         pfile_in_zip_read_info->rest_read_compressed-=uReadThis;
2135                         
2136                         pfile_in_zip_read_info->stream.next_in = 
2137                 (Byte*)pfile_in_zip_read_info->read_buffer;
2138                         pfile_in_zip_read_info->stream.avail_in = (uInt)uReadThis;
2139                 }
2140
2141                 if (pfile_in_zip_read_info->compression_method==0)
2142                 {
2143                         uInt uDoCopy,i ;
2144                         if (pfile_in_zip_read_info->stream.avail_out < 
2145                             pfile_in_zip_read_info->stream.avail_in)
2146                                 uDoCopy = pfile_in_zip_read_info->stream.avail_out ;
2147                         else
2148                                 uDoCopy = pfile_in_zip_read_info->stream.avail_in ;
2149                                 
2150                         for (i=0;i<uDoCopy;i++)
2151                                 *(pfile_in_zip_read_info->stream.next_out+i) =
2152                         *(pfile_in_zip_read_info->stream.next_in+i);
2153                                         
2154                         pfile_in_zip_read_info->crc32 = crc32(pfile_in_zip_read_info->crc32,
2155                                                                 pfile_in_zip_read_info->stream.next_out,
2156                                                                 uDoCopy);
2157                         pfile_in_zip_read_info->rest_read_uncompressed-=uDoCopy;
2158                         pfile_in_zip_read_info->stream.avail_in -= uDoCopy;
2159                         pfile_in_zip_read_info->stream.avail_out -= uDoCopy;
2160                         pfile_in_zip_read_info->stream.next_out += uDoCopy;
2161                         pfile_in_zip_read_info->stream.next_in += uDoCopy;
2162             pfile_in_zip_read_info->stream.total_out += uDoCopy;
2163                         iRead += uDoCopy;
2164                 }
2165                 else
2166                 {
2167                         uLong uTotalOutBefore,uTotalOutAfter;
2168                         const Byte *bufBefore;
2169                         uLong uOutThis;
2170                         int flush=Z_SYNC_FLUSH;
2171
2172                         uTotalOutBefore = pfile_in_zip_read_info->stream.total_out;
2173                         bufBefore = pfile_in_zip_read_info->stream.next_out;
2174
2175                         /*
2176                         if ((pfile_in_zip_read_info->rest_read_uncompressed ==
2177                                  pfile_in_zip_read_info->stream.avail_out) &&
2178                                 (pfile_in_zip_read_info->rest_read_compressed == 0))
2179                                 flush = Z_FINISH;
2180                         */
2181                         err=inflate(&pfile_in_zip_read_info->stream,flush);
2182
2183                         uTotalOutAfter = pfile_in_zip_read_info->stream.total_out;
2184                         uOutThis = uTotalOutAfter-uTotalOutBefore;
2185                         
2186                         pfile_in_zip_read_info->crc32 = 
2187                 crc32(pfile_in_zip_read_info->crc32,bufBefore,
2188                         (uInt)(uOutThis));
2189
2190                         pfile_in_zip_read_info->rest_read_uncompressed -=
2191                 uOutThis;
2192
2193                         iRead += (uInt)(uTotalOutAfter - uTotalOutBefore);
2194             
2195                         if (err==Z_STREAM_END)
2196                                 return (iRead==0) ? UNZ_EOF : iRead;
2197                         if (err!=Z_OK) 
2198                                 break;
2199                 }
2200         }
2201
2202         if (err==Z_OK)
2203                 return iRead;
2204         return err;
2205 }
2206
2207
2208 /*
2209   Give the current position in uncompressed data
2210 */
2211 extern long unztell (unzFile file)
2212 {
2213         unz_s* s;
2214         file_in_zip_read_info_s* pfile_in_zip_read_info;
2215         if (file==NULL)
2216                 return UNZ_PARAMERROR;
2217         s=(unz_s*)file;
2218     pfile_in_zip_read_info=s->pfile_in_zip_read;
2219
2220         if (pfile_in_zip_read_info==NULL)
2221                 return UNZ_PARAMERROR;
2222
2223         return (long)pfile_in_zip_read_info->stream.total_out;
2224 }
2225
2226
2227 /*
2228   return 1 if the end of file was reached, 0 elsewhere 
2229 */
2230 extern int unzeof (unzFile file)
2231 {
2232         unz_s* s;
2233         file_in_zip_read_info_s* pfile_in_zip_read_info;
2234         if (file==NULL)
2235                 return UNZ_PARAMERROR;
2236         s=(unz_s*)file;
2237     pfile_in_zip_read_info=s->pfile_in_zip_read;
2238
2239         if (pfile_in_zip_read_info==NULL)
2240                 return UNZ_PARAMERROR;
2241         
2242         if (pfile_in_zip_read_info->rest_read_uncompressed == 0)
2243                 return 1;
2244         else
2245                 return 0;
2246 }
2247
2248
2249
2250 /*
2251   Read extra field from the current file (opened by unzOpenCurrentFile)
2252   This is the static-header version of the extra field (sometimes, there is
2253     more info in the static-header version than in the central-header)
2254
2255   if buf==NULL, it return the size of the static extra field that can be read
2256
2257   if buf!=NULL, len is the size of the buffer, the extra header is copied in
2258         buf.
2259   the return value is the number of bytes copied in buf, or (if <0) 
2260         the error code
2261 */
2262 extern int unzGetLocalExtrafield (unzFile file,void *buf,unsigned len)
2263 {
2264         unz_s* s;
2265         file_in_zip_read_info_s* pfile_in_zip_read_info;
2266         uInt read_now;
2267         uLong size_to_read;
2268
2269         if (file==NULL)
2270                 return UNZ_PARAMERROR;
2271         s=(unz_s*)file;
2272     pfile_in_zip_read_info=s->pfile_in_zip_read;
2273
2274         if (pfile_in_zip_read_info==NULL)
2275                 return UNZ_PARAMERROR;
2276
2277         size_to_read = (pfile_in_zip_read_info->size_local_extrafield - 
2278                                 pfile_in_zip_read_info->pos_local_extrafield);
2279
2280         if (buf==NULL)
2281                 return (int)size_to_read;
2282         
2283         if (len>size_to_read)
2284                 read_now = (uInt)size_to_read;
2285         else
2286                 read_now = (uInt)len ;
2287
2288         if (read_now==0)
2289                 return 0;
2290         
2291         if (fseek(pfile_in_zip_read_info->file,
2292               pfile_in_zip_read_info->offset_local_extrafield + 
2293                           pfile_in_zip_read_info->pos_local_extrafield,SEEK_SET)!=0)
2294                 return UNZ_ERRNO;
2295
2296         if (fread(buf,(uInt)size_to_read,1,pfile_in_zip_read_info->file)!=1)
2297                 return UNZ_ERRNO;
2298
2299         return (int)read_now;
2300 }
2301
2302 /*
2303   Close the file in zip opened with unzipOpenCurrentFile
2304   Return UNZ_CRCERROR if all the file was read but the CRC is not good
2305 */
2306 extern int unzCloseCurrentFile (unzFile file)
2307 {
2308         int err=UNZ_OK;
2309
2310         unz_s* s;
2311         file_in_zip_read_info_s* pfile_in_zip_read_info;
2312         if (file==NULL)
2313                 return UNZ_PARAMERROR;
2314         s=(unz_s*)file;
2315     pfile_in_zip_read_info=s->pfile_in_zip_read;
2316
2317         if (pfile_in_zip_read_info==NULL)
2318                 return UNZ_PARAMERROR;
2319
2320
2321         if (pfile_in_zip_read_info->rest_read_uncompressed == 0)
2322         {
2323                 if (pfile_in_zip_read_info->crc32 != pfile_in_zip_read_info->crc32_wait)
2324                         err=UNZ_CRCERROR;
2325         }
2326
2327
2328         free(pfile_in_zip_read_info->read_buffer);
2329         pfile_in_zip_read_info->read_buffer = NULL;
2330         if (pfile_in_zip_read_info->stream_initialised)
2331                 inflateEnd(&pfile_in_zip_read_info->stream);
2332
2333         pfile_in_zip_read_info->stream_initialised = 0;
2334         free(pfile_in_zip_read_info);
2335
2336     s->pfile_in_zip_read=NULL;
2337
2338         return err;
2339 }
2340
2341
2342 /*
2343   Get the global comment string of the ZipFile, in the szComment buffer.
2344   uSizeBuf is the size of the szComment buffer.
2345   return the number of byte copied or an error code <0
2346 */
2347 extern int unzGetGlobalComment (unzFile file, char *szComment, uLong uSizeBuf)
2348 {
2349         unz_s* s;
2350         uLong uReadThis ;
2351         if (file==NULL)
2352                 return UNZ_PARAMERROR;
2353         s=(unz_s*)file;
2354
2355         uReadThis = uSizeBuf;
2356         if (uReadThis>s->gi.size_comment)
2357                 uReadThis = s->gi.size_comment;
2358
2359         if (fseek(s->file,s->central_pos+22,SEEK_SET)!=0)
2360                 return UNZ_ERRNO;
2361
2362         if (uReadThis>0)
2363     {
2364       *szComment='\0';
2365           if (fread(szComment,(uInt)uReadThis,1,s->file)!=1)
2366                 return UNZ_ERRNO;
2367     }
2368
2369         if ((szComment != NULL) && (uSizeBuf > s->gi.size_comment))
2370                 *(szComment+s->gi.size_comment)='\0';
2371         return (int)uReadThis;
2372 }
2373
2374 /* crc32.c -- compute the CRC-32 of a data stream
2375  * Copyright (C) 1995-1998 Mark Adler
2376  * For conditions of distribution and use, see copyright notice in zlib.h 
2377  */
2378
2379
2380 #ifdef DYNAMIC_CRC_TABLE
2381
2382 static int crc_table_empty = 1;
2383 static uLong crc_table[256];
2384 static void make_crc_table OF((void));
2385
2386 /*
2387   Generate a table for a byte-wise 32-bit CRC calculation on the polynomial:
2388   x^32+x^26+x^23+x^22+x^16+x^12+x^11+x^10+x^8+x^7+x^5+x^4+x^2+x+1.
2389
2390   Polynomials over GF(2) are represented in binary, one bit per coefficient,
2391   with the lowest powers in the most significant bit.  Then adding polynomials
2392   is just exclusive-or, and multiplying a polynomial by x is a right shift by
2393   one.  If we call the above polynomial p, and represent a byte as the
2394   polynomial q, also with the lowest power in the most significant bit (so the
2395   byte 0xb1 is the polynomial x^7+x^3+x+1), then the CRC is (q*x^32) mod p,
2396   where a mod b means the remainder after dividing a by b.
2397
2398   This calculation is done using the shift-register method of multiplying and
2399   taking the remainder.  The register is initialized to zero, and for each
2400   incoming bit, x^32 is added mod p to the register if the bit is a one (where
2401   x^32 mod p is p+x^32 = x^26+...+1), and the register is multiplied mod p by
2402   x (which is shifting right by one and adding x^32 mod p if the bit shifted
2403   out is a one).  We start with the highest power (least significant bit) of
2404   q and repeat for all eight bits of q.
2405
2406   The table is simply the CRC of all possible eight bit values.  This is all
2407   the information needed to generate CRC's on data a byte at a time for all
2408   combinations of CRC register values and incoming bytes.
2409 */
2410 static void make_crc_table()
2411 {
2412   uLong c;
2413   int n, k;
2414   uLong poly;            /* polynomial exclusive-or pattern */
2415   /* terms of polynomial defining this crc (except x^32): */
2416   static const Byte p[] = {0,1,2,4,5,7,8,10,11,12,16,22,23,26};
2417
2418   /* make exclusive-or pattern from polynomial (0xedb88320L) */
2419   poly = 0L;
2420   for (n = 0; n < sizeof(p)/sizeof(Byte); n++)
2421     poly |= 1L << (31 - p[n]);
2422  
2423   for (n = 0; n < 256; n++)
2424   {
2425     c = (uLong)n;
2426     for (k = 0; k < 8; k++)
2427       c = c & 1 ? poly ^ (c >> 1) : c >> 1;
2428     crc_table[n] = c;
2429   }
2430   crc_table_empty = 0;
2431 }
2432 #else
2433 /* ========================================================================
2434  * Table of CRC-32's of all single-byte values (made by make_crc_table)
2435  */
2436 static const uLong crc_table[256] = {
2437   0x00000000L, 0x77073096L, 0xee0e612cL, 0x990951baL, 0x076dc419L,
2438   0x706af48fL, 0xe963a535L, 0x9e6495a3L, 0x0edb8832L, 0x79dcb8a4L,
2439   0xe0d5e91eL, 0x97d2d988L, 0x09b64c2bL, 0x7eb17cbdL, 0xe7b82d07L,
2440   0x90bf1d91L, 0x1db71064L, 0x6ab020f2L, 0xf3b97148L, 0x84be41deL,
2441   0x1adad47dL, 0x6ddde4ebL, 0xf4d4b551L, 0x83d385c7L, 0x136c9856L,
2442   0x646ba8c0L, 0xfd62f97aL, 0x8a65c9ecL, 0x14015c4fL, 0x63066cd9L,
2443   0xfa0f3d63L, 0x8d080df5L, 0x3b6e20c8L, 0x4c69105eL, 0xd56041e4L,
2444   0xa2677172L, 0x3c03e4d1L, 0x4b04d447L, 0xd20d85fdL, 0xa50ab56bL,
2445   0x35b5a8faL, 0x42b2986cL, 0xdbbbc9d6L, 0xacbcf940L, 0x32d86ce3L,
2446   0x45df5c75L, 0xdcd60dcfL, 0xabd13d59L, 0x26d930acL, 0x51de003aL,
2447   0xc8d75180L, 0xbfd06116L, 0x21b4f4b5L, 0x56b3c423L, 0xcfba9599L,
2448   0xb8bda50fL, 0x2802b89eL, 0x5f058808L, 0xc60cd9b2L, 0xb10be924L,
2449   0x2f6f7c87L, 0x58684c11L, 0xc1611dabL, 0xb6662d3dL, 0x76dc4190L,
2450   0x01db7106L, 0x98d220bcL, 0xefd5102aL, 0x71b18589L, 0x06b6b51fL,
2451   0x9fbfe4a5L, 0xe8b8d433L, 0x7807c9a2L, 0x0f00f934L, 0x9609a88eL,
2452   0xe10e9818L, 0x7f6a0dbbL, 0x086d3d2dL, 0x91646c97L, 0xe6635c01L,
2453   0x6b6b51f4L, 0x1c6c6162L, 0x856530d8L, 0xf262004eL, 0x6c0695edL,
2454   0x1b01a57bL, 0x8208f4c1L, 0xf50fc457L, 0x65b0d9c6L, 0x12b7e950L,
2455   0x8bbeb8eaL, 0xfcb9887cL, 0x62dd1ddfL, 0x15da2d49L, 0x8cd37cf3L,
2456   0xfbd44c65L, 0x4db26158L, 0x3ab551ceL, 0xa3bc0074L, 0xd4bb30e2L,
2457   0x4adfa541L, 0x3dd895d7L, 0xa4d1c46dL, 0xd3d6f4fbL, 0x4369e96aL,
2458   0x346ed9fcL, 0xad678846L, 0xda60b8d0L, 0x44042d73L, 0x33031de5L,
2459   0xaa0a4c5fL, 0xdd0d7cc9L, 0x5005713cL, 0x270241aaL, 0xbe0b1010L,
2460   0xc90c2086L, 0x5768b525L, 0x206f85b3L, 0xb966d409L, 0xce61e49fL,
2461   0x5edef90eL, 0x29d9c998L, 0xb0d09822L, 0xc7d7a8b4L, 0x59b33d17L,
2462   0x2eb40d81L, 0xb7bd5c3bL, 0xc0ba6cadL, 0xedb88320L, 0x9abfb3b6L,
2463   0x03b6e20cL, 0x74b1d29aL, 0xead54739L, 0x9dd277afL, 0x04db2615L,
2464   0x73dc1683L, 0xe3630b12L, 0x94643b84L, 0x0d6d6a3eL, 0x7a6a5aa8L,
2465   0xe40ecf0bL, 0x9309ff9dL, 0x0a00ae27L, 0x7d079eb1L, 0xf00f9344L,
2466   0x8708a3d2L, 0x1e01f268L, 0x6906c2feL, 0xf762575dL, 0x806567cbL,
2467   0x196c3671L, 0x6e6b06e7L, 0xfed41b76L, 0x89d32be0L, 0x10da7a5aL,
2468   0x67dd4accL, 0xf9b9df6fL, 0x8ebeeff9L, 0x17b7be43L, 0x60b08ed5L,
2469   0xd6d6a3e8L, 0xa1d1937eL, 0x38d8c2c4L, 0x4fdff252L, 0xd1bb67f1L,
2470   0xa6bc5767L, 0x3fb506ddL, 0x48b2364bL, 0xd80d2bdaL, 0xaf0a1b4cL,
2471   0x36034af6L, 0x41047a60L, 0xdf60efc3L, 0xa867df55L, 0x316e8eefL,
2472   0x4669be79L, 0xcb61b38cL, 0xbc66831aL, 0x256fd2a0L, 0x5268e236L,
2473   0xcc0c7795L, 0xbb0b4703L, 0x220216b9L, 0x5505262fL, 0xc5ba3bbeL,
2474   0xb2bd0b28L, 0x2bb45a92L, 0x5cb36a04L, 0xc2d7ffa7L, 0xb5d0cf31L,
2475   0x2cd99e8bL, 0x5bdeae1dL, 0x9b64c2b0L, 0xec63f226L, 0x756aa39cL,
2476   0x026d930aL, 0x9c0906a9L, 0xeb0e363fL, 0x72076785L, 0x05005713L,
2477   0x95bf4a82L, 0xe2b87a14L, 0x7bb12baeL, 0x0cb61b38L, 0x92d28e9bL,
2478   0xe5d5be0dL, 0x7cdcefb7L, 0x0bdbdf21L, 0x86d3d2d4L, 0xf1d4e242L,
2479   0x68ddb3f8L, 0x1fda836eL, 0x81be16cdL, 0xf6b9265bL, 0x6fb077e1L,
2480   0x18b74777L, 0x88085ae6L, 0xff0f6a70L, 0x66063bcaL, 0x11010b5cL,
2481   0x8f659effL, 0xf862ae69L, 0x616bffd3L, 0x166ccf45L, 0xa00ae278L,
2482   0xd70dd2eeL, 0x4e048354L, 0x3903b3c2L, 0xa7672661L, 0xd06016f7L,
2483   0x4969474dL, 0x3e6e77dbL, 0xaed16a4aL, 0xd9d65adcL, 0x40df0b66L,
2484   0x37d83bf0L, 0xa9bcae53L, 0xdebb9ec5L, 0x47b2cf7fL, 0x30b5ffe9L,
2485   0xbdbdf21cL, 0xcabac28aL, 0x53b39330L, 0x24b4a3a6L, 0xbad03605L,
2486   0xcdd70693L, 0x54de5729L, 0x23d967bfL, 0xb3667a2eL, 0xc4614ab8L,
2487   0x5d681b02L, 0x2a6f2b94L, 0xb40bbe37L, 0xc30c8ea1L, 0x5a05df1bL,
2488   0x2d02ef8dL
2489 };
2490 #endif
2491
2492 /* =========================================================================
2493  * This function can be used by asm versions of crc32()
2494  */
2495 #ifndef __APPLE__
2496 const uLong * get_crc_table()
2497 {
2498 #ifdef DYNAMIC_CRC_TABLE
2499   if (crc_table_empty) make_crc_table();
2500 #endif
2501   return (const uLong *)crc_table;
2502 }
2503 #endif
2504
2505 /* ========================================================================= */
2506 #define DO1(buf) crc = crc_table[((int)crc ^ (*buf++)) & 0xff] ^ (crc >> 8);
2507 #define DO2(buf)  DO1(buf); DO1(buf);
2508 #define DO4(buf)  DO2(buf); DO2(buf);
2509 #define DO8(buf)  DO4(buf); DO4(buf);
2510
2511 /* ========================================================================= */
2512 #ifndef __APPLE__
2513 uLong crc32(uLong crc, const Byte *buf, uInt len)
2514 {
2515     if (buf == Z_NULL) return 0L;
2516 #ifdef DYNAMIC_CRC_TABLE
2517     if (crc_table_empty)
2518       make_crc_table();
2519 #endif
2520     crc = crc ^ 0xffffffffL;
2521     while (len >= 8)
2522     {
2523       DO8(buf);
2524       len -= 8;
2525     }
2526     if (len) do {
2527       DO1(buf);
2528     } while (--len);
2529     return crc ^ 0xffffffffL;
2530 }
2531 #endif
2532
2533 /* infblock.h -- header to use infblock.c
2534  * Copyright (C) 1995-1998 Mark Adler
2535  * For conditions of distribution and use, see copyright notice in zlib.h 
2536  */
2537
2538 /* WARNING: this file should *not* be used by applications. It is
2539    part of the implementation of the compression library and is
2540    subject to change. Applications should only use zlib.h.
2541  */
2542
2543 struct inflate_blocks_state;
2544 typedef struct inflate_blocks_state inflate_blocks_statef;
2545
2546 extern inflate_blocks_statef * inflate_blocks_new OF((
2547     z_streamp z,
2548     check_func c,               /* check function */
2549     uInt w));                   /* window size */
2550
2551 extern int inflate_blocks OF((
2552     inflate_blocks_statef *,
2553     z_streamp ,
2554     int));                      /* initial return code */
2555
2556 extern void inflate_blocks_reset OF((
2557     inflate_blocks_statef *,
2558     z_streamp ,
2559     uLong *));                  /* check value on output */
2560
2561 extern int inflate_blocks_free OF((
2562     inflate_blocks_statef *,
2563     z_streamp));
2564
2565 extern void inflate_set_dictionary OF((
2566     inflate_blocks_statef *s,
2567     const Byte *d,  /* dictionary */
2568     uInt  n));       /* dictionary length */
2569
2570 extern int inflate_blocks_sync_point OF((
2571     inflate_blocks_statef *s));
2572
2573 /* simplify the use of the inflate_huft type with some defines */
2574 #define exop word.what.Exop
2575 #define bits word.what.Bits
2576
2577 /* Table for deflate from PKZIP's appnote.txt. */
2578 static const uInt border[] = { /* Order of the bit length code lengths */
2579         16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15};
2580
2581 /* inftrees.h -- header to use inftrees.c
2582  * Copyright (C) 1995-1998 Mark Adler
2583  * For conditions of distribution and use, see copyright notice in zlib.h 
2584  */
2585
2586 /* WARNING: this file should *not* be used by applications. It is
2587    part of the implementation of the compression library and is
2588    subject to change. Applications should only use zlib.h.
2589  */
2590
2591 /* Huffman code lookup table entry--this entry is four bytes for machines
2592    that have 16-bit pointers (e.g. PC's in the small or medium model). */
2593
2594 typedef struct inflate_huft_s inflate_huft;
2595
2596 struct inflate_huft_s {
2597   union {
2598     struct {
2599       Byte Exop;        /* number of extra bits or operation */
2600       Byte Bits;        /* number of bits in this code or subcode */
2601     } what;
2602     uInt pad;           /* pad structure to a power of 2 (4 bytes for */
2603   } word;               /*  16-bit, 8 bytes for 32-bit int's) */
2604   uInt base;            /* literal, length base, distance base,
2605                            or table offset */
2606 };
2607
2608 /* Maximum size of dynamic tree.  The maximum found in a long but non-
2609    exhaustive search was 1004 huft structures (850 for length/literals
2610    and 154 for distances, the latter actually the result of an
2611    exhaustive search).  The actual maximum is not known, but the
2612    value below is more than safe. */
2613 #define MANY 1440
2614
2615 extern int inflate_trees_bits OF((
2616     uInt *,                    /* 19 code lengths */
2617     uInt *,                    /* bits tree desired/actual depth */
2618     inflate_huft * *,       /* bits tree result */
2619     inflate_huft *,             /* space for trees */
2620     z_streamp));                /* for messages */
2621
2622 extern int inflate_trees_dynamic OF((
2623     uInt,                       /* number of literal/length codes */
2624     uInt,                       /* number of distance codes */
2625     uInt *,                    /* that many (total) code lengths */
2626     uInt *,                    /* literal desired/actual bit depth */
2627     uInt *,                    /* distance desired/actual bit depth */
2628     inflate_huft * *,       /* literal/length tree result */
2629     inflate_huft * *,       /* distance tree result */
2630     inflate_huft *,             /* space for trees */
2631     z_streamp));                /* for messages */
2632
2633 extern int inflate_trees_fixed OF((
2634     uInt *,                    /* literal desired/actual bit depth */
2635     uInt *,                    /* distance desired/actual bit depth */
2636     inflate_huft * *,       /* literal/length tree result */
2637     inflate_huft * *,       /* distance tree result */
2638     z_streamp));                /* for memory allocation */
2639
2640
2641 /* infcodes.h -- header to use infcodes.c
2642  * Copyright (C) 1995-1998 Mark Adler
2643  * For conditions of distribution and use, see copyright notice in zlib.h 
2644  */
2645
2646 /* WARNING: this file should *not* be used by applications. It is
2647    part of the implementation of the compression library and is
2648    subject to change. Applications should only use zlib.h.
2649  */
2650
2651 struct inflate_codes_state;
2652 typedef struct inflate_codes_state inflate_codes_statef;
2653
2654 extern inflate_codes_statef *inflate_codes_new OF((
2655     uInt, uInt,
2656     inflate_huft *, inflate_huft *,
2657     z_streamp ));
2658
2659 extern int inflate_codes OF((
2660     inflate_blocks_statef *,
2661     z_streamp ,
2662     int));
2663
2664 extern void inflate_codes_free OF((
2665     inflate_codes_statef *,
2666     z_streamp ));
2667
2668 /* infutil.h -- types and macros common to blocks and codes
2669  * Copyright (C) 1995-1998 Mark Adler
2670  * For conditions of distribution and use, see copyright notice in zlib.h 
2671  */
2672
2673 /* WARNING: this file should *not* be used by applications. It is
2674    part of the implementation of the compression library and is
2675    subject to change. Applications should only use zlib.h.
2676  */
2677
2678 #ifndef _INFUTIL_H
2679 #define _INFUTIL_H
2680
2681 typedef enum {
2682       TYPE,     /* get type bits (3, including end bit) */
2683       LENS,     /* get lengths for stored */
2684       STORED,   /* processing stored block */
2685       TABLE,    /* get table lengths */
2686       BTREE,    /* get bit lengths tree for a dynamic block */
2687       DTREE,    /* get length, distance trees for a dynamic block */
2688       CODES,    /* processing fixed or dynamic block */
2689       DRY,      /* output remaining window bytes */
2690       DONE,     /* finished last block, done */
2691       BAD}      /* got a data error--stuck here */
2692 inflate_block_mode;
2693
2694 /* inflate blocks semi-private state */
2695 struct inflate_blocks_state {
2696
2697   /* mode */
2698   inflate_block_mode  mode;     /* current inflate_block mode */
2699
2700   /* mode dependent information */
2701   union {
2702     uInt left;          /* if STORED, bytes left to copy */
2703     struct {
2704       uInt table;               /* table lengths (14 bits) */
2705       uInt index;               /* index into blens (or border) */
2706       uInt *blens;             /* bit lengths of codes */
2707       uInt bb;                  /* bit length tree depth */
2708       inflate_huft *tb;         /* bit length decoding tree */
2709     } trees;            /* if DTREE, decoding info for trees */
2710     struct {
2711       inflate_codes_statef 
2712          *codes;
2713     } decode;           /* if CODES, current state */
2714   } sub;                /* submode */
2715   uInt last;            /* true if this block is the last block */
2716
2717   /* mode independent information */
2718   uInt bitk;            /* bits in bit buffer */
2719   uLong bitb;           /* bit buffer */
2720   inflate_huft *hufts;  /* single safe_malloc for tree space */
2721   Byte *window;        /* sliding window */
2722   Byte *end;           /* one byte after sliding window */
2723   Byte *read;          /* window read pointer */
2724   Byte *write;         /* window write pointer */
2725   check_func checkfn;   /* check function */
2726   uLong check;          /* check on output */
2727
2728 };
2729
2730
2731 /* defines for inflate input/output */
2732 /*   update pointers and return */
2733 #define UPDBITS {s->bitb=b;s->bitk=k;}
2734 #define UPDIN {z->avail_in=n;z->total_in+=p-z->next_in;z->next_in=p;}
2735 #define UPDOUT {s->write=q;}
2736 #define UPDATE {UPDBITS UPDIN UPDOUT}
2737 #define LEAVE {UPDATE return inflate_flush(s,z,r);}
2738 /*   get bytes and bits */
2739 #define LOADIN {p=z->next_in;n=z->avail_in;b=s->bitb;k=s->bitk;}
2740 #define NEEDBYTE {if(n)r=Z_OK;else LEAVE}
2741 #define NEXTBYTE (n--,*p++)
2742 #define NEEDBITS(j) {while(k<(j)){NEEDBYTE;b|=((uLong)NEXTBYTE)<<k;k+=8;}}
2743 #define DUMPBITS(j) {b>>=(j);k-=(j);}
2744 /*   output bytes */
2745 #define WAVAIL (uInt)(q<s->read?s->read-q-1:s->end-q)
2746 #define LOADOUT {q=s->write;m=(uInt)WAVAIL;}
2747 #define WRAP {if(q==s->end&&s->read!=s->window){q=s->window;m=(uInt)WAVAIL;}}
2748 #define FLUSH {UPDOUT r=inflate_flush(s,z,r); LOADOUT}
2749 #define NEEDOUT {if(m==0){WRAP if(m==0){FLUSH WRAP if(m==0) LEAVE}}r=Z_OK;}
2750 #define OUTBYTE(a) {*q++=(Byte)(a);m--;}
2751 /*   load static pointers */
2752 #define LOAD {LOADIN LOADOUT}
2753
2754 /* masks for lower bits (size given to avoid silly warnings with Visual C++) */
2755 extern uInt inflate_mask[17];
2756
2757 /* copy as much as possible from the sliding window to the output area */
2758 extern int inflate_flush OF((
2759     inflate_blocks_statef *,
2760     z_streamp ,
2761     int));
2762
2763 #endif
2764
2765                                                                 
2766 /*
2767    Notes beyond the 1.93a appnote.txt:
2768
2769    1. Distance pointers never point before the beginning of the output
2770       stream.
2771    2. Distance pointers can point back across blocks, up to 32k away.
2772    3. There is an implied maximum of 7 bits for the bit length table and
2773       15 bits for the actual data.
2774    4. If only one code exists, then it is encoded using one bit.  (Zero
2775       would be more efficient, but perhaps a little confusing.)  If two
2776       codes exist, they are coded using one bit each (0 and 1).
2777    5. There is no way of sending zero distance codes--a dummy must be
2778       sent if there are none.  (History: a pre 2.0 version of PKZIP would
2779       store blocks with no distance codes, but this was discovered to be
2780       too harsh a criterion.)  Valid only for 1.93a.  2.04c does allow
2781       zero distance codes, which is sent as one code of zero bits in
2782       length.
2783    6. There are up to 286 literal/length codes.  Code 256 represents the
2784       end-of-block.  Note however that the static length tree defines
2785       288 codes just to fill out the Huffman codes.  Codes 286 and 287
2786       cannot be used though, since there is no length base or extra bits
2787       defined for them.  Similarily, there are up to 30 distance codes.
2788       However, static trees define 32 codes (all 5 bits) to fill out the
2789       Huffman codes, but the last two had better not show up in the data.
2790    7. Unzip can check dynamic Huffman blocks for complete code sets.
2791       The exception is that a single code would not be complete (see #4).
2792    8. The five bits following the block type is really the number of
2793       literal codes sent minus 257.
2794    9. Length codes 8,16,16 are interpreted as 13 length codes of 8 bits
2795       (1+6+6).  Therefore, to output three times the length, you output
2796       three codes (1+1+1), whereas to output four times the same length,
2797       you only need two codes (1+3).  Hmm.
2798   10. In the tree reconstruction algorithm, Code = Code + Increment
2799       only if BitLength(i) is not zero.  (Pretty obvious.)
2800   11. Correction: 4 Bits: # of Bit Length codes - 4     (4 - 19)
2801   12. Note: length code 284 can represent 227-258, but length code 285
2802       really is 258.  The last length deserves its own, short code
2803       since it gets used a lot in very redundant files.  The length
2804       258 is special since 258 - 3 (the min match length) is 255.
2805   13. The literal/length and distance code bit lengths are read as a
2806       single stream of lengths.  It is possible (and advantageous) for
2807       a repeat code (16, 17, or 18) to go across the boundary between
2808       the two sets of lengths.
2809  */
2810
2811
2812 #ifndef __APPLE__
2813 void inflate_blocks_reset(inflate_blocks_statef *s, z_streamp z, uLong *c)
2814 {
2815   if (c != Z_NULL)
2816     *c = s->check;
2817   if (s->mode == BTREE || s->mode == DTREE)
2818     ZFREE(z, s->sub.trees.blens);
2819   if (s->mode == CODES)
2820     inflate_codes_free(s->sub.decode.codes, z);
2821   s->mode = TYPE;
2822   s->bitk = 0;
2823   s->bitb = 0;
2824   s->read = s->write = s->window;
2825   if (s->checkfn != Z_NULL)
2826     z->adler = s->check = (*s->checkfn)(0L, (const Byte *)Z_NULL, 0);
2827   Tracev(("inflate:   blocks reset\n"));
2828 }
2829 #endif
2830
2831 #ifndef __APPLE__
2832 inflate_blocks_statef *inflate_blocks_new(z_streamp z, check_func c, uInt w)
2833 {
2834   inflate_blocks_statef *s;
2835
2836   if ((s = (inflate_blocks_statef *)ZALLOC
2837        (z,1,sizeof(struct inflate_blocks_state))) == Z_NULL)
2838     return s;
2839   if ((s->hufts =
2840        (inflate_huft *)ZALLOC(z, sizeof(inflate_huft), MANY)) == Z_NULL)
2841   {
2842     ZFREE(z, s);
2843     return Z_NULL;
2844   }
2845   if ((s->window = (Byte *)ZALLOC(z, 1, w)) == Z_NULL)
2846   {
2847     ZFREE(z, s->hufts);
2848     ZFREE(z, s);
2849     return Z_NULL;
2850   }
2851   s->end = s->window + w;
2852   s->checkfn = c;
2853   s->mode = TYPE;
2854   Tracev(("inflate:   blocks allocated\n"));
2855   inflate_blocks_reset(s, z, Z_NULL);
2856   return s;
2857 }
2858 #endif
2859
2860 #ifndef __APPLE__
2861 int inflate_blocks(inflate_blocks_statef *s, z_streamp z, int r)
2862 {
2863   uInt t;               /* temporary storage */
2864   uLong b;              /* bit buffer */
2865   uInt k;               /* bits in bit buffer */
2866   Byte *p;             /* input data pointer */
2867   uInt n;               /* bytes available there */
2868   Byte *q;             /* output window write pointer */
2869   uInt m;               /* bytes to end of window or read pointer */
2870
2871   /* copy input/output information to locals (UPDATE macro restores) */
2872   LOAD
2873
2874   /* process input based on current state */
2875   while (1) switch (s->mode)
2876   {
2877     case TYPE:
2878       NEEDBITS(3)
2879       t = (uInt)b & 7;
2880       s->last = t & 1;
2881       switch (t >> 1)
2882       {
2883         case 0:                         /* stored */
2884           Tracev(("inflate:     stored block%s\n",
2885                  s->last ? " (last)" : ""));
2886           DUMPBITS(3)
2887           t = k & 7;                    /* go to byte boundary */
2888           DUMPBITS(t)
2889           s->mode = LENS;               /* get length of stored block */
2890           break;
2891         case 1:                         /* fixed */
2892           Tracev(("inflate:     fixed codes block%s\n",
2893                  s->last ? " (last)" : ""));
2894           {
2895             uInt bl, bd;
2896             inflate_huft *tl, *td;
2897
2898             inflate_trees_fixed(&bl, &bd, &tl, &td, z);
2899             s->sub.decode.codes = inflate_codes_new(bl, bd, tl, td, z);
2900             if (s->sub.decode.codes == Z_NULL)
2901             {
2902               r = Z_MEM_ERROR;
2903               LEAVE
2904             }
2905           }
2906           DUMPBITS(3)
2907           s->mode = CODES;
2908           break;
2909         case 2:                         /* dynamic */
2910           Tracev(("inflate:     dynamic codes block%s\n",
2911                  s->last ? " (last)" : ""));
2912           DUMPBITS(3)
2913           s->mode = TABLE;
2914           break;
2915         case 3:                         /* illegal */
2916           DUMPBITS(3)
2917           s->mode = BAD;
2918           z->msg = (char*)"invalid block type";
2919           r = Z_DATA_ERROR;
2920           LEAVE
2921       }
2922       break;
2923     case LENS:
2924       NEEDBITS(32)
2925       if ((((~b) >> 16) & 0xffff) != (b & 0xffff))
2926       {
2927         s->mode = BAD;
2928         z->msg = (char*)"invalid stored block lengths";
2929         r = Z_DATA_ERROR;
2930         LEAVE
2931       }
2932       s->sub.left = (uInt)b & 0xffff;
2933       b = k = 0;                      /* dump bits */
2934       Tracev(("inflate:       stored length %u\n", s->sub.left));
2935       s->mode = s->sub.left ? STORED : (s->last ? DRY : TYPE);
2936       break;
2937     case STORED:
2938       if (n == 0)
2939         LEAVE
2940       NEEDOUT
2941       t = s->sub.left;
2942       if (t > n) t = n;
2943       if (t > m) t = m;
2944       zmemcpy(q, p, t);
2945       p += t;  n -= t;
2946       q += t;  m -= t;
2947       if ((s->sub.left -= t) != 0)
2948         break;
2949       Tracev(("inflate:       stored end, %lu total out\n",
2950               z->total_out + (q >= s->read ? q - s->read :
2951               (s->end - s->read) + (q - s->window))));
2952       s->mode = s->last ? DRY : TYPE;
2953       break;
2954     case TABLE:
2955       NEEDBITS(14)
2956       s->sub.trees.table = t = (uInt)b & 0x3fff;
2957 #ifndef PKZIP_BUG_WORKAROUND
2958       if ((t & 0x1f) > 29 || ((t >> 5) & 0x1f) > 29)
2959       {
2960         s->mode = BAD;
2961         z->msg = (char*)"too many length or distance symbols";
2962         r = Z_DATA_ERROR;
2963         LEAVE
2964       }
2965 #endif
2966       t = 258 + (t & 0x1f) + ((t >> 5) & 0x1f);
2967       if ((s->sub.trees.blens = (uInt*)ZALLOC(z, t, sizeof(uInt))) == Z_NULL)
2968       {
2969         r = Z_MEM_ERROR;
2970         LEAVE
2971       }
2972       DUMPBITS(14)
2973       s->sub.trees.index = 0;
2974       Tracev(("inflate:       table sizes ok\n"));
2975       s->mode = BTREE;
2976     case BTREE:
2977       while (s->sub.trees.index < 4 + (s->sub.trees.table >> 10))
2978       {
2979         NEEDBITS(3)
2980         s->sub.trees.blens[border[s->sub.trees.index++]] = (uInt)b & 7;
2981         DUMPBITS(3)
2982       }
2983       while (s->sub.trees.index < 19)
2984         s->sub.trees.blens[border[s->sub.trees.index++]] = 0;
2985       s->sub.trees.bb = 7;
2986       t = inflate_trees_bits(s->sub.trees.blens, &s->sub.trees.bb,
2987                              &s->sub.trees.tb, s->hufts, z);
2988       if (t != Z_OK)
2989       {
2990         ZFREE(z, s->sub.trees.blens);
2991         r = t;
2992         if (r == Z_DATA_ERROR)
2993           s->mode = BAD;
2994         LEAVE
2995       }
2996       s->sub.trees.index = 0;
2997       Tracev(("inflate:       bits tree ok\n"));
2998       s->mode = DTREE;
2999     case DTREE:
3000       while (t = s->sub.trees.table,
3001              s->sub.trees.index < 258 + (t & 0x1f) + ((t >> 5) & 0x1f))
3002       {
3003         inflate_huft *h;
3004         uInt i, j, c;
3005
3006         t = s->sub.trees.bb;
3007         NEEDBITS(t)
3008         h = s->sub.trees.tb + ((uInt)b & inflate_mask[t]);
3009         t = h->bits;
3010         c = h->base;
3011         if (c < 16)
3012         {
3013           DUMPBITS(t)
3014           s->sub.trees.blens[s->sub.trees.index++] = c;
3015         }
3016         else /* c == 16..18 */
3017         {
3018           i = c == 18 ? 7 : c - 14;
3019           j = c == 18 ? 11 : 3;
3020           NEEDBITS(t + i)
3021           DUMPBITS(t)
3022           j += (uInt)b & inflate_mask[i];
3023           DUMPBITS(i)
3024           i = s->sub.trees.index;
3025           t = s->sub.trees.table;
3026           if (i + j > 258 + (t & 0x1f) + ((t >> 5) & 0x1f) ||
3027               (c == 16 && i < 1))
3028           {
3029             ZFREE(z, s->sub.trees.blens);
3030             s->mode = BAD;
3031             z->msg = (char*)"invalid bit length repeat";
3032             r = Z_DATA_ERROR;
3033             LEAVE
3034           }
3035           c = c == 16 ? s->sub.trees.blens[i - 1] : 0;
3036           do {
3037             s->sub.trees.blens[i++] = c;
3038           } while (--j);
3039           s->sub.trees.index = i;
3040         }
3041       }
3042       s->sub.trees.tb = Z_NULL;
3043       {
3044         uInt bl, bd;
3045         inflate_huft *tl, *td;
3046         inflate_codes_statef *c;
3047
3048         bl = 9;         /* must be <= 9 for lookahead assumptions */
3049         bd = 6;         /* must be <= 9 for lookahead assumptions */
3050         t = s->sub.trees.table;
3051         t = inflate_trees_dynamic(257 + (t & 0x1f), 1 + ((t >> 5) & 0x1f),
3052                                   s->sub.trees.blens, &bl, &bd, &tl, &td,
3053                                   s->hufts, z);
3054         ZFREE(z, s->sub.trees.blens);
3055         if (t != Z_OK)
3056         {
3057           if (t == (uInt)Z_DATA_ERROR)
3058             s->mode = BAD;
3059           r = t;
3060           LEAVE
3061         }
3062         Tracev(("inflate:       trees ok\n"));
3063         if ((c = inflate_codes_new(bl, bd, tl, td, z)) == Z_NULL)
3064         {
3065           r = Z_MEM_ERROR;
3066           LEAVE
3067         }
3068         s->sub.decode.codes = c;
3069       }
3070       s->mode = CODES;
3071     case CODES:
3072       UPDATE
3073       if ((r = inflate_codes(s, z, r)) != Z_STREAM_END)
3074         return inflate_flush(s, z, r);
3075       r = Z_OK;
3076       inflate_codes_free(s->sub.decode.codes, z);
3077       LOAD
3078       Tracev(("inflate:       codes end, %lu total out\n",
3079               z->total_out + (q >= s->read ? q - s->read :
3080               (s->end - s->read) + (q - s->window))));
3081       if (!s->last)
3082       {
3083         s->mode = TYPE;
3084         break;
3085       }
3086       s->mode = DRY;
3087     case DRY:
3088       FLUSH
3089       if (s->read != s->write)
3090         LEAVE
3091       s->mode = DONE;
3092     case DONE:
3093       r = Z_STREAM_END;
3094       LEAVE
3095     case BAD:
3096       r = Z_DATA_ERROR;
3097       LEAVE
3098     default:
3099       r = Z_STREAM_ERROR;
3100       LEAVE
3101   }
3102 }
3103 #endif
3104
3105 #ifndef __APPLE__
3106 int inflate_blocks_free(inflate_blocks_statef *s, z_streamp z)
3107 {
3108   inflate_blocks_reset(s, z, Z_NULL);
3109   ZFREE(z, s->window);
3110   ZFREE(z, s->hufts);
3111   ZFREE(z, s);
3112   Tracev(("inflate:   blocks freed\n"));
3113   return Z_OK;
3114 }
3115 #endif
3116
3117 #ifndef __APPLE__
3118 void inflate_set_dictionary(inflate_blocks_statef *s, const Byte *d, uInt n)
3119 {
3120   zmemcpy(s->window, d, n);
3121   s->read = s->write = s->window + n;
3122 }
3123 #endif
3124
3125 /* Returns true if inflate is currently at the end of a block generated
3126  * by Z_SYNC_FLUSH or Z_FULL_FLUSH. 
3127  * IN assertion: s != Z_NULL
3128  */
3129 #ifndef __APPLE__
3130 int inflate_blocks_sync_point(inflate_blocks_statef *s)
3131 {
3132   return s->mode == LENS;
3133 }
3134 #endif
3135
3136 /* And'ing with mask[n] masks the lower n bits */
3137 uInt inflate_mask[17] = {
3138     0x0000,
3139     0x0001, 0x0003, 0x0007, 0x000f, 0x001f, 0x003f, 0x007f, 0x00ff,
3140     0x01ff, 0x03ff, 0x07ff, 0x0fff, 0x1fff, 0x3fff, 0x7fff, 0xffff
3141 };
3142
3143 /* copy as much as possible from the sliding window to the output area */
3144 #ifndef __APPLE__
3145 int inflate_flush(inflate_blocks_statef *s, z_streamp z, int r)
3146 {
3147   uInt n;
3148   Byte *p;
3149   Byte *q;
3150
3151   /* static copies of source and destination pointers */
3152   p = z->next_out;
3153   q = s->read;
3154
3155   /* compute number of bytes to copy as as end of window */
3156   n = (uInt)((q <= s->write ? s->write : s->end) - q);
3157   if (n > z->avail_out) n = z->avail_out;
3158   if (n && r == Z_BUF_ERROR) r = Z_OK;
3159
3160   /* update counters */
3161   z->avail_out -= n;
3162   z->total_out += n;
3163
3164   /* update check information */
3165   if (s->checkfn != Z_NULL)
3166     z->adler = s->check = (*s->checkfn)(s->check, q, n);
3167
3168   /* copy as as end of window */
3169   zmemcpy(p, q, n);
3170   p += n;
3171   q += n;
3172
3173   /* see if more to copy at beginning of window */
3174   if (q == s->end)
3175   {
3176     /* wrap pointers */
3177     q = s->window;
3178     if (s->write == s->end)
3179       s->write = s->window;
3180
3181     /* compute bytes to copy */
3182     n = (uInt)(s->write - q);
3183     if (n > z->avail_out) n = z->avail_out;
3184     if (n && r == Z_BUF_ERROR) r = Z_OK;
3185
3186     /* update counters */
3187     z->avail_out -= n;
3188     z->total_out += n;
3189
3190     /* update check information */
3191     if (s->checkfn != Z_NULL)
3192       z->adler = s->check = (*s->checkfn)(s->check, q, n);
3193
3194     /* copy */
3195     zmemcpy(p, q, n);
3196     p += n;
3197     q += n;
3198   }
3199
3200   /* update pointers */
3201   z->next_out = p;
3202   s->read = q;
3203
3204   /* done */
3205   return r;
3206 }
3207 #endif
3208
3209 /* inftrees.c -- generate Huffman trees for efficient decoding
3210  * Copyright (C) 1995-1998 Mark Adler
3211  * For conditions of distribution and use, see copyright notice in zlib.h 
3212  */
3213
3214 #ifndef __APPLE__
3215 const char inflate_copyright[] =
3216    " inflate 1.1.3 Copyright 1995-1998 Mark Adler ";
3217 #endif
3218
3219 /*
3220   If you use the zlib library in a product, an acknowledgment is welcome
3221   in the documentation of your product. If for some reason you cannot
3222   include such an acknowledgment, I would appreciate that you keep this
3223   copyright string in the executable of your product.
3224  */
3225
3226 /* simplify the use of the inflate_huft type with some defines */
3227 #define exop word.what.Exop
3228 #define bits word.what.Bits
3229
3230
3231 static int huft_build OF((
3232     uInt *,                             /* code lengths in bits */
3233     uInt,               /* number of codes */
3234     uInt,               /* number of "simple" codes */
3235     const uInt *,               /* list of base values for non-simple codes */
3236     const uInt *,               /* list of extra bits for non-simple codes */
3237     inflate_huft **,    /* result: starting table */
3238     uInt *,                             /* maximum lookup bits (returns actual) */
3239     inflate_huft *,     /* space for trees */
3240     uInt *,             /* hufts used in space */
3241     uInt * ));                  /* space for values */
3242
3243 /* Tables for deflate from PKZIP's appnote.txt. */
3244 static const uInt cplens[31] = { /* Copy lengths for literal codes 257..285 */
3245         3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31,
3246         35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0};
3247         /* see note #13 above about 258 */
3248 static const uInt cplext[31] = { /* Extra bits for literal codes 257..285 */
3249         0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2,
3250         3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0, 112, 112}; /* 112==invalid */
3251 static const uInt cpdist[30] = { /* Copy offsets for distance codes 0..29 */
3252         1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193,
3253         257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145,
3254         8193, 12289, 16385, 24577};
3255 static const uInt cpdext[30] = { /* Extra bits for distance codes */
3256         0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6,
3257         7, 7, 8, 8, 9, 9, 10, 10, 11, 11,
3258         12, 12, 13, 13};
3259
3260 /*
3261    Huffman code decoding is performed using a multi-level table lookup.
3262    The fastest way to decode is to simply build a lookup table whose
3263    size is determined by the longest code.  However, the time it takes
3264    to build this table can also be a factor if the data being decoded
3265    is not very long.  The most common codes are necessarily the
3266    shortest codes, so those codes dominate the decoding time, and hence
3267    the speed.  The idea is you can have a shorter table that decodes the
3268    shorter, more probable codes, and then point to subsidiary tables for
3269    the longer codes.  The time it costs to decode the longer codes is
3270    then traded against the time it takes to make longer tables.
3271
3272    This results of this trade are in the variables lbits and dbits
3273    below.  lbits is the number of bits the first level table for literal/
3274    length codes can decode in one step, and dbits is the same thing for
3275    the distance codes.  Subsequent tables are also less than or equal to
3276    those sizes.  These values may be adjusted either when all of the
3277    codes are shorter than that, in which case the longest code length in
3278    bits is used, or when the shortest code is *longer* than the requested
3279    table size, in which case the length of the shortest code in bits is
3280    used.
3281
3282    There are two different values for the two tables, since they code a
3283    different number of possibilities each.  The literal/length table
3284    codes 286 possible values, or in a flat code, a little over eight
3285    bits.  The distance table codes 30 possible values, or a little less
3286    than five bits, flat.  The optimum values for speed end up being
3287    about one bit more than those, so lbits is 8+1 and dbits is 5+1.
3288    The optimum values may differ though from machine to machine, and
3289    possibly even between compilers.  Your mileage may vary.
3290  */
3291
3292
3293 /* If BMAX needs to be larger than 16, then h and x[] should be uLong. */
3294 #define BMAX 15         /* maximum bit length of any code */
3295
3296 static int huft_build(uInt *b, uInt n, uInt s, const uInt *d, const uInt *e, inflate_huft ** t, uInt *m, inflate_huft *hp, uInt *hn, uInt *v)
3297 //uInt *b;               /* code lengths in bits (all assumed <= BMAX) */
3298 //uInt n;                 /* number of codes (assumed <= 288) */
3299 //uInt s;                 /* number of simple-valued codes (0..s-1) */
3300 //const uInt *d;         /* list of base values for non-simple codes */
3301 //const uInt *e;         /* list of extra bits for non-simple codes */
3302 //inflate_huft ** t;            /* result: starting table */
3303 //uInt *m;               /* maximum lookup bits, returns actual */
3304 //inflate_huft *hp;       /* space for trees */
3305 //uInt *hn;               /* hufts used in space */
3306 //uInt *v;               /* working area: values in order of bit length */
3307 /* Given a list of code lengths and a maximum table size, make a set of
3308    tables to decode that set of codes.  Return Z_OK on success, Z_BUF_ERROR
3309    if the given code set is incomplete (the tables are still built in this
3310    case), Z_DATA_ERROR if the input is invalid (an over-subscribed set of
3311    lengths), or Z_MEM_ERROR if not enough memory. */
3312 {
3313
3314   uInt a;                       /* counter for codes of length k */
3315   uInt c[BMAX+1];               /* bit length count table */
3316   uInt f;                       /* i repeats in table every f entries */
3317   int g;                        /* maximum code length */
3318   int h;                        /* table level */
3319   register uInt i;              /* counter, current code */
3320   register uInt j;              /* counter */
3321   register int k;               /* number of bits in current code */
3322   int l;                        /* bits per table (returned in m) */
3323   uInt mask;                    /* (1 << w) - 1, to avoid cc -O bug on HP */
3324   register uInt *p;            /* pointer into c[], b[], or v[] */
3325   inflate_huft *q;              /* points to current table */
3326   struct inflate_huft_s r;      /* table entry for structure assignment */
3327   inflate_huft *u[BMAX];        /* table stack */
3328   register int w;               /* bits before this table == (l * h) */
3329   uInt x[BMAX+1];               /* bit offsets, then code stack */
3330   uInt *xp;                    /* pointer into x */
3331   int y;                        /* number of dummy codes added */
3332   uInt z;                       /* number of entries in current table */
3333
3334
3335   /* Generate counts for each bit length */
3336   p = c;
3337 #define C0 *p++ = 0;
3338 #define C2 C0 C0 C0 C0
3339 #define C4 C2 C2 C2 C2
3340   C4                            /* clear c[]--assume BMAX+1 is 16 */
3341   p = b;  i = n;
3342   do {
3343     c[*p++]++;                  /* assume all entries <= BMAX */
3344   } while (--i);
3345   if (c[0] == n)                /* null input--all zero length codes */
3346   {
3347     *t = (inflate_huft *)Z_NULL;
3348     *m = 0;
3349     return Z_OK;
3350   }
3351
3352
3353   /* Find minimum and maximum length, bound *m by those */
3354   l = *m;
3355   for (j = 1; j <= BMAX; j++)
3356     if (c[j])
3357       break;
3358   k = j;                        /* minimum code length */
3359   if ((uInt)l < j)
3360     l = j;
3361   for (i = BMAX; i; i--)
3362     if (c[i])
3363       break;
3364   g = i;                        /* maximum code length */
3365   if ((uInt)l > i)
3366     l = i;
3367   *m = l;
3368
3369
3370   /* Adjust last length count to fill out codes, if needed */
3371   for (y = 1 << j; j < i; j++, y <<= 1)
3372     if ((y -= c[j]) < 0)
3373       return Z_DATA_ERROR;
3374   if ((y -= c[i]) < 0)
3375     return Z_DATA_ERROR;
3376   c[i] += y;
3377
3378
3379   /* Generate starting offsets into the value table for each length */
3380   x[1] = j = 0;
3381   p = c + 1;  xp = x + 2;
3382   while (--i) {                 /* note that i == g from above */
3383     *xp++ = (j += *p++);
3384   }
3385
3386
3387   /* Make a table of values in order of bit lengths */
3388   p = b;  i = 0;
3389   do {
3390     if ((j = *p++) != 0)
3391       v[x[j]++] = i;
3392   } while (++i < n);
3393   n = x[g];                     /* set n to length of v */
3394
3395
3396   /* Generate the Huffman codes and for each, make the table entries */
3397   x[0] = i = 0;                 /* first Huffman code is zero */
3398   p = v;                        /* grab values in bit order */
3399   h = -1;                       /* no tables yet--level -1 */
3400   w = -l;                       /* bits decoded == (l * h) */
3401   u[0] = (inflate_huft *)Z_NULL;        /* just to keep compilers happy */
3402   q = (inflate_huft *)Z_NULL;   /* ditto */
3403   z = 0;                        /* ditto */
3404
3405   /* go through the bit lengths (k already is bits in shortest code) */
3406   for (; k <= g; k++)
3407   {
3408     a = c[k];
3409     while (a--)
3410     {
3411       /* here i is the Huffman code of length k bits for value *p */
3412       /* make tables up to required level */
3413       while (k > w + l)
3414       {
3415         h++;
3416         w += l;                 /* previous table always l bits */
3417
3418         /* compute minimum size table less than or equal to l bits */
3419         z = g - w;
3420         z = z > (uInt)l ? l : z;        /* table size upper limit */
3421         if ((f = 1 << (j = k - w)) > a + 1)     /* try a k-w bit table */
3422         {                       /* too few codes for k-w bit table */
3423           f -= a + 1;           /* deduct codes from patterns left */
3424           xp = c + k;
3425           if (j < z)
3426             while (++j < z)     /* try smaller tables up to z bits */
3427             {
3428               if ((f <<= 1) <= *++xp)
3429                 break;          /* enough codes to use up j bits */
3430               f -= *xp;         /* else deduct codes from patterns */
3431             }
3432         }
3433         z = 1 << j;             /* table entries for j-bit table */
3434
3435         /* allocate new table */
3436         if (*hn + z > MANY)     /* (note: doesn't matter for fixed) */
3437           return Z_MEM_ERROR;   /* not enough memory */
3438         u[h] = q = hp + *hn;
3439         *hn += z;
3440
3441         /* connect to last table, if there is one */
3442         if (h)
3443         {
3444           x[h] = i;             /* save pattern for backing up */
3445           r.bits = (Byte)l;     /* bits to dump before this table */
3446           r.exop = (Byte)j;     /* bits in this table */
3447           j = i >> (w - l);
3448           r.base = (uInt)(q - u[h-1] - j);   /* offset to this table */
3449           u[h-1][j] = r;        /* connect to last table */
3450         }
3451         else
3452           *t = q;               /* first table is returned result */
3453       }
3454
3455       /* set up table entry in r */
3456       r.bits = (Byte)(k - w);
3457       if (p >= v + n)
3458         r.exop = 128 + 64;      /* out of values--invalid code */
3459       else if (*p < s)
3460       {
3461         r.exop = (Byte)(*p < 256 ? 0 : 32 + 64);     /* 256 is end-of-block */
3462         r.base = *p++;          /* simple code is just the value */
3463       }
3464       else
3465       {
3466         r.exop = (Byte)(e[*p - s] + 16 + 64);/* non-simple--look up in lists */
3467         r.base = d[*p++ - s];
3468       }
3469
3470       /* fill code-like entries with r */
3471       f = 1 << (k - w);
3472       for (j = i >> w; j < z; j += f)
3473         q[j] = r;
3474
3475       /* backwards increment the k-bit code i */
3476       for (j = 1 << (k - 1); i & j; j >>= 1)
3477         i ^= j;
3478       i ^= j;
3479
3480       /* backup over finished tables */
3481       mask = (1 << w) - 1;      /* needed on HP, cc -O bug */
3482       while ((i & mask) != x[h])
3483       {
3484         h--;                    /* don't need to update q */
3485         w -= l;
3486         mask = (1 << w) - 1;
3487       }
3488     }
3489   }
3490
3491
3492   /* Return Z_BUF_ERROR if we were given an incomplete table */
3493   return y != 0 && g != 1 ? Z_BUF_ERROR : Z_OK;
3494 }
3495
3496
3497 #ifndef __APPLE__
3498 int inflate_trees_bits(uInt *c, uInt *bb, inflate_huft * *tb, inflate_huft *hp, z_streamp z)
3499 //uInt *c;               /* 19 code lengths */
3500 //uInt *bb;              /* bits tree desired/actual depth */
3501 //inflate_huft * *tb; /* bits tree result */
3502 //inflate_huft *hp;       /* space for trees */
3503 //z_streamp z;            /* for messages */
3504 {
3505   int r;
3506   uInt hn = 0;          /* hufts used in space */
3507   uInt *v;             /* work area for huft_build */
3508
3509   if ((v = (uInt*)ZALLOC(z, 19, sizeof(uInt))) == Z_NULL)
3510     return Z_MEM_ERROR;
3511   r = huft_build(c, 19, 19, (uInt*)Z_NULL, (uInt*)Z_NULL,
3512                  tb, bb, hp, &hn, v);
3513   if (r == Z_DATA_ERROR)
3514     z->msg = (char*)"oversubscribed dynamic bit lengths tree";
3515   else if (r == Z_BUF_ERROR || *bb == 0)
3516   {
3517     z->msg = (char*)"incomplete dynamic bit lengths tree";
3518     r = Z_DATA_ERROR;
3519   }
3520   ZFREE(z, v);
3521   return r;
3522 }
3523 #endif
3524
3525 #ifndef __APPLE__
3526 int inflate_trees_dynamic(uInt nl, uInt nd, uInt *c, uInt *bl, uInt *bd, inflate_huft * *tl, inflate_huft * *td, inflate_huft *hp, z_streamp z)
3527 //uInt nl;                /* number of literal/length codes */
3528 //uInt nd;                /* number of distance codes */
3529 //uInt *c;               /* that many (total) code lengths */
3530 //uInt *bl;              /* literal desired/actual bit depth */
3531 //uInt *bd;              /* distance desired/actual bit depth */
3532 //inflate_huft * *tl; /* literal/length tree result */
3533 //inflate_huft * *td; /* distance tree result */
3534 //inflate_huft *hp;       /* space for trees */
3535 //z_streamp z;            /* for messages */
3536 {
3537   int r;
3538   uInt hn = 0;          /* hufts used in space */
3539   uInt *v;             /* work area for huft_build */
3540
3541   /* allocate work area */
3542   if ((v = (uInt*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL)
3543     return Z_MEM_ERROR;
3544
3545   /* build literal/length tree */
3546   r = huft_build(c, nl, 257, cplens, cplext, tl, bl, hp, &hn, v);
3547   if (r != Z_OK || *bl == 0)
3548   {
3549     if (r == Z_DATA_ERROR)
3550       z->msg = (char*)"oversubscribed literal/length tree";
3551     else if (r != Z_MEM_ERROR)
3552     {
3553       z->msg = (char*)"incomplete literal/length tree";
3554       r = Z_DATA_ERROR;
3555     }
3556     ZFREE(z, v);
3557     return r;
3558   }
3559
3560   /* build distance tree */
3561   r = huft_build(c + nl, nd, 0, cpdist, cpdext, td, bd, hp, &hn, v);
3562   if (r != Z_OK || (*bd == 0 && nl > 257))
3563   {
3564     if (r == Z_DATA_ERROR)
3565       z->msg = (char*)"oversubscribed distance tree";
3566     else if (r == Z_BUF_ERROR) {
3567 #ifdef PKZIP_BUG_WORKAROUND
3568       r = Z_OK;
3569     }
3570 #else
3571       z->msg = (char*)"incomplete distance tree";
3572       r = Z_DATA_ERROR;
3573     }
3574     else if (r != Z_MEM_ERROR)
3575     {
3576       z->msg = (char*)"empty distance tree with lengths";
3577       r = Z_DATA_ERROR;
3578     }
3579     ZFREE(z, v);
3580     return r;
3581 #endif
3582   }
3583
3584   /* done */
3585   ZFREE(z, v);
3586   return Z_OK;
3587 }
3588 #endif
3589
3590 /* inffixed.h -- table for decoding fixed codes
3591  * Generated automatically by the maketree.c program
3592  */
3593
3594 /* WARNING: this file should *not* be used by applications. It is
3595    part of the implementation of the compression library and is
3596    subject to change. Applications should only use zlib.h.
3597  */
3598
3599 static uInt fixed_bl = 9;
3600 static uInt fixed_bd = 5;
3601 static inflate_huft fixed_tl[] = {
3602     {{{96,7}},256}, {{{0,8}},80}, {{{0,8}},16}, {{{84,8}},115},
3603     {{{82,7}},31}, {{{0,8}},112}, {{{0,8}},48}, {{{0,9}},192},
3604     {{{80,7}},10}, {{{0,8}},96}, {{{0,8}},32}, {{{0,9}},160},
3605     {{{0,8}},0}, {{{0,8}},128}, {{{0,8}},64}, {{{0,9}},224},
3606     {{{80,7}},6}, {{{0,8}},88}, {{{0,8}},24}, {{{0,9}},144},
3607     {{{83,7}},59}, {{{0,8}},120}, {{{0,8}},56}, {{{0,9}},208},
3608     {{{81,7}},17}, {{{0,8}},104}, {{{0,8}},40}, {{{0,9}},176},
3609     {{{0,8}},8}, {{{0,8}},136}, {{{0,8}},72}, {{{0,9}},240},
3610     {{{80,7}},4}, {{{0,8}},84}, {{{0,8}},20}, {{{85,8}},227},
3611     {{{83,7}},43}, {{{0,8}},116}, {{{0,8}},52}, {{{0,9}},200},
3612     {{{81,7}},13}, {{{0,8}},100}, {{{0,8}},36}, {{{0,9}},168},
3613     {{{0,8}},4}, {{{0,8}},132}, {{{0,8}},68}, {{{0,9}},232},
3614     {{{80,7}},8}, {{{0,8}},92}, {{{0,8}},28}, {{{0,9}},152},
3615     {{{84,7}},83}, {{{0,8}},124}, {{{0,8}},60}, {{{0,9}},216},
3616     {{{82,7}},23}, {{{0,8}},108}, {{{0,8}},44}, {{{0,9}},184},
3617     {{{0,8}},12}, {{{0,8}},140}, {{{0,8}},76}, {{{0,9}},248},
3618     {{{80,7}},3}, {{{0,8}},82}, {{{0,8}},18}, {{{85,8}},163},
3619     {{{83,7}},35}, {{{0,8}},114}, {{{0,8}},50}, {{{0,9}},196},
3620     {{{81,7}},11}, {{{0,8}},98}, {{{0,8}},34}, {{{0,9}},164},
3621     {{{0,8}},2}, {{{0,8}},130}, {{{0,8}},66}, {{{0,9}},228},
3622     {{{80,7}},7}, {{{0,8}},90}, {{{0,8}},26}, {{{0,9}},148},
3623     {{{84,7}},67}, {{{0,8}},122}, {{{0,8}},58}, {{{0,9}},212},
3624     {{{82,7}},19}, {{{0,8}},106}, {{{0,8}},42}, {{{0,9}},180},
3625     {{{0,8}},10}, {{{0,8}},138}, {{{0,8}},74}, {{{0,9}},244},
3626     {{{80,7}},5}, {{{0,8}},86}, {{{0,8}},22}, {{{192,8}},0},
3627     {{{83,7}},51}, {{{0,8}},118}, {{{0,8}},54}, {{{0,9}},204},
3628     {{{81,7}},15}, {{{0,8}},102}, {{{0,8}},38}, {{{0,9}},172},
3629     {{{0,8}},6}, {{{0,8}},134}, {{{0,8}},70}, {{{0,9}},236},
3630     {{{80,7}},9}, {{{0,8}},94}, {{{0,8}},30}, {{{0,9}},156},
3631     {{{84,7}},99}, {{{0,8}},126}, {{{0,8}},62}, {{{0,9}},220},
3632     {{{82,7}},27}, {{{0,8}},110}, {{{0,8}},46}, {{{0,9}},188},
3633     {{{0,8}},14}, {{{0,8}},142}, {{{0,8}},78}, {{{0,9}},252},
3634     {{{96,7}},256}, {{{0,8}},81}, {{{0,8}},17}, {{{85,8}},131},
3635     {{{82,7}},31}, {{{0,8}},113}, {{{0,8}},49}, {{{0,9}},194},
3636     {{{80,7}},10}, {{{0,8}},97}, {{{0,8}},33}, {{{0,9}},162},
3637     {{{0,8}},1}, {{{0,8}},129}, {{{0,8}},65}, {{{0,9}},226},
3638     {{{80,7}},6}, {{{0,8}},89}, {{{0,8}},25}, {{{0,9}},146},
3639     {{{83,7}},59}, {{{0,8}},121}, {{{0,8}},57}, {{{0,9}},210},
3640     {{{81,7}},17}, {{{0,8}},105}, {{{0,8}},41}, {{{0,9}},178},
3641     {{{0,8}},9}, {{{0,8}},137}, {{{0,8}},73}, {{{0,9}},242},
3642     {{{80,7}},4}, {{{0,8}},85}, {{{0,8}},21}, {{{80,8}},258},
3643     {{{83,7}},43}, {{{0,8}},117}, {{{0,8}},53}, {{{0,9}},202},
3644     {{{81,7}},13}, {{{0,8}},101}, {{{0,8}},37}, {{{0,9}},170},
3645     {{{0,8}},5}, {{{0,8}},133}, {{{0,8}},69}, {{{0,9}},234},
3646     {{{80,7}},8}, {{{0,8}},93}, {{{0,8}},29}, {{{0,9}},154},
3647     {{{84,7}},83}, {{{0,8}},125}, {{{0,8}},61}, {{{0,9}},218},
3648     {{{82,7}},23}, {{{0,8}},109}, {{{0,8}},45}, {{{0,9}},186},
3649     {{{0,8}},13}, {{{0,8}},141}, {{{0,8}},77}, {{{0,9}},250},
3650     {{{80,7}},3}, {{{0,8}},83}, {{{0,8}},19}, {{{85,8}},195},
3651     {{{83,7}},35}, {{{0,8}},115}, {{{0,8}},51}, {{{0,9}},198},
3652     {{{81,7}},11}, {{{0,8}},99}, {{{0,8}},35}, {{{0,9}},166},
3653     {{{0,8}},3}, {{{0,8}},131}, {{{0,8}},67}, {{{0,9}},230},
3654     {{{80,7}},7}, {{{0,8}},91}, {{{0,8}},27}, {{{0,9}},150},
3655     {{{84,7}},67}, {{{0,8}},123}, {{{0,8}},59}, {{{0,9}},214},
3656     {{{82,7}},19}, {{{0,8}},107}, {{{0,8}},43}, {{{0,9}},182},
3657     {{{0,8}},11}, {{{0,8}},139}, {{{0,8}},75}, {{{0,9}},246},
3658     {{{80,7}},5}, {{{0,8}},87}, {{{0,8}},23}, {{{192,8}},0},
3659     {{{83,7}},51}, {{{0,8}},119}, {{{0,8}},55}, {{{0,9}},206},
3660     {{{81,7}},15}, {{{0,8}},103}, {{{0,8}},39}, {{{0,9}},174},
3661     {{{0,8}},7}, {{{0,8}},135}, {{{0,8}},71}, {{{0,9}},238},
3662     {{{80,7}},9}, {{{0,8}},95}, {{{0,8}},31}, {{{0,9}},158},
3663     {{{84,7}},99}, {{{0,8}},127}, {{{0,8}},63}, {{{0,9}},222},
3664     {{{82,7}},27}, {{{0,8}},111}, {{{0,8}},47}, {{{0,9}},190},
3665     {{{0,8}},15}, {{{0,8}},143}, {{{0,8}},79}, {{{0,9}},254},
3666     {{{96,7}},256}, {{{0,8}},80}, {{{0,8}},16}, {{{84,8}},115},
3667     {{{82,7}},31}, {{{0,8}},112}, {{{0,8}},48}, {{{0,9}},193},
3668     {{{80,7}},10}, {{{0,8}},96}, {{{0,8}},32}, {{{0,9}},161},
3669     {{{0,8}},0}, {{{0,8}},128}, {{{0,8}},64}, {{{0,9}},225},
3670     {{{80,7}},6}, {{{0,8}},88}, {{{0,8}},24}, {{{0,9}},145},
3671     {{{83,7}},59}, {{{0,8}},120}, {{{0,8}},56}, {{{0,9}},209},
3672     {{{81,7}},17}, {{{0,8}},104}, {{{0,8}},40}, {{{0,9}},177},
3673     {{{0,8}},8}, {{{0,8}},136}, {{{0,8}},72}, {{{0,9}},241},
3674     {{{80,7}},4}, {{{0,8}},84}, {{{0,8}},20}, {{{85,8}},227},
3675     {{{83,7}},43}, {{{0,8}},116}, {{{0,8}},52}, {{{0,9}},201},
3676     {{{81,7}},13}, {{{0,8}},100}, {{{0,8}},36}, {{{0,9}},169},
3677     {{{0,8}},4}, {{{0,8}},132}, {{{0,8}},68}, {{{0,9}},233},
3678     {{{80,7}},8}, {{{0,8}},92}, {{{0,8}},28}, {{{0,9}},153},
3679     {{{84,7}},83}, {{{0,8}},124}, {{{0,8}},60}, {{{0,9}},217},
3680     {{{82,7}},23}, {{{0,8}},108}, {{{0,8}},44}, {{{0,9}},185},
3681     {{{0,8}},12}, {{{0,8}},140}, {{{0,8}},76}, {{{0,9}},249},
3682     {{{80,7}},3}, {{{0,8}},82}, {{{0,8}},18}, {{{85,8}},163},
3683     {{{83,7}},35}, {{{0,8}},114}, {{{0,8}},50}, {{{0,9}},197},
3684     {{{81,7}},11}, {{{0,8}},98}, {{{0,8}},34}, {{{0,9}},165},
3685     {{{0,8}},2}, {{{0,8}},130}, {{{0,8}},66}, {{{0,9}},229},
3686     {{{80,7}},7}, {{{0,8}},90}, {{{0,8}},26}, {{{0,9}},149},
3687     {{{84,7}},67}, {{{0,8}},122}, {{{0,8}},58}, {{{0,9}},213},
3688     {{{82,7}},19}, {{{0,8}},106}, {{{0,8}},42}, {{{0,9}},181},
3689     {{{0,8}},10}, {{{0,8}},138}, {{{0,8}},74}, {{{0,9}},245},
3690     {{{80,7}},5}, {{{0,8}},86}, {{{0,8}},22}, {{{192,8}},0},
3691     {{{83,7}},51}, {{{0,8}},118}, {{{0,8}},54}, {{{0,9}},205},
3692     {{{81,7}},15}, {{{0,8}},102}, {{{0,8}},38}, {{{0,9}},173},
3693     {{{0,8}},6}, {{{0,8}},134}, {{{0,8}},70}, {{{0,9}},237},
3694     {{{80,7}},9}, {{{0,8}},94}, {{{0,8}},30}, {{{0,9}},157},
3695     {{{84,7}},99}, {{{0,8}},126}, {{{0,8}},62}, {{{0,9}},221},
3696     {{{82,7}},27}, {{{0,8}},110}, {{{0,8}},46}, {{{0,9}},189},
3697     {{{0,8}},14}, {{{0,8}},142}, {{{0,8}},78}, {{{0,9}},253},
3698     {{{96,7}},256}, {{{0,8}},81}, {{{0,8}},17}, {{{85,8}},131},
3699     {{{82,7}},31}, {{{0,8}},113}, {{{0,8}},49}, {{{0,9}},195},
3700     {{{80,7}},10}, {{{0,8}},97}, {{{0,8}},33}, {{{0,9}},163},
3701     {{{0,8}},1}, {{{0,8}},129}, {{{0,8}},65}, {{{0,9}},227},
3702     {{{80,7}},6}, {{{0,8}},89}, {{{0,8}},25}, {{{0,9}},147},
3703     {{{83,7}},59}, {{{0,8}},121}, {{{0,8}},57}, {{{0,9}},211},
3704     {{{81,7}},17}, {{{0,8}},105}, {{{0,8}},41}, {{{0,9}},179},
3705     {{{0,8}},9}, {{{0,8}},137}, {{{0,8}},73}, {{{0,9}},243},
3706     {{{80,7}},4}, {{{0,8}},85}, {{{0,8}},21}, {{{80,8}},258},
3707     {{{83,7}},43}, {{{0,8}},117}, {{{0,8}},53}, {{{0,9}},203},
3708     {{{81,7}},13}, {{{0,8}},101}, {{{0,8}},37}, {{{0,9}},171},
3709     {{{0,8}},5}, {{{0,8}},133}, {{{0,8}},69}, {{{0,9}},235},
3710     {{{80,7}},8}, {{{0,8}},93}, {{{0,8}},29}, {{{0,9}},155},
3711     {{{84,7}},83}, {{{0,8}},125}, {{{0,8}},61}, {{{0,9}},219},
3712     {{{82,7}},23}, {{{0,8}},109}, {{{0,8}},45}, {{{0,9}},187},
3713     {{{0,8}},13}, {{{0,8}},141}, {{{0,8}},77}, {{{0,9}},251},
3714     {{{80,7}},3}, {{{0,8}},83}, {{{0,8}},19}, {{{85,8}},195},
3715     {{{83,7}},35}, {{{0,8}},115}, {{{0,8}},51}, {{{0,9}},199},
3716     {{{81,7}},11}, {{{0,8}},99}, {{{0,8}},35}, {{{0,9}},167},
3717     {{{0,8}},3}, {{{0,8}},131}, {{{0,8}},67}, {{{0,9}},231},
3718     {{{80,7}},7}, {{{0,8}},91}, {{{0,8}},27}, {{{0,9}},151},
3719     {{{84,7}},67}, {{{0,8}},123}, {{{0,8}},59}, {{{0,9}},215},
3720     {{{82,7}},19}, {{{0,8}},107}, {{{0,8}},43}, {{{0,9}},183},
3721     {{{0,8}},11}, {{{0,8}},139}, {{{0,8}},75}, {{{0,9}},247},
3722     {{{80,7}},5}, {{{0,8}},87}, {{{0,8}},23}, {{{192,8}},0},
3723     {{{83,7}},51}, {{{0,8}},119}, {{{0,8}},55}, {{{0,9}},207},
3724     {{{81,7}},15}, {{{0,8}},103}, {{{0,8}},39}, {{{0,9}},175},
3725     {{{0,8}},7}, {{{0,8}},135}, {{{0,8}},71}, {{{0,9}},239},
3726     {{{80,7}},9}, {{{0,8}},95}, {{{0,8}},31}, {{{0,9}},159},
3727     {{{84,7}},99}, {{{0,8}},127}, {{{0,8}},63}, {{{0,9}},223},
3728     {{{82,7}},27}, {{{0,8}},111}, {{{0,8}},47}, {{{0,9}},191},
3729     {{{0,8}},15}, {{{0,8}},143}, {{{0,8}},79}, {{{0,9}},255}
3730   };
3731 static inflate_huft fixed_td[] = {
3732     {{{80,5}},1}, {{{87,5}},257}, {{{83,5}},17}, {{{91,5}},4097},
3733     {{{81,5}},5}, {{{89,5}},1025}, {{{85,5}},65}, {{{93,5}},16385},
3734     {{{80,5}},3}, {{{88,5}},513}, {{{84,5}},33}, {{{92,5}},8193},
3735     {{{82,5}},9}, {{{90,5}},2049}, {{{86,5}},129}, {{{192,5}},24577},
3736     {{{80,5}},2}, {{{87,5}},385}, {{{83,5}},25}, {{{91,5}},6145},
3737     {{{81,5}},7}, {{{89,5}},1537}, {{{85,5}},97}, {{{93,5}},24577},
3738     {{{80,5}},4}, {{{88,5}},769}, {{{84,5}},49}, {{{92,5}},12289},
3739     {{{82,5}},13}, {{{90,5}},3073}, {{{86,5}},193}, {{{192,5}},24577}
3740   };
3741
3742 #ifndef __APPLE__
3743 int inflate_trees_fixed(uInt *bl, uInt *bd, inflate_huft * *tl, inflate_huft * *td, z_streamp z)
3744 //uInt *bl;               /* literal desired/actual bit depth */
3745 //uInt *bd;               /* distance desired/actual bit depth */
3746 //inflate_huft * *tl;  /* literal/length tree result */
3747 //inflate_huft * *td;  /* distance tree result */
3748 //z_streamp z;             /* for memory allocation */
3749 {
3750   *bl = fixed_bl;
3751   *bd = fixed_bd;
3752   *tl = fixed_tl;
3753   *td = fixed_td;
3754   return Z_OK;
3755 }
3756 #endif
3757
3758 /* simplify the use of the inflate_huft type with some defines */
3759 #define exop word.what.Exop
3760 #define bits word.what.Bits
3761
3762 /* macros for bit input with no checking and for returning unused bytes */
3763 #define GRABBITS(j) {while(k<(j)){b|=((uLong)NEXTBYTE)<<k;k+=8;}}
3764 #define UNGRAB {c=z->avail_in-n;c=(k>>3)<c?k>>3:c;n+=c;p-=c;k-=c<<3;}
3765
3766 /* Called with number of bytes left to write in window at least 258
3767    (the maximum string length) and number of input bytes available
3768    at least ten.  The ten bytes are six bytes for the longest length/
3769    distance pair plus four bytes for overloading the bit buffer. */
3770
3771 #ifndef __APPLE__
3772 int inflate_fast(uInt bl, uInt bd, inflate_huft *tl, inflate_huft *td, inflate_blocks_statef *s, z_streamp z)
3773 {
3774   inflate_huft *t;      /* temporary pointer */
3775   uInt e;               /* extra bits or operation */
3776   uLong b;              /* bit buffer */
3777   uInt k;               /* bits in bit buffer */
3778   Byte *p;             /* input data pointer */
3779   uInt n;               /* bytes available there */
3780   Byte *q;             /* output window write pointer */
3781   uInt m;               /* bytes to end of window or read pointer */
3782   uInt ml;              /* mask for literal/length tree */
3783   uInt md;              /* mask for distance tree */
3784   uInt c;               /* bytes to copy */
3785   uInt d;               /* distance back to copy from */
3786   Byte *r;             /* copy source pointer */
3787
3788   /* load input, output, bit values */
3789   LOAD
3790
3791   /* initialize masks */
3792   ml = inflate_mask[bl];
3793   md = inflate_mask[bd];
3794
3795   /* do until not enough input or output space for fast loop */
3796   do {                          /* assume called with m >= 258 && n >= 10 */
3797     /* get literal/length code */
3798     GRABBITS(20)                /* max bits for literal/length code */
3799     if ((e = (t = tl + ((uInt)b & ml))->exop) == 0)
3800     {
3801       DUMPBITS(t->bits)
3802       Tracevv((t->base >= 0x20 && t->base < 0x7f ?
3803                 "inflate:         * literal '%c'\n" :
3804                 "inflate:         * literal 0x%02x\n", t->base));
3805       *q++ = (Byte)t->base;
3806       m--;
3807       continue;
3808     }
3809     do {
3810       DUMPBITS(t->bits)
3811       if (e & 16)
3812       {
3813         /* get extra bits for length */
3814         e &= 15;
3815         c = t->base + ((uInt)b & inflate_mask[e]);
3816         DUMPBITS(e)
3817         Tracevv(("inflate:         * length %u\n", c));
3818
3819         /* decode distance base of block to copy */
3820         GRABBITS(15);           /* max bits for distance code */
3821         e = (t = td + ((uInt)b & md))->exop;
3822         do {
3823           DUMPBITS(t->bits)
3824           if (e & 16)
3825           {
3826             /* get extra bits to add to distance base */
3827             e &= 15;
3828             GRABBITS(e)         /* get extra bits (up to 13) */
3829             d = t->base + ((uInt)b & inflate_mask[e]);
3830             DUMPBITS(e)
3831             Tracevv(("inflate:         * distance %u\n", d));
3832
3833             /* do the copy */
3834             m -= c;
3835             if ((uInt)(q - s->window) >= d)     /* offset before dest */
3836             {                                   /*  just copy */
3837               r = q - d;
3838               *q++ = *r++;  c--;        /* minimum count is three, */
3839               *q++ = *r++;  c--;        /*  so unroll loop a little */
3840             }
3841             else                        /* else offset after destination */
3842             {
3843               e = d - (uInt)(q - s->window); /* bytes from offset to end */
3844               r = s->end - e;           /* pointer to offset */
3845               if (c > e)                /* if source crosses, */
3846               {
3847                 c -= e;                 /* copy to end of window */
3848                 do {
3849                   *q++ = *r++;
3850                 } while (--e);
3851                 r = s->window;          /* copy rest from start of window */
3852               }
3853             }
3854             do {                        /* copy all or what's left */
3855               *q++ = *r++;
3856             } while (--c);
3857             break;
3858           }
3859           else if ((e & 64) == 0)
3860           {
3861             t += t->base;
3862             e = (t += ((uInt)b & inflate_mask[e]))->exop;
3863           }
3864           else
3865           {
3866             z->msg = (char*)"invalid distance code";
3867             UNGRAB
3868             UPDATE
3869             return Z_DATA_ERROR;
3870           }
3871         } while (1);
3872         break;
3873       }
3874       if ((e & 64) == 0)
3875       {
3876         t += t->base;
3877         if ((e = (t += ((uInt)b & inflate_mask[e]))->exop) == 0)
3878         {
3879           DUMPBITS(t->bits)
3880           Tracevv((t->base >= 0x20 && t->base < 0x7f ?
3881                     "inflate:         * literal '%c'\n" :
3882                     "inflate:         * literal 0x%02x\n", t->base));
3883           *q++ = (Byte)t->base;
3884           m--;
3885           break;
3886         }
3887       }
3888       else if (e & 32)
3889       {
3890         Tracevv(("inflate:         * end of block\n"));
3891         UNGRAB
3892         UPDATE
3893         return Z_STREAM_END;
3894       }
3895       else
3896       {
3897         z->msg = (char*)"invalid literal/length code";
3898         UNGRAB
3899         UPDATE
3900         return Z_DATA_ERROR;
3901       }
3902     } while (1);
3903   } while (m >= 258 && n >= 10);
3904
3905   /* not enough input or output--restore pointers and return */
3906   UNGRAB
3907   UPDATE
3908   return Z_OK;
3909 }
3910 #endif
3911
3912 /* infcodes.c -- process literals and length/distance pairs
3913  * Copyright (C) 1995-1998 Mark Adler
3914  * For conditions of distribution and use, see copyright notice in zlib.h 
3915  */
3916
3917 /* simplify the use of the inflate_huft type with some defines */
3918 #define exop word.what.Exop
3919 #define bits word.what.Bits
3920
3921 typedef enum {        /* waiting for "i:"=input, "o:"=output, "x:"=nothing */
3922       START,    /* x: set up for LEN */
3923       LEN,      /* i: get length/literal/eob next */
3924       LENEXT,   /* i: getting length extra (have base) */
3925       DIST,     /* i: get distance next */
3926       DISTEXT,  /* i: getting distance extra */
3927       COPY,     /* o: copying bytes in window, waiting for space */
3928       LIT,      /* o: got literal, waiting for output space */
3929       WASH,     /* o: got eob, possibly still output waiting */
3930       END,      /* x: got eob and all data flushed */
3931       BADCODE}  /* x: got error */
3932 inflate_codes_mode;
3933
3934 /* inflate codes private state */
3935 struct inflate_codes_state {
3936
3937   /* mode */
3938   inflate_codes_mode mode;      /* current inflate_codes mode */
3939
3940   /* mode dependent information */
3941   uInt len;
3942   union {
3943     struct {
3944       inflate_huft *tree;       /* pointer into tree */
3945       uInt need;                /* bits needed */
3946     } code;             /* if LEN or DIST, where in tree */
3947     uInt lit;           /* if LIT, literal */
3948     struct {
3949       uInt get;                 /* bits to get for extra */
3950       uInt dist;                /* distance back to copy from */
3951     } copy;             /* if EXT or COPY, where and how much */
3952   } sub;                /* submode */
3953
3954   /* mode independent information */
3955   Byte lbits;           /* ltree bits decoded per branch */
3956   Byte dbits;           /* dtree bits decoder per branch */
3957   inflate_huft *ltree;          /* literal/length/eob tree */
3958   inflate_huft *dtree;          /* distance tree */
3959
3960 };
3961
3962 #ifndef __APPLE__
3963 inflate_codes_statef *inflate_codes_new(uInt bl, uInt bd, inflate_huft *tl, inflate_huft *td, z_streamp z)
3964 {
3965   inflate_codes_statef *c;
3966
3967   if ((c = (inflate_codes_statef *)
3968        ZALLOC(z,1,sizeof(struct inflate_codes_state))) != Z_NULL)
3969   {
3970     c->mode = START;
3971     c->lbits = (Byte)bl;
3972     c->dbits = (Byte)bd;
3973     c->ltree = tl;
3974     c->dtree = td;
3975     Tracev(("inflate:       codes new\n"));
3976   }
3977   return c;
3978 }
3979 #endif
3980
3981 #ifndef __APPLE__
3982 int inflate_codes(inflate_blocks_statef *s, z_streamp z, int r)
3983 {
3984   uInt j;               /* temporary storage */
3985   inflate_huft *t;      /* temporary pointer */
3986   uInt e;               /* extra bits or operation */
3987   uLong b;              /* bit buffer */
3988   uInt k;               /* bits in bit buffer */
3989   Byte *p;             /* input data pointer */
3990   uInt n;               /* bytes available there */
3991   Byte *q;             /* output window write pointer */
3992   uInt m;               /* bytes to end of window or read pointer */
3993   Byte *f;             /* pointer to copy strings from */
3994   inflate_codes_statef *c = s->sub.decode.codes;  /* codes state */
3995
3996   /* copy input/output information to locals (UPDATE macro restores) */
3997   LOAD
3998
3999   /* process input and output based on current state */
4000   while (1) switch (c->mode)
4001   {             /* waiting for "i:"=input, "o:"=output, "x:"=nothing */
4002     case START:         /* x: set up for LEN */
4003 #ifndef SLOW
4004       if (m >= 258 && n >= 10)
4005       {
4006         UPDATE
4007         r = inflate_fast(c->lbits, c->dbits, c->ltree, c->dtree, s, z);
4008         LOAD
4009         if (r != Z_OK)
4010         {
4011           c->mode = r == Z_STREAM_END ? WASH : BADCODE;
4012           break;
4013         }
4014       }
4015 #endif /* !SLOW */
4016       c->sub.code.need = c->lbits;
4017       c->sub.code.tree = c->ltree;
4018       c->mode = LEN;
4019     case LEN:           /* i: get length/literal/eob next */
4020       j = c->sub.code.need;
4021       NEEDBITS(j)
4022       t = c->sub.code.tree + ((uInt)b & inflate_mask[j]);
4023       DUMPBITS(t->bits)
4024       e = (uInt)(t->exop);
4025       if (e == 0)               /* literal */
4026       {
4027         c->sub.lit = t->base;
4028         Tracevv((t->base >= 0x20 && t->base < 0x7f ?
4029                  "inflate:         literal '%c'\n" :
4030                  "inflate:         literal 0x%02x\n", t->base));
4031         c->mode = LIT;
4032         break;
4033       }
4034       if (e & 16)               /* length */
4035       {
4036         c->sub.copy.get = e & 15;
4037         c->len = t->base;
4038         c->mode = LENEXT;
4039         break;
4040       }
4041       if ((e & 64) == 0)        /* next table */
4042       {
4043         c->sub.code.need = e;
4044         c->sub.code.tree = t + t->base;
4045         break;
4046       }
4047       if (e & 32)               /* end of block */
4048       {
4049         Tracevv(("inflate:         end of block\n"));
4050         c->mode = WASH;
4051         break;
4052       }
4053       c->mode = BADCODE;        /* invalid code */
4054       z->msg = (char*)"invalid literal/length code";
4055       r = Z_DATA_ERROR;
4056       LEAVE
4057     case LENEXT:        /* i: getting length extra (have base) */
4058       j = c->sub.copy.get;
4059       NEEDBITS(j)
4060       c->len += (uInt)b & inflate_mask[j];
4061       DUMPBITS(j)
4062       c->sub.code.need = c->dbits;
4063       c->sub.code.tree = c->dtree;
4064       Tracevv(("inflate:         length %u\n", c->len));
4065       c->mode = DIST;
4066     case DIST:          /* i: get distance next */
4067       j = c->sub.code.need;
4068       NEEDBITS(j)
4069       t = c->sub.code.tree + ((uInt)b & inflate_mask[j]);
4070       DUMPBITS(t->bits)
4071       e = (uInt)(t->exop);
4072       if (e & 16)               /* distance */
4073       {
4074         c->sub.copy.get = e & 15;
4075         c->sub.copy.dist = t->base;
4076         c->mode = DISTEXT;
4077         break;
4078       }
4079       if ((e & 64) == 0)        /* next table */
4080       {
4081         c->sub.code.need = e;
4082         c->sub.code.tree = t + t->base;
4083         break;
4084       }
4085       c->mode = BADCODE;        /* invalid code */
4086       z->msg = (char*)"invalid distance code";
4087       r = Z_DATA_ERROR;
4088       LEAVE
4089     case DISTEXT:       /* i: getting distance extra */
4090       j = c->sub.copy.get;
4091       NEEDBITS(j)
4092       c->sub.copy.dist += (uInt)b & inflate_mask[j];
4093       DUMPBITS(j)
4094       Tracevv(("inflate:         distance %u\n", c->sub.copy.dist));
4095       c->mode = COPY;
4096     case COPY:          /* o: copying bytes in window, waiting for space */
4097 #ifndef __TURBOC__ /* Turbo C bug for following expression */
4098       f = (uInt)(q - s->window) < c->sub.copy.dist ?
4099           s->end - (c->sub.copy.dist - (q - s->window)) :
4100           q - c->sub.copy.dist;
4101 #else
4102       f = q - c->sub.copy.dist;
4103       if ((uInt)(q - s->window) < c->sub.copy.dist)
4104         f = s->end - (c->sub.copy.dist - (uInt)(q - s->window));
4105 #endif
4106       while (c->len)
4107       {
4108         NEEDOUT
4109         OUTBYTE(*f++)
4110         if (f == s->end)
4111           f = s->window;
4112         c->len--;
4113       }
4114       c->mode = START;
4115       break;
4116     case LIT:           /* o: got literal, waiting for output space */
4117       NEEDOUT
4118       OUTBYTE(c->sub.lit)
4119       c->mode = START;
4120       break;
4121     case WASH:          /* o: got eob, possibly more output */
4122       if (k > 7)        /* return unused byte, if any */
4123       {
4124         Assert(k < 16, "inflate_codes grabbed too many bytes")
4125         k -= 8;
4126         n++;
4127         p--;            /* can always return one */
4128       }
4129       FLUSH
4130       if (s->read != s->write)
4131         LEAVE
4132       c->mode = END;
4133     case END:
4134       r = Z_STREAM_END;
4135       LEAVE
4136     case BADCODE:       /* x: got error */
4137       r = Z_DATA_ERROR;
4138       LEAVE
4139     default:
4140       r = Z_STREAM_ERROR;
4141       LEAVE
4142   }
4143 #ifdef NEED_DUMMY_RETURN
4144   return Z_STREAM_ERROR;  /* Some dumb compilers complain without this */
4145 #endif
4146 }
4147 #endif
4148
4149 #ifndef __APPLE__
4150 void inflate_codes_free(inflate_codes_statef *c, z_streamp z)
4151 {
4152   ZFREE(z, c);
4153   Tracev(("inflate:       codes free\n"));
4154 }
4155 #endif
4156
4157 /* adler32.c -- compute the Adler-32 checksum of a data stream
4158  * Copyright (C) 1995-1998 Mark Adler
4159  * For conditions of distribution and use, see copyright notice in zlib.h 
4160  */
4161
4162 #define BASE 65521L /* largest prime smaller than 65536 */
4163 #define NMAX 5552
4164 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
4165
4166 #undef DO1
4167 #undef DO2
4168 #undef DO4
4169 #undef DO8
4170
4171 #define DO1(buf,i)  {s1 += buf[i]; s2 += s1;}
4172 #define DO2(buf,i)  DO1(buf,i); DO1(buf,i+1);
4173 #define DO4(buf,i)  DO2(buf,i); DO2(buf,i+2);
4174 #define DO8(buf,i)  DO4(buf,i); DO4(buf,i+4);
4175 #define DO16(buf)   DO8(buf,0); DO8(buf,8);
4176
4177 /* ========================================================================= */
4178 #ifndef __APPLE__
4179 uLong adler32(uLong adler, const Byte *buf, uInt len)
4180 {
4181     unsigned long s1 = adler & 0xffff;
4182     unsigned long s2 = (adler >> 16) & 0xffff;
4183     int k;
4184
4185     if (buf == Z_NULL) return 1L;
4186
4187     while (len > 0) {
4188         k = len < NMAX ? len : NMAX;
4189         len -= k;
4190         while (k >= 16) {
4191             DO16(buf);
4192             buf += 16;
4193             k -= 16;
4194         }
4195         if (k != 0) do {
4196             s1 += *buf++;
4197             s2 += s1;
4198         } while (--k);
4199         s1 %= BASE;
4200         s2 %= BASE;
4201     }
4202     return (s2 << 16) | s1;
4203 }
4204 #endif
4205
4206
4207 /* infblock.h -- header to use infblock.c
4208  * Copyright (C) 1995-1998 Mark Adler
4209  * For conditions of distribution and use, see copyright notice in zlib.h 
4210  */
4211
4212 /* WARNING: this file should *not* be used by applications. It is
4213    part of the implementation of the compression library and is
4214    subject to change. Applications should only use zlib.h.
4215  */
4216
4217 extern inflate_blocks_statef * inflate_blocks_new OF((
4218     z_streamp z,
4219     check_func c,               /* check function */
4220     uInt w));                   /* window size */
4221
4222 extern int inflate_blocks OF((
4223     inflate_blocks_statef *,
4224     z_streamp ,
4225     int));                      /* initial return code */
4226
4227 extern void inflate_blocks_reset OF((
4228     inflate_blocks_statef *,
4229     z_streamp ,
4230     uLong *));                  /* check value on output */
4231
4232 extern int inflate_blocks_free OF((
4233     inflate_blocks_statef *,
4234     z_streamp));
4235
4236 extern void inflate_set_dictionary OF((
4237     inflate_blocks_statef *s,
4238     const Byte *d,  /* dictionary */
4239     uInt  n));       /* dictionary length */
4240
4241 extern int inflate_blocks_sync_point OF((
4242     inflate_blocks_statef *s));
4243
4244 typedef enum {
4245       imMETHOD,   /* waiting for method byte */
4246       imFLAG,     /* waiting for flag byte */
4247       imDICT4,    /* four dictionary check bytes to go */
4248       imDICT3,    /* three dictionary check bytes to go */
4249       imDICT2,    /* two dictionary check bytes to go */
4250       imDICT1,    /* one dictionary check byte to go */
4251       imDICT0,    /* waiting for inflateSetDictionary */
4252       imBLOCKS,   /* decompressing blocks */
4253       imCHECK4,   /* four check bytes to go */
4254       imCHECK3,   /* three check bytes to go */
4255       imCHECK2,   /* two check bytes to go */
4256       imCHECK1,   /* one check byte to go */
4257       imDONE,     /* finished check, done */
4258       imBAD}      /* got an error--stay here */
4259 inflate_mode;
4260
4261 /* inflate private state */
4262 struct internal_state {
4263
4264   /* mode */
4265   inflate_mode  mode;   /* current inflate mode */
4266
4267   /* mode dependent information */
4268   union {
4269     uInt method;        /* if FLAGS, method byte */
4270     struct {
4271       uLong was;                /* computed check value */
4272       uLong need;               /* stream check value */
4273     } check;            /* if CHECK, check values to compare */
4274     uInt marker;        /* if BAD, inflateSync's marker bytes count */
4275   } sub;        /* submode */
4276
4277   /* mode independent information */
4278   int  nowrap;          /* flag for no wrapper */
4279   uInt wbits;           /* log2(window size)  (8..15, defaults to 15) */
4280   inflate_blocks_statef 
4281     *blocks;            /* current inflate_blocks state */
4282
4283 };
4284
4285
4286 #ifndef __APPLE__
4287 int inflateReset(z_streamp z)
4288 {
4289   if (z == Z_NULL || z->state == Z_NULL)
4290     return Z_STREAM_ERROR;
4291   z->total_in = z->total_out = 0;
4292   z->msg = Z_NULL;
4293   z->state->mode = z->state->nowrap ? imBLOCKS : imMETHOD;
4294   inflate_blocks_reset(z->state->blocks, z, Z_NULL);
4295   Tracev(("inflate: reset\n"));
4296   return Z_OK;
4297 }
4298 #endif
4299
4300 #ifndef __APPLE__
4301 int inflateEnd(z_streamp z)
4302 {
4303   if (z == Z_NULL || z->state == Z_NULL || z->zfree == Z_NULL)
4304     return Z_STREAM_ERROR;
4305   if (z->state->blocks != Z_NULL)
4306     inflate_blocks_free(z->state->blocks, z);
4307   ZFREE(z, z->state);
4308   z->state = Z_NULL;
4309   Tracev(("inflate: end\n"));
4310   return Z_OK;
4311 }
4312 #endif
4313
4314 #ifndef __APPLE__
4315 int inflateInit2_(z_streamp z, int w, const char *version, int stream_size)
4316 {
4317   if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
4318       stream_size != sizeof(z_stream))
4319       return Z_VERSION_ERROR;
4320
4321   /* initialize state */
4322   if (z == Z_NULL)
4323     return Z_STREAM_ERROR;
4324   z->msg = Z_NULL;
4325   if (z->zalloc == Z_NULL)
4326   {
4327     z->zalloc = (void *(*)(void *, unsigned, unsigned))zcalloc;
4328     z->opaque = (voidp)0;
4329   }
4330   if (z->zfree == Z_NULL) z->zfree = (void (*)(void *, void *))zcfree;
4331   if ((z->state = (struct internal_state *)
4332        ZALLOC(z,1,sizeof(struct internal_state))) == Z_NULL)
4333     return Z_MEM_ERROR;
4334   z->state->blocks = Z_NULL;
4335
4336   /* handle undocumented nowrap option (no zlib header or check) */
4337   z->state->nowrap = 0;
4338   if (w < 0)
4339   {
4340     w = - w;
4341     z->state->nowrap = 1;
4342   }
4343
4344   /* set window size */
4345   if (w < 8 || w > 15)
4346   {
4347     inflateEnd(z);
4348     return Z_STREAM_ERROR;
4349   }
4350   z->state->wbits = (uInt)w;
4351
4352   /* create inflate_blocks state */
4353   if ((z->state->blocks =
4354       inflate_blocks_new(z, z->state->nowrap ? Z_NULL : adler32, (uInt)1 << w))
4355       == Z_NULL)
4356   {
4357     inflateEnd(z);
4358     return Z_MEM_ERROR;
4359   }
4360   Tracev(("inflate: allocated\n"));
4361
4362   /* reset state */
4363   inflateReset(z);
4364   return Z_OK;
4365 }
4366 #endif
4367
4368 #ifndef __APPLE__
4369 int inflateInit_(z_streamp z, const char *version, int stream_size)
4370 {
4371   return inflateInit2_(z, DEF_WBITS, version, stream_size);
4372 }
4373 #endif
4374
4375 #define iNEEDBYTE {if(z->avail_in==0)return r;r=f;}
4376 #define iNEXTBYTE (z->avail_in--,z->total_in++,*z->next_in++)
4377
4378 #ifndef __APPLE__
4379 int inflate(z_streamp z, int f)
4380 {
4381   int r;
4382   uInt b;
4383
4384   if (z == Z_NULL || z->state == Z_NULL || z->next_in == Z_NULL)
4385     return Z_STREAM_ERROR;
4386   f = f == Z_FINISH ? Z_BUF_ERROR : Z_OK;
4387   r = Z_BUF_ERROR;
4388   while (1) switch (z->state->mode)
4389   {
4390     case imMETHOD:
4391       iNEEDBYTE
4392       if (((z->state->sub.method = iNEXTBYTE) & 0xf) != Z_DEFLATED)
4393       {
4394         z->state->mode = imBAD;
4395         z->msg = (char*)"unknown compression method";
4396         z->state->sub.marker = 5;       /* can't try inflateSync */
4397         break;
4398       }
4399       if ((z->state->sub.method >> 4) + 8 > z->state->wbits)
4400       {
4401         z->state->mode = imBAD;
4402         z->msg = (char*)"invalid window size";
4403         z->state->sub.marker = 5;       /* can't try inflateSync */
4404         break;
4405       }
4406       z->state->mode = imFLAG;
4407     case imFLAG:
4408       iNEEDBYTE
4409       b = iNEXTBYTE;
4410       if (((z->state->sub.method << 8) + b) % 31)
4411       {
4412         z->state->mode = imBAD;
4413         z->msg = (char*)"incorrect header check";
4414         z->state->sub.marker = 5;       /* can't try inflateSync */
4415         break;
4416       }
4417       Tracev(("inflate: zlib header ok\n"));
4418       if (!(b & PRESET_DICT))
4419       {
4420         z->state->mode = imBLOCKS;
4421         break;
4422       }
4423       z->state->mode = imDICT4;
4424     case imDICT4:
4425       iNEEDBYTE
4426       z->state->sub.check.need = (uLong)iNEXTBYTE << 24;
4427       z->state->mode = imDICT3;
4428     case imDICT3:
4429       iNEEDBYTE
4430       z->state->sub.check.need += (uLong)iNEXTBYTE << 16;
4431       z->state->mode = imDICT2;
4432     case imDICT2:
4433       iNEEDBYTE
4434       z->state->sub.check.need += (uLong)iNEXTBYTE << 8;
4435       z->state->mode = imDICT1;
4436     case imDICT1:
4437       iNEEDBYTE
4438       z->state->sub.check.need += (uLong)iNEXTBYTE;
4439       z->adler = z->state->sub.check.need;
4440       z->state->mode = imDICT0;
4441       return Z_NEED_DICT;
4442     case imDICT0:
4443       z->state->mode = imBAD;
4444       z->msg = (char*)"need dictionary";
4445       z->state->sub.marker = 0;       /* can try inflateSync */
4446       return Z_STREAM_ERROR;
4447     case imBLOCKS:
4448       r = inflate_blocks(z->state->blocks, z, r);
4449       if (r == Z_DATA_ERROR)
4450       {
4451         z->state->mode = imBAD;
4452         z->state->sub.marker = 0;       /* can try inflateSync */
4453         break;
4454       }
4455       if (r == Z_OK)
4456         r = f;
4457       if (r != Z_STREAM_END)
4458         return r;
4459       r = f;
4460       inflate_blocks_reset(z->state->blocks, z, &z->state->sub.check.was);
4461       if (z->state->nowrap)
4462       {
4463         z->state->mode = imDONE;
4464         break;
4465       }
4466       z->state->mode = imCHECK4;
4467     case imCHECK4:
4468       iNEEDBYTE
4469       z->state->sub.check.need = (uLong)iNEXTBYTE << 24;
4470       z->state->mode = imCHECK3;
4471     case imCHECK3:
4472       iNEEDBYTE
4473       z->state->sub.check.need += (uLong)iNEXTBYTE << 16;
4474       z->state->mode = imCHECK2;
4475     case imCHECK2:
4476       iNEEDBYTE
4477       z->state->sub.check.need += (uLong)iNEXTBYTE << 8;
4478       z->state->mode = imCHECK1;
4479     case imCHECK1:
4480       iNEEDBYTE
4481       z->state->sub.check.need += (uLong)iNEXTBYTE;
4482
4483       if (z->state->sub.check.was != z->state->sub.check.need)
4484       {
4485         z->state->mode = imBAD;
4486         z->msg = (char*)"incorrect data check";
4487         z->state->sub.marker = 5;       /* can't try inflateSync */
4488         break;
4489       }
4490       Tracev(("inflate: zlib check ok\n"));
4491       z->state->mode = imDONE;
4492     case imDONE:
4493       return Z_STREAM_END;
4494     case imBAD:
4495       return Z_DATA_ERROR;
4496     default:
4497       return Z_STREAM_ERROR;
4498   }
4499 #ifdef NEED_DUMMY_RETURN
4500   return Z_STREAM_ERROR;  /* Some dumb compilers complain without this */
4501 #endif
4502 }
4503 #endif
4504
4505 #ifndef __APPLE__
4506 int inflateSetDictionary(z_streamp z, const Byte *dictionary, uInt dictLength)
4507 {
4508   uInt length = dictLength;
4509
4510   if (z == Z_NULL || z->state == Z_NULL || z->state->mode != imDICT0)
4511     return Z_STREAM_ERROR;
4512
4513   if (adler32(1L, dictionary, dictLength) != z->adler) return Z_DATA_ERROR;
4514   z->adler = 1L;
4515
4516   if (length >= ((uInt)1<<z->state->wbits))
4517   {
4518     length = (1<<z->state->wbits)-1;
4519     dictionary += dictLength - length;
4520   }
4521   inflate_set_dictionary(z->state->blocks, dictionary, length);
4522   z->state->mode = imBLOCKS;
4523   return Z_OK;
4524 }
4525 #endif
4526
4527 #ifndef __APPLE__
4528 int inflateSync(z_streamp z)
4529 {
4530   uInt n;       /* number of bytes to look at */
4531   Byte *p;     /* pointer to bytes */
4532   uInt m;       /* number of marker bytes found in a row */
4533   uLong r, w;   /* temporaries to save total_in and total_out */
4534
4535   /* set up */
4536   if (z == Z_NULL || z->state == Z_NULL)
4537     return Z_STREAM_ERROR;
4538   if (z->state->mode != imBAD)
4539   {
4540     z->state->mode = imBAD;
4541     z->state->sub.marker = 0;
4542   }
4543   if ((n = z->avail_in) == 0)
4544     return Z_BUF_ERROR;
4545   p = z->next_in;
4546   m = z->state->sub.marker;
4547
4548   /* search */
4549   while (n && m < 4)
4550   {
4551     static const Byte mark[4] = {0, 0, 0xff, 0xff};
4552     if (*p == mark[m])
4553       m++;
4554     else if (*p)
4555       m = 0;
4556     else
4557       m = 4 - m;
4558     p++, n--;
4559   }
4560
4561   /* restore */
4562   z->total_in += p - z->next_in;
4563   z->next_in = p;
4564   z->avail_in = n;
4565   z->state->sub.marker = m;
4566
4567   /* return no joy or set up to restart on a new block */
4568   if (m != 4)
4569     return Z_DATA_ERROR;
4570   r = z->total_in;  w = z->total_out;
4571   inflateReset(z);
4572   z->total_in = r;  z->total_out = w;
4573   z->state->mode = imBLOCKS;
4574   return Z_OK;
4575 }
4576 #endif
4577
4578 /* Returns true if inflate is currently at the end of a block generated
4579  * by Z_SYNC_FLUSH or Z_FULL_FLUSH. This function is used by one PPP
4580  * implementation to provide an additional safety check. PPP uses Z_SYNC_FLUSH
4581  * but removes the length bytes of the resulting empty stored block. When
4582  * decompressing, PPP checks that at the end of input packet, inflate is
4583  * waiting for these length bytes.
4584  */
4585 #ifndef __APPLE__
4586 int inflateSyncPoint(z_streamp z)
4587 {
4588   if (z == Z_NULL || z->state == Z_NULL || z->state->blocks == Z_NULL)
4589     return Z_STREAM_ERROR;
4590   return inflate_blocks_sync_point(z->state->blocks);
4591 }
4592 #endif
4593
4594 #ifndef __APPLE__
4595 voidp zcalloc (voidp opaque, unsigned items, unsigned size)
4596 {
4597     if (opaque) items += size - size; /* make compiler happy */
4598     return (voidp)safe_malloc(items*size);
4599 }
4600
4601 void  zcfree (voidp opaque, voidp ptr)
4602 {
4603     free(ptr);
4604     if (opaque) return; /* make compiler happy */
4605 }
4606 #endif