Imported Upstream version 2.7
[ossec-hids.git] / src / external / zlib-1.2.3 / deflate.c
1 /* deflate.c -- compress data using the deflation algorithm
2  * Copyright (C) 1995-2005 Jean-loup Gailly.
3  * For conditions of distribution and use, see copyright notice in zlib.h
4  */
5
6 /*
7  *  ALGORITHM
8  *
9  *      The "deflation" process depends on being able to identify portions
10  *      of the input text which are identical to earlier input (within a
11  *      sliding window trailing behind the input currently being processed).
12  *
13  *      The most straightforward technique turns out to be the fastest for
14  *      most input files: try all possible matches and select the longest.
15  *      The key feature of this algorithm is that insertions into the string
16  *      dictionary are very simple and thus fast, and deletions are avoided
17  *      completely. Insertions are performed at each input character, whereas
18  *      string matches are performed only when the previous match ends. So it
19  *      is preferable to spend more time in matches to allow very fast string
20  *      insertions and avoid deletions. The matching algorithm for small
21  *      strings is inspired from that of Rabin & Karp. A brute force approach
22  *      is used to find longer strings when a small match has been found.
23  *      A similar algorithm is used in comic (by Jan-Mark Wams) and freeze
24  *      (by Leonid Broukhis).
25  *         A previous version of this file used a more sophisticated algorithm
26  *      (by Fiala and Greene) which is guaranteed to run in linear amortized
27  *      time, but has a larger average cost, uses more memory and is patented.
28  *      However the F&G algorithm may be faster for some highly redundant
29  *      files if the parameter max_chain_length (described below) is too large.
30  *
31  *  ACKNOWLEDGEMENTS
32  *
33  *      The idea of lazy evaluation of matches is due to Jan-Mark Wams, and
34  *      I found it in 'freeze' written by Leonid Broukhis.
35  *      Thanks to many people for bug reports and testing.
36  *
37  *  REFERENCES
38  *
39  *      Deutsch, L.P.,"DEFLATE Compressed Data Format Specification".
40  *      Available in http://www.ietf.org/rfc/rfc1951.txt
41  *
42  *      A description of the Rabin and Karp algorithm is given in the book
43  *         "Algorithms" by R. Sedgewick, Addison-Wesley, p252.
44  *
45  *      Fiala,E.R., and Greene,D.H.
46  *         Data Compression with Finite Windows, Comm.ACM, 32,4 (1989) 490-595
47  *
48  */
49
50 /* @(#) $Id: ./src/external/zlib-1.2.3/deflate.c, 2011/09/08 dcid Exp $
51  */
52
53 #include "deflate.h"
54
55 const char deflate_copyright[] =
56    " deflate 1.2.3 Copyright 1995-2005 Jean-loup Gailly ";
57 /*
58   If you use the zlib library in a product, an acknowledgment is welcome
59   in the documentation of your product. If for some reason you cannot
60   include such an acknowledgment, I would appreciate that you keep this
61   copyright string in the executable of your product.
62  */
63
64 /* ===========================================================================
65  *  Function prototypes.
66  */
67 typedef enum {
68     need_more,      /* block not completed, need more input or more output */
69     block_done,     /* block flush performed */
70     finish_started, /* finish started, need only more output at next deflate */
71     finish_done     /* finish done, accept no more input or output */
72 } block_state;
73
74 typedef block_state (*compress_func) OF((deflate_state *s, int flush));
75 /* Compression function. Returns the block state after the call. */
76
77 local void fill_window    OF((deflate_state *s));
78 local block_state deflate_stored OF((deflate_state *s, int flush));
79 local block_state deflate_fast   OF((deflate_state *s, int flush));
80 #ifndef FASTEST
81 local block_state deflate_slow   OF((deflate_state *s, int flush));
82 #endif
83 local void lm_init        OF((deflate_state *s));
84 local void putShortMSB    OF((deflate_state *s, uInt b));
85 local void flush_pending  OF((z_streamp strm));
86 local int read_buf        OF((z_streamp strm, Bytef *buf, unsigned size));
87 #ifndef FASTEST
88 #ifdef ASMV
89       void match_init OF((void)); /* asm code initialization */
90       uInt longest_match  OF((deflate_state *s, IPos cur_match));
91 #else
92 local uInt longest_match  OF((deflate_state *s, IPos cur_match));
93 #endif
94 #endif
95 local uInt longest_match_fast OF((deflate_state *s, IPos cur_match));
96
97 #ifdef DEBUG
98 local  void check_match OF((deflate_state *s, IPos start, IPos match,
99                             int length));
100 #endif
101
102 /* ===========================================================================
103  * Local data
104  */
105
106 #define NIL 0
107 /* Tail of hash chains */
108
109 #ifndef TOO_FAR
110 #  define TOO_FAR 4096
111 #endif
112 /* Matches of length 3 are discarded if their distance exceeds TOO_FAR */
113
114 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
115 /* Minimum amount of lookahead, except at the end of the input file.
116  * See deflate.c for comments about the MIN_MATCH+1.
117  */
118
119 /* Values for max_lazy_match, good_match and max_chain_length, depending on
120  * the desired pack level (0..9). The values given below have been tuned to
121  * exclude worst case performance for pathological files. Better values may be
122  * found for specific files.
123  */
124 typedef struct config_s {
125    ush good_length; /* reduce lazy search above this match length */
126    ush max_lazy;    /* do not perform lazy search above this match length */
127    ush nice_length; /* quit search above this match length */
128    ush max_chain;
129    compress_func func;
130 } config;
131
132 #ifdef FASTEST
133 local const config configuration_table[2] = {
134 /*      good lazy nice chain */
135 /* 0 */ {0,    0,  0,    0, deflate_stored},  /* store only */
136 /* 1 */ {4,    4,  8,    4, deflate_fast}}; /* max speed, no lazy matches */
137 #else
138 local const config configuration_table[10] = {
139 /*      good lazy nice chain */
140 /* 0 */ {0,    0,  0,    0, deflate_stored},  /* store only */
141 /* 1 */ {4,    4,  8,    4, deflate_fast}, /* max speed, no lazy matches */
142 /* 2 */ {4,    5, 16,    8, deflate_fast},
143 /* 3 */ {4,    6, 32,   32, deflate_fast},
144
145 /* 4 */ {4,    4, 16,   16, deflate_slow},  /* lazy matches */
146 /* 5 */ {8,   16, 32,   32, deflate_slow},
147 /* 6 */ {8,   16, 128, 128, deflate_slow},
148 /* 7 */ {8,   32, 128, 256, deflate_slow},
149 /* 8 */ {32, 128, 258, 1024, deflate_slow},
150 /* 9 */ {32, 258, 258, 4096, deflate_slow}}; /* max compression */
151 #endif
152
153 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
154  * For deflate_fast() (levels <= 3) good is ignored and lazy has a different
155  * meaning.
156  */
157
158 #define EQUAL 0
159 /* result of memcmp for equal strings */
160
161 #ifndef NO_DUMMY_DECL
162 struct static_tree_desc_s {int dummy;}; /* for buggy compilers */
163 #endif
164
165 /* ===========================================================================
166  * Update a hash value with the given input byte
167  * IN  assertion: all calls to to UPDATE_HASH are made with consecutive
168  *    input characters, so that a running hash key can be computed from the
169  *    previous key instead of complete recalculation each time.
170  */
171 #define UPDATE_HASH(s,h,c) (h = (((h)<<s->hash_shift) ^ (c)) & s->hash_mask)
172
173
174 /* ===========================================================================
175  * Insert string str in the dictionary and set match_head to the previous head
176  * of the hash chain (the most recent string with same hash key). Return
177  * the previous length of the hash chain.
178  * If this file is compiled with -DFASTEST, the compression level is forced
179  * to 1, and no hash chains are maintained.
180  * IN  assertion: all calls to to INSERT_STRING are made with consecutive
181  *    input characters and the first MIN_MATCH bytes of str are valid
182  *    (except for the last MIN_MATCH-1 bytes of the input file).
183  */
184 #ifdef FASTEST
185 #define INSERT_STRING(s, str, match_head) \
186    (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
187     match_head = s->head[s->ins_h], \
188     s->head[s->ins_h] = (Pos)(str))
189 #else
190 #define INSERT_STRING(s, str, match_head) \
191    (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
192     match_head = s->prev[(str) & s->w_mask] = s->head[s->ins_h], \
193     s->head[s->ins_h] = (Pos)(str))
194 #endif
195
196 /* ===========================================================================
197  * Initialize the hash table (avoiding 64K overflow for 16 bit systems).
198  * prev[] will be initialized on the fly.
199  */
200 #define CLEAR_HASH(s) \
201     s->head[s->hash_size-1] = NIL; \
202     zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head));
203
204 /* ========================================================================= */
205 int ZEXPORT deflateInit_(strm, level, version, stream_size)
206     z_streamp strm;
207     int level;
208     const char *version;
209     int stream_size;
210 {
211     return deflateInit2_(strm, level, Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL,
212                          Z_DEFAULT_STRATEGY, version, stream_size);
213     /* To do: ignore strm->next_in if we use it as window */
214 }
215
216 /* ========================================================================= */
217 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
218                   version, stream_size)
219     z_streamp strm;
220     int  level;
221     int  method;
222     int  windowBits;
223     int  memLevel;
224     int  strategy;
225     const char *version;
226     int stream_size;
227 {
228     deflate_state *s;
229     int wrap = 1;
230     static const char my_version[] = ZLIB_VERSION;
231
232     ushf *overlay;
233     /* We overlay pending_buf and d_buf+l_buf. This works since the average
234      * output size for (length,distance) codes is <= 24 bits.
235      */
236
237     if (version == Z_NULL || version[0] != my_version[0] ||
238         stream_size != sizeof(z_stream)) {
239         return Z_VERSION_ERROR;
240     }
241     if (strm == Z_NULL) return Z_STREAM_ERROR;
242
243     strm->msg = Z_NULL;
244     if (strm->zalloc == (alloc_func)0) {
245         strm->zalloc = zcalloc;
246         strm->opaque = (voidpf)0;
247     }
248     if (strm->zfree == (free_func)0) strm->zfree = zcfree;
249
250 #ifdef FASTEST
251     if (level != 0) level = 1;
252 #else
253     if (level == Z_DEFAULT_COMPRESSION) level = 6;
254 #endif
255
256     if (windowBits < 0) { /* suppress zlib wrapper */
257         wrap = 0;
258         windowBits = -windowBits;
259     }
260 #ifdef GZIP
261     else if (windowBits > 15) {
262         wrap = 2;       /* write gzip wrapper instead */
263         windowBits -= 16;
264     }
265 #endif
266     if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method != Z_DEFLATED ||
267         windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
268         strategy < 0 || strategy > Z_FIXED) {
269         return Z_STREAM_ERROR;
270     }
271     if (windowBits == 8) windowBits = 9;  /* until 256-byte window bug fixed */
272     s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state));
273     if (s == Z_NULL) return Z_MEM_ERROR;
274     strm->state = (struct internal_state FAR *)s;
275     s->strm = strm;
276
277     s->wrap = wrap;
278     s->gzhead = Z_NULL;
279     s->w_bits = windowBits;
280     s->w_size = 1 << s->w_bits;
281     s->w_mask = s->w_size - 1;
282
283     s->hash_bits = memLevel + 7;
284     s->hash_size = 1 << s->hash_bits;
285     s->hash_mask = s->hash_size - 1;
286     s->hash_shift =  ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH);
287
288     s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
289     s->prev   = (Posf *)  ZALLOC(strm, s->w_size, sizeof(Pos));
290     s->head   = (Posf *)  ZALLOC(strm, s->hash_size, sizeof(Pos));
291
292     s->lit_bufsize = 1 << (memLevel + 6); /* 16K elements by default */
293
294     overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
295     s->pending_buf = (uchf *) overlay;
296     s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L);
297
298     if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
299         s->pending_buf == Z_NULL) {
300         s->status = FINISH_STATE;
301         strm->msg = (char*)ERR_MSG(Z_MEM_ERROR);
302         deflateEnd (strm);
303         return Z_MEM_ERROR;
304     }
305     s->d_buf = overlay + s->lit_bufsize/sizeof(ush);
306     s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
307
308     s->level = level;
309     s->strategy = strategy;
310     s->method = (Byte)method;
311
312     return deflateReset(strm);
313 }
314
315 /* ========================================================================= */
316 int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength)
317     z_streamp strm;
318     const Bytef *dictionary;
319     uInt  dictLength;
320 {
321     deflate_state *s;
322     uInt length = dictLength;
323     uInt n;
324     IPos hash_head = 0;
325
326     if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL ||
327         strm->state->wrap == 2 ||
328         (strm->state->wrap == 1 && strm->state->status != INIT_STATE))
329         return Z_STREAM_ERROR;
330
331     s = strm->state;
332     if (s->wrap)
333         strm->adler = adler32(strm->adler, dictionary, dictLength);
334
335     if (length < MIN_MATCH) return Z_OK;
336     if (length > MAX_DIST(s)) {
337         length = MAX_DIST(s);
338         dictionary += dictLength - length; /* use the tail of the dictionary */
339     }
340     zmemcpy(s->window, dictionary, length);
341     s->strstart = length;
342     s->block_start = (long)length;
343
344     /* Insert all strings in the hash table (except for the last two bytes).
345      * s->lookahead stays null, so s->ins_h will be recomputed at the next
346      * call of fill_window.
347      */
348     s->ins_h = s->window[0];
349     UPDATE_HASH(s, s->ins_h, s->window[1]);
350     for (n = 0; n <= length - MIN_MATCH; n++) {
351         INSERT_STRING(s, n, hash_head);
352     }
353     if (hash_head) hash_head = 0;  /* to make compiler happy */
354     return Z_OK;
355 }
356
357 /* ========================================================================= */
358 int ZEXPORT deflateReset (strm)
359     z_streamp strm;
360 {
361     deflate_state *s;
362
363     if (strm == Z_NULL || strm->state == Z_NULL ||
364         strm->zalloc == (alloc_func)0 || strm->zfree == (free_func)0) {
365         return Z_STREAM_ERROR;
366     }
367
368     strm->total_in = strm->total_out = 0;
369     strm->msg = Z_NULL; /* use zfree if we ever allocate msg dynamically */
370     strm->data_type = Z_UNKNOWN;
371
372     s = (deflate_state *)strm->state;
373     s->pending = 0;
374     s->pending_out = s->pending_buf;
375
376     if (s->wrap < 0) {
377         s->wrap = -s->wrap; /* was made negative by deflate(..., Z_FINISH); */
378     }
379     s->status = s->wrap ? INIT_STATE : BUSY_STATE;
380     strm->adler =
381 #ifdef GZIP
382         s->wrap == 2 ? crc32(0L, Z_NULL, 0) :
383 #endif
384         adler32(0L, Z_NULL, 0);
385     s->last_flush = Z_NO_FLUSH;
386
387     _tr_init(s);
388     lm_init(s);
389
390     return Z_OK;
391 }
392
393 /* ========================================================================= */
394 int ZEXPORT deflateSetHeader (strm, head)
395     z_streamp strm;
396     gz_headerp head;
397 {
398     if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
399     if (strm->state->wrap != 2) return Z_STREAM_ERROR;
400     strm->state->gzhead = head;
401     return Z_OK;
402 }
403
404 /* ========================================================================= */
405 int ZEXPORT deflatePrime (strm, bits, value)
406     z_streamp strm;
407     int bits;
408     int value;
409 {
410     if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
411     strm->state->bi_valid = bits;
412     strm->state->bi_buf = (ush)(value & ((1 << bits) - 1));
413     return Z_OK;
414 }
415
416 /* ========================================================================= */
417 int ZEXPORT deflateParams(strm, level, strategy)
418     z_streamp strm;
419     int level;
420     int strategy;
421 {
422     deflate_state *s;
423     compress_func func;
424     int err = Z_OK;
425
426     if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
427     s = strm->state;
428
429 #ifdef FASTEST
430     if (level != 0) level = 1;
431 #else
432     if (level == Z_DEFAULT_COMPRESSION) level = 6;
433 #endif
434     if (level < 0 || level > 9 || strategy < 0 || strategy > Z_FIXED) {
435         return Z_STREAM_ERROR;
436     }
437     func = configuration_table[s->level].func;
438
439     if (func != configuration_table[level].func && strm->total_in != 0) {
440         /* Flush the last buffer: */
441         err = deflate(strm, Z_PARTIAL_FLUSH);
442     }
443     if (s->level != level) {
444         s->level = level;
445         s->max_lazy_match   = configuration_table[level].max_lazy;
446         s->good_match       = configuration_table[level].good_length;
447         s->nice_match       = configuration_table[level].nice_length;
448         s->max_chain_length = configuration_table[level].max_chain;
449     }
450     s->strategy = strategy;
451     return err;
452 }
453
454 /* ========================================================================= */
455 int ZEXPORT deflateTune(strm, good_length, max_lazy, nice_length, max_chain)
456     z_streamp strm;
457     int good_length;
458     int max_lazy;
459     int nice_length;
460     int max_chain;
461 {
462     deflate_state *s;
463
464     if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
465     s = strm->state;
466     s->good_match = good_length;
467     s->max_lazy_match = max_lazy;
468     s->nice_match = nice_length;
469     s->max_chain_length = max_chain;
470     return Z_OK;
471 }
472
473 /* =========================================================================
474  * For the default windowBits of 15 and memLevel of 8, this function returns
475  * a close to exact, as well as small, upper bound on the compressed size.
476  * They are coded as constants here for a reason--if the #define's are
477  * changed, then this function needs to be changed as well.  The return
478  * value for 15 and 8 only works for those exact settings.
479  *
480  * For any setting other than those defaults for windowBits and memLevel,
481  * the value returned is a conservative worst case for the maximum expansion
482  * resulting from using fixed blocks instead of stored blocks, which deflate
483  * can emit on compressed data for some combinations of the parameters.
484  *
485  * This function could be more sophisticated to provide closer upper bounds
486  * for every combination of windowBits and memLevel, as well as wrap.
487  * But even the conservative upper bound of about 14% expansion does not
488  * seem onerous for output buffer allocation.
489  */
490 uLong ZEXPORT deflateBound(strm, sourceLen)
491     z_streamp strm;
492     uLong sourceLen;
493 {
494     deflate_state *s;
495     uLong destLen;
496
497     /* conservative upper bound */
498     destLen = sourceLen +
499               ((sourceLen + 7) >> 3) + ((sourceLen + 63) >> 6) + 11;
500
501     /* if can't get parameters, return conservative bound */
502     if (strm == Z_NULL || strm->state == Z_NULL)
503         return destLen;
504
505     /* if not default parameters, return conservative bound */
506     s = strm->state;
507     if (s->w_bits != 15 || s->hash_bits != 8 + 7)
508         return destLen;
509
510     /* default settings: return tight bound for that case */
511     return compressBound(sourceLen);
512 }
513
514 /* =========================================================================
515  * Put a short in the pending buffer. The 16-bit value is put in MSB order.
516  * IN assertion: the stream state is correct and there is enough room in
517  * pending_buf.
518  */
519 local void putShortMSB (s, b)
520     deflate_state *s;
521     uInt b;
522 {
523     put_byte(s, (Byte)(b >> 8));
524     put_byte(s, (Byte)(b & 0xff));
525 }
526
527 /* =========================================================================
528  * Flush as much pending output as possible. All deflate() output goes
529  * through this function so some applications may wish to modify it
530  * to avoid allocating a large strm->next_out buffer and copying into it.
531  * (See also read_buf()).
532  */
533 local void flush_pending(strm)
534     z_streamp strm;
535 {
536     unsigned len = strm->state->pending;
537
538     if (len > strm->avail_out) len = strm->avail_out;
539     if (len == 0) return;
540
541     zmemcpy(strm->next_out, strm->state->pending_out, len);
542     strm->next_out  += len;
543     strm->state->pending_out  += len;
544     strm->total_out += len;
545     strm->avail_out  -= len;
546     strm->state->pending -= len;
547     if (strm->state->pending == 0) {
548         strm->state->pending_out = strm->state->pending_buf;
549     }
550 }
551
552 /* ========================================================================= */
553 int ZEXPORT deflate (strm, flush)
554     z_streamp strm;
555     int flush;
556 {
557     int old_flush; /* value of flush param for previous deflate call */
558     deflate_state *s;
559
560     if (strm == Z_NULL || strm->state == Z_NULL ||
561         flush > Z_FINISH || flush < 0) {
562         return Z_STREAM_ERROR;
563     }
564     s = strm->state;
565
566     if (strm->next_out == Z_NULL ||
567         (strm->next_in == Z_NULL && strm->avail_in != 0) ||
568         (s->status == FINISH_STATE && flush != Z_FINISH)) {
569         ERR_RETURN(strm, Z_STREAM_ERROR);
570     }
571     if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR);
572
573     s->strm = strm; /* just in case */
574     old_flush = s->last_flush;
575     s->last_flush = flush;
576
577     /* Write the header */
578     if (s->status == INIT_STATE) {
579 #ifdef GZIP
580         if (s->wrap == 2) {
581             strm->adler = crc32(0L, Z_NULL, 0);
582             put_byte(s, 31);
583             put_byte(s, 139);
584             put_byte(s, 8);
585             if (s->gzhead == NULL) {
586                 put_byte(s, 0);
587                 put_byte(s, 0);
588                 put_byte(s, 0);
589                 put_byte(s, 0);
590                 put_byte(s, 0);
591                 put_byte(s, s->level == 9 ? 2 :
592                             (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2 ?
593                              4 : 0));
594                 put_byte(s, OS_CODE);
595                 s->status = BUSY_STATE;
596             }
597             else {
598                 put_byte(s, (s->gzhead->text ? 1 : 0) +
599                             (s->gzhead->hcrc ? 2 : 0) +
600                             (s->gzhead->extra == Z_NULL ? 0 : 4) +
601                             (s->gzhead->name == Z_NULL ? 0 : 8) +
602                             (s->gzhead->comment == Z_NULL ? 0 : 16)
603                         );
604                 put_byte(s, (Byte)(s->gzhead->time & 0xff));
605                 put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff));
606                 put_byte(s, (Byte)((s->gzhead->time >> 16) & 0xff));
607                 put_byte(s, (Byte)((s->gzhead->time >> 24) & 0xff));
608                 put_byte(s, s->level == 9 ? 2 :
609                             (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2 ?
610                              4 : 0));
611                 put_byte(s, s->gzhead->os & 0xff);
612                 if (s->gzhead->extra != NULL) {
613                     put_byte(s, s->gzhead->extra_len & 0xff);
614                     put_byte(s, (s->gzhead->extra_len >> 8) & 0xff);
615                 }
616                 if (s->gzhead->hcrc)
617                     strm->adler = crc32(strm->adler, s->pending_buf,
618                                         s->pending);
619                 s->gzindex = 0;
620                 s->status = EXTRA_STATE;
621             }
622         }
623         else
624 #endif
625         {
626             uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8;
627             uInt level_flags;
628
629             if (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2)
630                 level_flags = 0;
631             else if (s->level < 6)
632                 level_flags = 1;
633             else if (s->level == 6)
634                 level_flags = 2;
635             else
636                 level_flags = 3;
637             header |= (level_flags << 6);
638             if (s->strstart != 0) header |= PRESET_DICT;
639             header += 31 - (header % 31);
640
641             s->status = BUSY_STATE;
642             putShortMSB(s, header);
643
644             /* Save the adler32 of the preset dictionary: */
645             if (s->strstart != 0) {
646                 putShortMSB(s, (uInt)(strm->adler >> 16));
647                 putShortMSB(s, (uInt)(strm->adler & 0xffff));
648             }
649             strm->adler = adler32(0L, Z_NULL, 0);
650         }
651     }
652 #ifdef GZIP
653     if (s->status == EXTRA_STATE) {
654         if (s->gzhead->extra != NULL) {
655             uInt beg = s->pending;  /* start of bytes to update crc */
656
657             while (s->gzindex < (s->gzhead->extra_len & 0xffff)) {
658                 if (s->pending == s->pending_buf_size) {
659                     if (s->gzhead->hcrc && s->pending > beg)
660                         strm->adler = crc32(strm->adler, s->pending_buf + beg,
661                                             s->pending - beg);
662                     flush_pending(strm);
663                     beg = s->pending;
664                     if (s->pending == s->pending_buf_size)
665                         break;
666                 }
667                 put_byte(s, s->gzhead->extra[s->gzindex]);
668                 s->gzindex++;
669             }
670             if (s->gzhead->hcrc && s->pending > beg)
671                 strm->adler = crc32(strm->adler, s->pending_buf + beg,
672                                     s->pending - beg);
673             if (s->gzindex == s->gzhead->extra_len) {
674                 s->gzindex = 0;
675                 s->status = NAME_STATE;
676             }
677         }
678         else
679             s->status = NAME_STATE;
680     }
681     if (s->status == NAME_STATE) {
682         if (s->gzhead->name != NULL) {
683             uInt beg = s->pending;  /* start of bytes to update crc */
684             int val;
685
686             do {
687                 if (s->pending == s->pending_buf_size) {
688                     if (s->gzhead->hcrc && s->pending > beg)
689                         strm->adler = crc32(strm->adler, s->pending_buf + beg,
690                                             s->pending - beg);
691                     flush_pending(strm);
692                     beg = s->pending;
693                     if (s->pending == s->pending_buf_size) {
694                         val = 1;
695                         break;
696                     }
697                 }
698                 val = s->gzhead->name[s->gzindex++];
699                 put_byte(s, val);
700             } while (val != 0);
701             if (s->gzhead->hcrc && s->pending > beg)
702                 strm->adler = crc32(strm->adler, s->pending_buf + beg,
703                                     s->pending - beg);
704             if (val == 0) {
705                 s->gzindex = 0;
706                 s->status = COMMENT_STATE;
707             }
708         }
709         else
710             s->status = COMMENT_STATE;
711     }
712     if (s->status == COMMENT_STATE) {
713         if (s->gzhead->comment != NULL) {
714             uInt beg = s->pending;  /* start of bytes to update crc */
715             int val;
716
717             do {
718                 if (s->pending == s->pending_buf_size) {
719                     if (s->gzhead->hcrc && s->pending > beg)
720                         strm->adler = crc32(strm->adler, s->pending_buf + beg,
721                                             s->pending - beg);
722                     flush_pending(strm);
723                     beg = s->pending;
724                     if (s->pending == s->pending_buf_size) {
725                         val = 1;
726                         break;
727                     }
728                 }
729                 val = s->gzhead->comment[s->gzindex++];
730                 put_byte(s, val);
731             } while (val != 0);
732             if (s->gzhead->hcrc && s->pending > beg)
733                 strm->adler = crc32(strm->adler, s->pending_buf + beg,
734                                     s->pending - beg);
735             if (val == 0)
736                 s->status = HCRC_STATE;
737         }
738         else
739             s->status = HCRC_STATE;
740     }
741     if (s->status == HCRC_STATE) {
742         if (s->gzhead->hcrc) {
743             if (s->pending + 2 > s->pending_buf_size)
744                 flush_pending(strm);
745             if (s->pending + 2 <= s->pending_buf_size) {
746                 put_byte(s, (Byte)(strm->adler & 0xff));
747                 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
748                 strm->adler = crc32(0L, Z_NULL, 0);
749                 s->status = BUSY_STATE;
750             }
751         }
752         else
753             s->status = BUSY_STATE;
754     }
755 #endif
756
757     /* Flush as much pending output as possible */
758     if (s->pending != 0) {
759         flush_pending(strm);
760         if (strm->avail_out == 0) {
761             /* Since avail_out is 0, deflate will be called again with
762              * more output space, but possibly with both pending and
763              * avail_in equal to zero. There won't be anything to do,
764              * but this is not an error situation so make sure we
765              * return OK instead of BUF_ERROR at next call of deflate:
766              */
767             s->last_flush = -1;
768             return Z_OK;
769         }
770
771     /* Make sure there is something to do and avoid duplicate consecutive
772      * flushes. For repeated and useless calls with Z_FINISH, we keep
773      * returning Z_STREAM_END instead of Z_BUF_ERROR.
774      */
775     } else if (strm->avail_in == 0 && flush <= old_flush &&
776                flush != Z_FINISH) {
777         ERR_RETURN(strm, Z_BUF_ERROR);
778     }
779
780     /* User must not provide more input after the first FINISH: */
781     if (s->status == FINISH_STATE && strm->avail_in != 0) {
782         ERR_RETURN(strm, Z_BUF_ERROR);
783     }
784
785     /* Start a new block or continue the current one.
786      */
787     if (strm->avail_in != 0 || s->lookahead != 0 ||
788         (flush != Z_NO_FLUSH && s->status != FINISH_STATE)) {
789         block_state bstate;
790
791         bstate = (*(configuration_table[s->level].func))(s, flush);
792
793         if (bstate == finish_started || bstate == finish_done) {
794             s->status = FINISH_STATE;
795         }
796         if (bstate == need_more || bstate == finish_started) {
797             if (strm->avail_out == 0) {
798                 s->last_flush = -1; /* avoid BUF_ERROR next call, see above */
799             }
800             return Z_OK;
801             /* If flush != Z_NO_FLUSH && avail_out == 0, the next call
802              * of deflate should use the same flush parameter to make sure
803              * that the flush is complete. So we don't have to output an
804              * empty block here, this will be done at next call. This also
805              * ensures that for a very small output buffer, we emit at most
806              * one empty block.
807              */
808         }
809         if (bstate == block_done) {
810             if (flush == Z_PARTIAL_FLUSH) {
811                 _tr_align(s);
812             } else { /* FULL_FLUSH or SYNC_FLUSH */
813                 _tr_stored_block(s, (char*)0, 0L, 0);
814                 /* For a full flush, this empty block will be recognized
815                  * as a special marker by inflate_sync().
816                  */
817                 if (flush == Z_FULL_FLUSH) {
818                     CLEAR_HASH(s);             /* forget history */
819                 }
820             }
821             flush_pending(strm);
822             if (strm->avail_out == 0) {
823               s->last_flush = -1; /* avoid BUF_ERROR at next call, see above */
824               return Z_OK;
825             }
826         }
827     }
828     Assert(strm->avail_out > 0, "bug2");
829
830     if (flush != Z_FINISH) return Z_OK;
831     if (s->wrap <= 0) return Z_STREAM_END;
832
833     /* Write the trailer */
834 #ifdef GZIP
835     if (s->wrap == 2) {
836         put_byte(s, (Byte)(strm->adler & 0xff));
837         put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
838         put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
839         put_byte(s, (Byte)((strm->adler >> 24) & 0xff));
840         put_byte(s, (Byte)(strm->total_in & 0xff));
841         put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
842         put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
843         put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
844     }
845     else
846 #endif
847     {
848         putShortMSB(s, (uInt)(strm->adler >> 16));
849         putShortMSB(s, (uInt)(strm->adler & 0xffff));
850     }
851     flush_pending(strm);
852     /* If avail_out is zero, the application will call deflate again
853      * to flush the rest.
854      */
855     if (s->wrap > 0) s->wrap = -s->wrap; /* write the trailer only once! */
856     return s->pending != 0 ? Z_OK : Z_STREAM_END;
857 }
858
859 /* ========================================================================= */
860 int ZEXPORT deflateEnd (strm)
861     z_streamp strm;
862 {
863     int status;
864
865     if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
866
867     status = strm->state->status;
868     if (status != INIT_STATE &&
869         status != EXTRA_STATE &&
870         status != NAME_STATE &&
871         status != COMMENT_STATE &&
872         status != HCRC_STATE &&
873         status != BUSY_STATE &&
874         status != FINISH_STATE) {
875       return Z_STREAM_ERROR;
876     }
877
878     /* Deallocate in reverse order of allocations: */
879     TRY_FREE(strm, strm->state->pending_buf);
880     TRY_FREE(strm, strm->state->head);
881     TRY_FREE(strm, strm->state->prev);
882     TRY_FREE(strm, strm->state->window);
883
884     ZFREE(strm, strm->state);
885     strm->state = Z_NULL;
886
887     return status == BUSY_STATE ? Z_DATA_ERROR : Z_OK;
888 }
889
890 /* =========================================================================
891  * Copy the source state to the destination state.
892  * To simplify the source, this is not supported for 16-bit MSDOS (which
893  * doesn't have enough memory anyway to duplicate compression states).
894  */
895 int ZEXPORT deflateCopy (dest, source)
896     z_streamp dest;
897     z_streamp source;
898 {
899 #ifdef MAXSEG_64K
900     return Z_STREAM_ERROR;
901 #else
902     deflate_state *ds;
903     deflate_state *ss;
904     ushf *overlay;
905
906
907     if (source == Z_NULL || dest == Z_NULL || source->state == Z_NULL) {
908         return Z_STREAM_ERROR;
909     }
910
911     ss = source->state;
912
913     zmemcpy(dest, source, sizeof(z_stream));
914
915     ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state));
916     if (ds == Z_NULL) return Z_MEM_ERROR;
917     dest->state = (struct internal_state FAR *) ds;
918     zmemcpy(ds, ss, sizeof(deflate_state));
919     ds->strm = dest;
920
921     ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
922     ds->prev   = (Posf *)  ZALLOC(dest, ds->w_size, sizeof(Pos));
923     ds->head   = (Posf *)  ZALLOC(dest, ds->hash_size, sizeof(Pos));
924     overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
925     ds->pending_buf = (uchf *) overlay;
926
927     if (ds->window == Z_NULL || ds->prev == Z_NULL || ds->head == Z_NULL ||
928         ds->pending_buf == Z_NULL) {
929         deflateEnd (dest);
930         return Z_MEM_ERROR;
931     }
932     /* following zmemcpy do not work for 16-bit MSDOS */
933     zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte));
934     zmemcpy(ds->prev, ss->prev, ds->w_size * sizeof(Pos));
935     zmemcpy(ds->head, ss->head, ds->hash_size * sizeof(Pos));
936     zmemcpy(ds->pending_buf, ss->pending_buf, (uInt)ds->pending_buf_size);
937
938     ds->pending_out = ds->pending_buf + (ss->pending_out - ss->pending_buf);
939     ds->d_buf = overlay + ds->lit_bufsize/sizeof(ush);
940     ds->l_buf = ds->pending_buf + (1+sizeof(ush))*ds->lit_bufsize;
941
942     ds->l_desc.dyn_tree = ds->dyn_ltree;
943     ds->d_desc.dyn_tree = ds->dyn_dtree;
944     ds->bl_desc.dyn_tree = ds->bl_tree;
945
946     return Z_OK;
947 #endif /* MAXSEG_64K */
948 }
949
950 /* ===========================================================================
951  * Read a new buffer from the current input stream, update the adler32
952  * and total number of bytes read.  All deflate() input goes through
953  * this function so some applications may wish to modify it to avoid
954  * allocating a large strm->next_in buffer and copying from it.
955  * (See also flush_pending()).
956  */
957 local int read_buf(strm, buf, size)
958     z_streamp strm;
959     Bytef *buf;
960     unsigned size;
961 {
962     unsigned len = strm->avail_in;
963
964     if (len > size) len = size;
965     if (len == 0) return 0;
966
967     strm->avail_in  -= len;
968
969     if (strm->state->wrap == 1) {
970         strm->adler = adler32(strm->adler, strm->next_in, len);
971     }
972 #ifdef GZIP
973     else if (strm->state->wrap == 2) {
974         strm->adler = crc32(strm->adler, strm->next_in, len);
975     }
976 #endif
977     zmemcpy(buf, strm->next_in, len);
978     strm->next_in  += len;
979     strm->total_in += len;
980
981     return (int)len;
982 }
983
984 /* ===========================================================================
985  * Initialize the "longest match" routines for a new zlib stream
986  */
987 local void lm_init (s)
988     deflate_state *s;
989 {
990     s->window_size = (ulg)2L*s->w_size;
991
992     CLEAR_HASH(s);
993
994     /* Set the default configuration parameters:
995      */
996     s->max_lazy_match   = configuration_table[s->level].max_lazy;
997     s->good_match       = configuration_table[s->level].good_length;
998     s->nice_match       = configuration_table[s->level].nice_length;
999     s->max_chain_length = configuration_table[s->level].max_chain;
1000
1001     s->strstart = 0;
1002     s->block_start = 0L;
1003     s->lookahead = 0;
1004     s->match_length = s->prev_length = MIN_MATCH-1;
1005     s->match_available = 0;
1006     s->ins_h = 0;
1007 #ifndef FASTEST
1008 #ifdef ASMV
1009     match_init(); /* initialize the asm code */
1010 #endif
1011 #endif
1012 }
1013
1014 #ifndef FASTEST
1015 /* ===========================================================================
1016  * Set match_start to the longest match starting at the given string and
1017  * return its length. Matches shorter or equal to prev_length are discarded,
1018  * in which case the result is equal to prev_length and match_start is
1019  * garbage.
1020  * IN assertions: cur_match is the head of the hash chain for the current
1021  *   string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
1022  * OUT assertion: the match length is not greater than s->lookahead.
1023  */
1024 #ifndef ASMV
1025 /* For 80x86 and 680x0, an optimized version will be provided in match.asm or
1026  * match.S. The code will be functionally equivalent.
1027  */
1028 local uInt longest_match(s, cur_match)
1029     deflate_state *s;
1030     IPos cur_match;                             /* current match */
1031 {
1032     unsigned chain_length = s->max_chain_length;/* max hash chain length */
1033     register Bytef *scan = s->window + s->strstart; /* current string */
1034     register Bytef *match;                       /* matched string */
1035     register int len;                           /* length of current match */
1036     int best_len = s->prev_length;              /* best match length so far */
1037     int nice_match = s->nice_match;             /* stop if match long enough */
1038     IPos limit = s->strstart > (IPos)MAX_DIST(s) ?
1039         s->strstart - (IPos)MAX_DIST(s) : NIL;
1040     /* Stop when cur_match becomes <= limit. To simplify the code,
1041      * we prevent matches with the string of window index 0.
1042      */
1043     Posf *prev = s->prev;
1044     uInt wmask = s->w_mask;
1045
1046 #ifdef UNALIGNED_OK
1047     /* Compare two bytes at a time. Note: this is not always beneficial.
1048      * Try with and without -DUNALIGNED_OK to check.
1049      */
1050     register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
1051     register ush scan_start = *(ushf*)scan;
1052     register ush scan_end   = *(ushf*)(scan+best_len-1);
1053 #else
1054     register Bytef *strend = s->window + s->strstart + MAX_MATCH;
1055     register Byte scan_end1  = scan[best_len-1];
1056     register Byte scan_end   = scan[best_len];
1057 #endif
1058
1059     /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
1060      * It is easy to get rid of this optimization if necessary.
1061      */
1062     Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
1063
1064     /* Do not waste too much time if we already have a good match: */
1065     if (s->prev_length >= s->good_match) {
1066         chain_length >>= 2;
1067     }
1068     /* Do not look for matches beyond the end of the input. This is necessary
1069      * to make deflate deterministic.
1070      */
1071     if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
1072
1073     Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1074
1075     do {
1076         Assert(cur_match < s->strstart, "no future");
1077         match = s->window + cur_match;
1078
1079         /* Skip to next match if the match length cannot increase
1080          * or if the match length is less than 2.  Note that the checks below
1081          * for insufficient lookahead only occur occasionally for performance
1082          * reasons.  Therefore uninitialized memory will be accessed, and
1083          * conditional jumps will be made that depend on those values.
1084          * However the length of the match is limited to the lookahead, so
1085          * the output of deflate is not affected by the uninitialized values.
1086          */
1087 #if (defined(UNALIGNED_OK) && MAX_MATCH == 258)
1088         /* This code assumes sizeof(unsigned short) == 2. Do not use
1089          * UNALIGNED_OK if your compiler uses a different size.
1090          */
1091         if (*(ushf*)(match+best_len-1) != scan_end ||
1092             *(ushf*)match != scan_start) continue;
1093
1094         /* It is not necessary to compare scan[2] and match[2] since they are
1095          * always equal when the other bytes match, given that the hash keys
1096          * are equal and that HASH_BITS >= 8. Compare 2 bytes at a time at
1097          * strstart+3, +5, ... up to strstart+257. We check for insufficient
1098          * lookahead only every 4th comparison; the 128th check will be made
1099          * at strstart+257. If MAX_MATCH-2 is not a multiple of 8, it is
1100          * necessary to put more guard bytes at the end of the window, or
1101          * to check more often for insufficient lookahead.
1102          */
1103         Assert(scan[2] == match[2], "scan[2]?");
1104         scan++, match++;
1105         do {
1106         } while (*(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
1107                  *(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
1108                  *(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
1109                  *(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
1110                  scan < strend);
1111         /* The funny "do {}" generates better code on most compilers */
1112
1113         /* Here, scan <= window+strstart+257 */
1114         Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
1115         if (*scan == *match) scan++;
1116
1117         len = (MAX_MATCH - 1) - (int)(strend-scan);
1118         scan = strend - (MAX_MATCH-1);
1119
1120 #else /* UNALIGNED_OK */
1121
1122         if (match[best_len]   != scan_end  ||
1123             match[best_len-1] != scan_end1 ||
1124             *match            != *scan     ||
1125             *++match          != scan[1])      continue;
1126
1127         /* The check at best_len-1 can be removed because it will be made
1128          * again later. (This heuristic is not always a win.)
1129          * It is not necessary to compare scan[2] and match[2] since they
1130          * are always equal when the other bytes match, given that
1131          * the hash keys are equal and that HASH_BITS >= 8.
1132          */
1133         scan += 2, match++;
1134         Assert(*scan == *match, "match[2]?");
1135
1136         /* We check for insufficient lookahead only every 8th comparison;
1137          * the 256th check will be made at strstart+258.
1138          */
1139         do {
1140         } while (*++scan == *++match && *++scan == *++match &&
1141                  *++scan == *++match && *++scan == *++match &&
1142                  *++scan == *++match && *++scan == *++match &&
1143                  *++scan == *++match && *++scan == *++match &&
1144                  scan < strend);
1145
1146         Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
1147
1148         len = MAX_MATCH - (int)(strend - scan);
1149         scan = strend - MAX_MATCH;
1150
1151 #endif /* UNALIGNED_OK */
1152
1153         if (len > best_len) {
1154             s->match_start = cur_match;
1155             best_len = len;
1156             if (len >= nice_match) break;
1157 #ifdef UNALIGNED_OK
1158             scan_end = *(ushf*)(scan+best_len-1);
1159 #else
1160             scan_end1  = scan[best_len-1];
1161             scan_end   = scan[best_len];
1162 #endif
1163         }
1164     } while ((cur_match = prev[cur_match & wmask]) > limit
1165              && --chain_length != 0);
1166
1167     if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
1168     return s->lookahead;
1169 }
1170 #endif /* ASMV */
1171 #endif /* FASTEST */
1172
1173 /* ---------------------------------------------------------------------------
1174  * Optimized version for level == 1 or strategy == Z_RLE only
1175  */
1176 local uInt longest_match_fast(s, cur_match)
1177     deflate_state *s;
1178     IPos cur_match;                             /* current match */
1179 {
1180     register Bytef *scan = s->window + s->strstart; /* current string */
1181     register Bytef *match;                       /* matched string */
1182     register int len;                           /* length of current match */
1183     register Bytef *strend = s->window + s->strstart + MAX_MATCH;
1184
1185     /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
1186      * It is easy to get rid of this optimization if necessary.
1187      */
1188     Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
1189
1190     Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1191
1192     Assert(cur_match < s->strstart, "no future");
1193
1194     match = s->window + cur_match;
1195
1196     /* Return failure if the match length is less than 2:
1197      */
1198     if (match[0] != scan[0] || match[1] != scan[1]) return MIN_MATCH-1;
1199
1200     /* The check at best_len-1 can be removed because it will be made
1201      * again later. (This heuristic is not always a win.)
1202      * It is not necessary to compare scan[2] and match[2] since they
1203      * are always equal when the other bytes match, given that
1204      * the hash keys are equal and that HASH_BITS >= 8.
1205      */
1206     scan += 2, match += 2;
1207     Assert(*scan == *match, "match[2]?");
1208
1209     /* We check for insufficient lookahead only every 8th comparison;
1210      * the 256th check will be made at strstart+258.
1211      */
1212     do {
1213     } while (*++scan == *++match && *++scan == *++match &&
1214              *++scan == *++match && *++scan == *++match &&
1215              *++scan == *++match && *++scan == *++match &&
1216              *++scan == *++match && *++scan == *++match &&
1217              scan < strend);
1218
1219     Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
1220
1221     len = MAX_MATCH - (int)(strend - scan);
1222
1223     if (len < MIN_MATCH) return MIN_MATCH - 1;
1224
1225     s->match_start = cur_match;
1226     return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead;
1227 }
1228
1229 #ifdef DEBUG
1230 /* ===========================================================================
1231  * Check that the match at match_start is indeed a match.
1232  */
1233 local void check_match(s, start, match, length)
1234     deflate_state *s;
1235     IPos start, match;
1236     int length;
1237 {
1238     /* check that the match is indeed a match */
1239     if (zmemcmp(s->window + match,
1240                 s->window + start, length) != EQUAL) {
1241         fprintf(stderr, " start %u, match %u, length %d\n",
1242                 start, match, length);
1243         do {
1244             fprintf(stderr, "%c%c", s->window[match++], s->window[start++]);
1245         } while (--length != 0);
1246         z_error("invalid match");
1247     }
1248     if (z_verbose > 1) {
1249         fprintf(stderr,"\\[%d,%d]", start-match, length);
1250         do { putc(s->window[start++], stderr); } while (--length != 0);
1251     }
1252 }
1253 #else
1254 #  define check_match(s, start, match, length)
1255 #endif /* DEBUG */
1256
1257 /* ===========================================================================
1258  * Fill the window when the lookahead becomes insufficient.
1259  * Updates strstart and lookahead.
1260  *
1261  * IN assertion: lookahead < MIN_LOOKAHEAD
1262  * OUT assertions: strstart <= window_size-MIN_LOOKAHEAD
1263  *    At least one byte has been read, or avail_in == 0; reads are
1264  *    performed for at least two bytes (required for the zip translate_eol
1265  *    option -- not supported here).
1266  */
1267 local void fill_window(s)
1268     deflate_state *s;
1269 {
1270     register unsigned n, m;
1271     register Posf *p;
1272     unsigned more;    /* Amount of free space at the end of the window. */
1273     uInt wsize = s->w_size;
1274
1275     do {
1276         more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
1277
1278         /* Deal with !@#$% 64K limit: */
1279         if (sizeof(int) <= 2) {
1280             if (more == 0 && s->strstart == 0 && s->lookahead == 0) {
1281                 more = wsize;
1282
1283             } else if (more == (unsigned)(-1)) {
1284                 /* Very unlikely, but possible on 16 bit machine if
1285                  * strstart == 0 && lookahead == 1 (input done a byte at time)
1286                  */
1287                 more--;
1288             }
1289         }
1290
1291         /* If the window is almost full and there is insufficient lookahead,
1292          * move the upper half to the lower one to make room in the upper half.
1293          */
1294         if (s->strstart >= wsize+MAX_DIST(s)) {
1295
1296             zmemcpy(s->window, s->window+wsize, (unsigned)wsize);
1297             s->match_start -= wsize;
1298             s->strstart    -= wsize; /* we now have strstart >= MAX_DIST */
1299             s->block_start -= (long) wsize;
1300
1301             /* Slide the hash table (could be avoided with 32 bit values
1302                at the expense of memory usage). We slide even when level == 0
1303                to keep the hash table consistent if we switch back to level > 0
1304                later. (Using level 0 permanently is not an optimal usage of
1305                zlib, so we don't care about this pathological case.)
1306              */
1307             /* %%% avoid this when Z_RLE */
1308             n = s->hash_size;
1309             p = &s->head[n];
1310             do {
1311                 m = *--p;
1312                 *p = (Pos)(m >= wsize ? m-wsize : NIL);
1313             } while (--n);
1314
1315             n = wsize;
1316 #ifndef FASTEST
1317             p = &s->prev[n];
1318             do {
1319                 m = *--p;
1320                 *p = (Pos)(m >= wsize ? m-wsize : NIL);
1321                 /* If n is not on any hash chain, prev[n] is garbage but
1322                  * its value will never be used.
1323                  */
1324             } while (--n);
1325 #endif
1326             more += wsize;
1327         }
1328         if (s->strm->avail_in == 0) return;
1329
1330         /* If there was no sliding:
1331          *    strstart <= WSIZE+MAX_DIST-1 && lookahead <= MIN_LOOKAHEAD - 1 &&
1332          *    more == window_size - lookahead - strstart
1333          * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1)
1334          * => more >= window_size - 2*WSIZE + 2
1335          * In the BIG_MEM or MMAP case (not yet supported),
1336          *   window_size == input_size + MIN_LOOKAHEAD  &&
1337          *   strstart + s->lookahead <= input_size => more >= MIN_LOOKAHEAD.
1338          * Otherwise, window_size == 2*WSIZE so more >= 2.
1339          * If there was sliding, more >= WSIZE. So in all cases, more >= 2.
1340          */
1341         Assert(more >= 2, "more < 2");
1342
1343         n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more);
1344         s->lookahead += n;
1345
1346         /* Initialize the hash value now that we have some input: */
1347         if (s->lookahead >= MIN_MATCH) {
1348             s->ins_h = s->window[s->strstart];
1349             UPDATE_HASH(s, s->ins_h, s->window[s->strstart+1]);
1350 #if MIN_MATCH != 3
1351             Call UPDATE_HASH() MIN_MATCH-3 more times
1352 #endif
1353         }
1354         /* If the whole input has less than MIN_MATCH bytes, ins_h is garbage,
1355          * but this is not important since only literal bytes will be emitted.
1356          */
1357
1358     } while (s->lookahead < MIN_LOOKAHEAD && s->strm->avail_in != 0);
1359 }
1360
1361 /* ===========================================================================
1362  * Flush the current block, with given end-of-file flag.
1363  * IN assertion: strstart is set to the end of the current match.
1364  */
1365 #define FLUSH_BLOCK_ONLY(s, eof) { \
1366    _tr_flush_block(s, (s->block_start >= 0L ? \
1367                    (charf *)&s->window[(unsigned)s->block_start] : \
1368                    (charf *)Z_NULL), \
1369                 (ulg)((long)s->strstart - s->block_start), \
1370                 (eof)); \
1371    s->block_start = s->strstart; \
1372    flush_pending(s->strm); \
1373    Tracev((stderr,"[FLUSH]")); \
1374 }
1375
1376 /* Same but force premature exit if necessary. */
1377 #define FLUSH_BLOCK(s, eof) { \
1378    FLUSH_BLOCK_ONLY(s, eof); \
1379    if (s->strm->avail_out == 0) return (eof) ? finish_started : need_more; \
1380 }
1381
1382 /* ===========================================================================
1383  * Copy without compression as much as possible from the input stream, return
1384  * the current block state.
1385  * This function does not insert new strings in the dictionary since
1386  * uncompressible data is probably not useful. This function is used
1387  * only for the level=0 compression option.
1388  * NOTE: this function should be optimized to avoid extra copying from
1389  * window to pending_buf.
1390  */
1391 local block_state deflate_stored(s, flush)
1392     deflate_state *s;
1393     int flush;
1394 {
1395     /* Stored blocks are limited to 0xffff bytes, pending_buf is limited
1396      * to pending_buf_size, and each stored block has a 5 byte header:
1397      */
1398     ulg max_block_size = 0xffff;
1399     ulg max_start;
1400
1401     if (max_block_size > s->pending_buf_size - 5) {
1402         max_block_size = s->pending_buf_size - 5;
1403     }
1404
1405     /* Copy as much as possible from input to output: */
1406     for (;;) {
1407         /* Fill the window as much as possible: */
1408         if (s->lookahead <= 1) {
1409
1410             Assert(s->strstart < s->w_size+MAX_DIST(s) ||
1411                    s->block_start >= (long)s->w_size, "slide too late");
1412
1413             fill_window(s);
1414             if (s->lookahead == 0 && flush == Z_NO_FLUSH) return need_more;
1415
1416             if (s->lookahead == 0) break; /* flush the current block */
1417         }
1418         Assert(s->block_start >= 0L, "block gone");
1419
1420         s->strstart += s->lookahead;
1421         s->lookahead = 0;
1422
1423         /* Emit a stored block if pending_buf will be full: */
1424         max_start = s->block_start + max_block_size;
1425         if (s->strstart == 0 || (ulg)s->strstart >= max_start) {
1426             /* strstart == 0 is possible when wraparound on 16-bit machine */
1427             s->lookahead = (uInt)(s->strstart - max_start);
1428             s->strstart = (uInt)max_start;
1429             FLUSH_BLOCK(s, 0);
1430         }
1431         /* Flush if we may have to slide, otherwise block_start may become
1432          * negative and the data will be gone:
1433          */
1434         if (s->strstart - (uInt)s->block_start >= MAX_DIST(s)) {
1435             FLUSH_BLOCK(s, 0);
1436         }
1437     }
1438     FLUSH_BLOCK(s, flush == Z_FINISH);
1439     return flush == Z_FINISH ? finish_done : block_done;
1440 }
1441
1442 /* ===========================================================================
1443  * Compress as much as possible from the input stream, return the current
1444  * block state.
1445  * This function does not perform lazy evaluation of matches and inserts
1446  * new strings in the dictionary only for unmatched strings or for short
1447  * matches. It is used only for the fast compression options.
1448  */
1449 local block_state deflate_fast(s, flush)
1450     deflate_state *s;
1451     int flush;
1452 {
1453     IPos hash_head = NIL; /* head of the hash chain */
1454     int bflush;           /* set if current block must be flushed */
1455
1456     for (;;) {
1457         /* Make sure that we always have enough lookahead, except
1458          * at the end of the input file. We need MAX_MATCH bytes
1459          * for the next match, plus MIN_MATCH bytes to insert the
1460          * string following the next match.
1461          */
1462         if (s->lookahead < MIN_LOOKAHEAD) {
1463             fill_window(s);
1464             if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
1465                 return need_more;
1466             }
1467             if (s->lookahead == 0) break; /* flush the current block */
1468         }
1469
1470         /* Insert the string window[strstart .. strstart+2] in the
1471          * dictionary, and set hash_head to the head of the hash chain:
1472          */
1473         if (s->lookahead >= MIN_MATCH) {
1474             INSERT_STRING(s, s->strstart, hash_head);
1475         }
1476
1477         /* Find the longest match, discarding those <= prev_length.
1478          * At this point we have always match_length < MIN_MATCH
1479          */
1480         if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) {
1481             /* To simplify the code, we prevent matches with the string
1482              * of window index 0 (in particular we have to avoid a match
1483              * of the string with itself at the start of the input file).
1484              */
1485 #ifdef FASTEST
1486             if ((s->strategy != Z_HUFFMAN_ONLY && s->strategy != Z_RLE) ||
1487                 (s->strategy == Z_RLE && s->strstart - hash_head == 1)) {
1488                 s->match_length = longest_match_fast (s, hash_head);
1489             }
1490 #else
1491             if (s->strategy != Z_HUFFMAN_ONLY && s->strategy != Z_RLE) {
1492                 s->match_length = longest_match (s, hash_head);
1493             } else if (s->strategy == Z_RLE && s->strstart - hash_head == 1) {
1494                 s->match_length = longest_match_fast (s, hash_head);
1495             }
1496 #endif
1497             /* longest_match() or longest_match_fast() sets match_start */
1498         }
1499         if (s->match_length >= MIN_MATCH) {
1500             check_match(s, s->strstart, s->match_start, s->match_length);
1501
1502             _tr_tally_dist(s, s->strstart - s->match_start,
1503                            s->match_length - MIN_MATCH, bflush);
1504
1505             s->lookahead -= s->match_length;
1506
1507             /* Insert new strings in the hash table only if the match length
1508              * is not too large. This saves time but degrades compression.
1509              */
1510 #ifndef FASTEST
1511             if (s->match_length <= s->max_insert_length &&
1512                 s->lookahead >= MIN_MATCH) {
1513                 s->match_length--; /* string at strstart already in table */
1514                 do {
1515                     s->strstart++;
1516                     INSERT_STRING(s, s->strstart, hash_head);
1517                     /* strstart never exceeds WSIZE-MAX_MATCH, so there are
1518                      * always MIN_MATCH bytes ahead.
1519                      */
1520                 } while (--s->match_length != 0);
1521                 s->strstart++;
1522             } else
1523 #endif
1524             {
1525                 s->strstart += s->match_length;
1526                 s->match_length = 0;
1527                 s->ins_h = s->window[s->strstart];
1528                 UPDATE_HASH(s, s->ins_h, s->window[s->strstart+1]);
1529 #if MIN_MATCH != 3
1530                 Call UPDATE_HASH() MIN_MATCH-3 more times
1531 #endif
1532                 /* If lookahead < MIN_MATCH, ins_h is garbage, but it does not
1533                  * matter since it will be recomputed at next deflate call.
1534                  */
1535             }
1536         } else {
1537             /* No match, output a literal byte */
1538             Tracevv((stderr,"%c", s->window[s->strstart]));
1539             _tr_tally_lit (s, s->window[s->strstart], bflush);
1540             s->lookahead--;
1541             s->strstart++;
1542         }
1543         if (bflush) FLUSH_BLOCK(s, 0);
1544     }
1545     FLUSH_BLOCK(s, flush == Z_FINISH);
1546     return flush == Z_FINISH ? finish_done : block_done;
1547 }
1548
1549 #ifndef FASTEST
1550 /* ===========================================================================
1551  * Same as above, but achieves better compression. We use a lazy
1552  * evaluation for matches: a match is finally adopted only if there is
1553  * no better match at the next window position.
1554  */
1555 local block_state deflate_slow(s, flush)
1556     deflate_state *s;
1557     int flush;
1558 {
1559     IPos hash_head = NIL;    /* head of hash chain */
1560     int bflush;              /* set if current block must be flushed */
1561
1562     /* Process the input block. */
1563     for (;;) {
1564         /* Make sure that we always have enough lookahead, except
1565          * at the end of the input file. We need MAX_MATCH bytes
1566          * for the next match, plus MIN_MATCH bytes to insert the
1567          * string following the next match.
1568          */
1569         if (s->lookahead < MIN_LOOKAHEAD) {
1570             fill_window(s);
1571             if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
1572                 return need_more;
1573             }
1574             if (s->lookahead == 0) break; /* flush the current block */
1575         }
1576
1577         /* Insert the string window[strstart .. strstart+2] in the
1578          * dictionary, and set hash_head to the head of the hash chain:
1579          */
1580         if (s->lookahead >= MIN_MATCH) {
1581             INSERT_STRING(s, s->strstart, hash_head);
1582         }
1583
1584         /* Find the longest match, discarding those <= prev_length.
1585          */
1586         s->prev_length = s->match_length, s->prev_match = s->match_start;
1587         s->match_length = MIN_MATCH-1;
1588
1589         if (hash_head != NIL && s->prev_length < s->max_lazy_match &&
1590             s->strstart - hash_head <= MAX_DIST(s)) {
1591             /* To simplify the code, we prevent matches with the string
1592              * of window index 0 (in particular we have to avoid a match
1593              * of the string with itself at the start of the input file).
1594              */
1595             if (s->strategy != Z_HUFFMAN_ONLY && s->strategy != Z_RLE) {
1596                 s->match_length = longest_match (s, hash_head);
1597             } else if (s->strategy == Z_RLE && s->strstart - hash_head == 1) {
1598                 s->match_length = longest_match_fast (s, hash_head);
1599             }
1600             /* longest_match() or longest_match_fast() sets match_start */
1601
1602             if (s->match_length <= 5 && (s->strategy == Z_FILTERED
1603 #if TOO_FAR <= 32767
1604                 || (s->match_length == MIN_MATCH &&
1605                     s->strstart - s->match_start > TOO_FAR)
1606 #endif
1607                 )) {
1608
1609                 /* If prev_match is also MIN_MATCH, match_start is garbage
1610                  * but we will ignore the current match anyway.
1611                  */
1612                 s->match_length = MIN_MATCH-1;
1613             }
1614         }
1615         /* If there was a match at the previous step and the current
1616          * match is not better, output the previous match:
1617          */
1618         if (s->prev_length >= MIN_MATCH && s->match_length <= s->prev_length) {
1619             uInt max_insert = s->strstart + s->lookahead - MIN_MATCH;
1620             /* Do not insert strings in hash table beyond this. */
1621
1622             check_match(s, s->strstart-1, s->prev_match, s->prev_length);
1623
1624             _tr_tally_dist(s, s->strstart -1 - s->prev_match,
1625                            s->prev_length - MIN_MATCH, bflush);
1626
1627             /* Insert in hash table all strings up to the end of the match.
1628              * strstart-1 and strstart are already inserted. If there is not
1629              * enough lookahead, the last two strings are not inserted in
1630              * the hash table.
1631              */
1632             s->lookahead -= s->prev_length-1;
1633             s->prev_length -= 2;
1634             do {
1635                 if (++s->strstart <= max_insert) {
1636                     INSERT_STRING(s, s->strstart, hash_head);
1637                 }
1638             } while (--s->prev_length != 0);
1639             s->match_available = 0;
1640             s->match_length = MIN_MATCH-1;
1641             s->strstart++;
1642
1643             if (bflush) FLUSH_BLOCK(s, 0);
1644
1645         } else if (s->match_available) {
1646             /* If there was no match at the previous position, output a
1647              * single literal. If there was a match but the current match
1648              * is longer, truncate the previous match to a single literal.
1649              */
1650             Tracevv((stderr,"%c", s->window[s->strstart-1]));
1651             _tr_tally_lit(s, s->window[s->strstart-1], bflush);
1652             if (bflush) {
1653                 FLUSH_BLOCK_ONLY(s, 0);
1654             }
1655             s->strstart++;
1656             s->lookahead--;
1657             if (s->strm->avail_out == 0) return need_more;
1658         } else {
1659             /* There is no previous match to compare with, wait for
1660              * the next step to decide.
1661              */
1662             s->match_available = 1;
1663             s->strstart++;
1664             s->lookahead--;
1665         }
1666     }
1667     Assert (flush != Z_NO_FLUSH, "no flush?");
1668     if (s->match_available) {
1669         Tracevv((stderr,"%c", s->window[s->strstart-1]));
1670         _tr_tally_lit(s, s->window[s->strstart-1], bflush);
1671         s->match_available = 0;
1672     }
1673     FLUSH_BLOCK(s, flush == Z_FINISH);
1674     return flush == Z_FINISH ? finish_done : block_done;
1675 }
1676 #endif /* FASTEST */
1677
1678 #if 0
1679 /* ===========================================================================
1680  * For Z_RLE, simply look for runs of bytes, generate matches only of distance
1681  * one.  Do not maintain a hash table.  (It will be regenerated if this run of
1682  * deflate switches away from Z_RLE.)
1683  */
1684 local block_state deflate_rle(s, flush)
1685     deflate_state *s;
1686     int flush;
1687 {
1688     int bflush;         /* set if current block must be flushed */
1689     uInt run;           /* length of run */
1690     uInt max;           /* maximum length of run */
1691     uInt prev;          /* byte at distance one to match */
1692     Bytef *scan;        /* scan for end of run */
1693
1694     for (;;) {
1695         /* Make sure that we always have enough lookahead, except
1696          * at the end of the input file. We need MAX_MATCH bytes
1697          * for the longest encodable run.
1698          */
1699         if (s->lookahead < MAX_MATCH) {
1700             fill_window(s);
1701             if (s->lookahead < MAX_MATCH && flush == Z_NO_FLUSH) {
1702                 return need_more;
1703             }
1704             if (s->lookahead == 0) break; /* flush the current block */
1705         }
1706
1707         /* See how many times the previous byte repeats */
1708         run = 0;
1709         if (s->strstart > 0) {      /* if there is a previous byte, that is */
1710             max = s->lookahead < MAX_MATCH ? s->lookahead : MAX_MATCH;
1711             scan = s->window + s->strstart - 1;
1712             prev = *scan++;
1713             do {
1714                 if (*scan++ != prev)
1715                     break;
1716             } while (++run < max);
1717         }
1718
1719         /* Emit match if have run of MIN_MATCH or longer, else emit literal */
1720         if (run >= MIN_MATCH) {
1721             check_match(s, s->strstart, s->strstart - 1, run);
1722             _tr_tally_dist(s, 1, run - MIN_MATCH, bflush);
1723             s->lookahead -= run;
1724             s->strstart += run;
1725         } else {
1726             /* No match, output a literal byte */
1727             Tracevv((stderr,"%c", s->window[s->strstart]));
1728             _tr_tally_lit (s, s->window[s->strstart], bflush);
1729             s->lookahead--;
1730             s->strstart++;
1731         }
1732         if (bflush) FLUSH_BLOCK(s, 0);
1733     }
1734     FLUSH_BLOCK(s, flush == Z_FINISH);
1735     return flush == Z_FINISH ? finish_done : block_done;
1736 }
1737 #endif