Coverage Report

Created: 2026-02-26 06:40

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/zlib/deflate.c
Line
Count
Source
1
/* deflate.c -- compress data using the deflation algorithm
2
 * Copyright (C) 1995-2026 Jean-loup Gailly and Mark Adler
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 at https://datatracker.ietf.org/doc/html/rfc1951
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$ */
51
52
#include "deflate.h"
53
54
const char deflate_copyright[] =
55
   " deflate 1.3.2.1 Copyright 1995-2026 Jean-loup Gailly and Mark Adler ";
56
/*
57
  If you use the zlib library in a product, an acknowledgment is welcome
58
  in the documentation of your product. If for some reason you cannot
59
  include such an acknowledgment, I would appreciate that you keep this
60
  copyright string in the executable of your product.
61
 */
62
63
typedef enum {
64
    need_more,      /* block not completed, need more input or more output */
65
    block_done,     /* block flush performed */
66
    finish_started, /* finish started, need only more output at next deflate */
67
    finish_done     /* finish done, accept no more input or output */
68
} block_state;
69
70
typedef block_state (*compress_func)(deflate_state *s, int flush);
71
/* Compression function. Returns the block state after the call. */
72
73
local block_state deflate_stored(deflate_state *s, int flush);
74
local block_state deflate_fast(deflate_state *s, int flush);
75
#ifndef FASTEST
76
local block_state deflate_slow(deflate_state *s, int flush);
77
#endif
78
local block_state deflate_rle(deflate_state *s, int flush);
79
local block_state deflate_huff(deflate_state *s, int flush);
80
81
/* ===========================================================================
82
 * Local data
83
 */
84
85
29.2G
#define NIL 0
86
/* Tail of hash chains */
87
88
#ifndef TOO_FAR
89
629M
#  define TOO_FAR 4096
90
#endif
91
/* Matches of length 3 are discarded if their distance exceeds TOO_FAR */
92
93
/* Values for max_lazy_match, good_match and max_chain_length, depending on
94
 * the desired pack level (0..9). The values given below have been tuned to
95
 * exclude worst case performance for pathological files. Better values may be
96
 * found for specific files.
97
 */
98
typedef struct config_s {
99
   ush good_length; /* reduce lazy search above this match length */
100
   ush max_lazy;    /* do not perform lazy search above this match length */
101
   ush nice_length; /* quit search above this match length */
102
   ush max_chain;
103
   compress_func func;
104
} config;
105
106
#ifdef FASTEST
107
local const config configuration_table[2] = {
108
/*      good lazy nice chain */
109
/* 0 */ {0,    0,  0,    0, deflate_stored},  /* store only */
110
/* 1 */ {4,    4,  8,    4, deflate_fast}}; /* max speed, no lazy matches */
111
#else
112
local const config configuration_table[10] = {
113
/*      good lazy nice chain */
114
/* 0 */ {0,    0,  0,    0, deflate_stored},  /* store only */
115
/* 1 */ {4,    4,  8,    4, deflate_fast}, /* max speed, no lazy matches */
116
/* 2 */ {4,    5, 16,    8, deflate_fast},
117
/* 3 */ {4,    6, 32,   32, deflate_fast},
118
119
/* 4 */ {4,    4, 16,   16, deflate_slow},  /* lazy matches */
120
/* 5 */ {8,   16, 32,   32, deflate_slow},
121
/* 6 */ {8,   16, 128, 128, deflate_slow},
122
/* 7 */ {8,   32, 128, 256, deflate_slow},
123
/* 8 */ {32, 128, 258, 1024, deflate_slow},
124
/* 9 */ {32, 258, 258, 4096, deflate_slow}}; /* max compression */
125
#endif
126
127
/* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
128
 * For deflate_fast() (levels <= 3) good is ignored and lazy has a different
129
 * meaning.
130
 */
131
132
/* rank Z_BLOCK between Z_NO_FLUSH and Z_PARTIAL_FLUSH */
133
60.4M
#define RANK(f) (((f) * 2) - ((f) > 4 ? 9 : 0))
134
135
/* ===========================================================================
136
 * Update a hash value with the given input byte
137
 * IN  assertion: all calls to UPDATE_HASH are made with consecutive input
138
 *    characters, so that a running hash key can be computed from the previous
139
 *    key instead of complete recalculation each time.
140
 */
141
17.7G
#define UPDATE_HASH(s,h,c) (h = (((h) << s->hash_shift) ^ (c)) & s->hash_mask)
142
143
144
/* ===========================================================================
145
 * Insert string str in the dictionary and set match_head to the previous head
146
 * of the hash chain (the most recent string with same hash key). Return
147
 * the previous length of the hash chain.
148
 * If this file is compiled with -DFASTEST, the compression level is forced
149
 * to 1, and no hash chains are maintained.
150
 * IN  assertion: all calls to INSERT_STRING are made with consecutive input
151
 *    characters and the first MIN_MATCH bytes of str are valid (except for
152
 *    the last MIN_MATCH-1 bytes of the input file).
153
 */
154
#ifdef FASTEST
155
#define INSERT_STRING(s, str, match_head) \
156
   (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
157
    match_head = s->head[s->ins_h], \
158
    s->head[s->ins_h] = (Pos)(str))
159
#else
160
#define INSERT_STRING(s, str, match_head) \
161
17.6G
   (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
162
17.6G
    match_head = s->prev[(str) & s->w_mask] = s->head[s->ins_h], \
163
17.6G
    s->head[s->ins_h] = (Pos)(str))
164
#endif
165
166
/* ===========================================================================
167
 * Initialize the hash table (avoiding 64K overflow for 16 bit systems).
168
 * prev[] will be initialized on the fly.
169
 */
170
#define CLEAR_HASH(s) \
171
223k
    do { \
172
223k
        s->head[s->hash_size - 1] = NIL; \
173
223k
        zmemzero(s->head, (unsigned)(s->hash_size - 1)*sizeof(*s->head)); \
174
223k
        s->slid = 0; \
175
223k
    } while (0)
176
177
/* ===========================================================================
178
 * Slide the hash table when sliding the window down (could be avoided with 32
179
 * bit values at the expense of memory usage). We slide even when level == 0 to
180
 * keep the hash table consistent if we switch back to level > 0 later.
181
 */
182
#if defined(__has_feature)
183
#  if __has_feature(memory_sanitizer)
184
     __attribute__((no_sanitize("memory")))
185
#  endif
186
#endif
187
514k
local void slide_hash(deflate_state *s) {
188
514k
    unsigned n, m;
189
514k
    Posf *p;
190
514k
    uInt wsize = s->w_size;
191
192
514k
    n = s->hash_size;
193
514k
    p = &s->head[n];
194
16.8G
    do {
195
16.8G
        m = *--p;
196
16.8G
        *p = (Pos)(m >= wsize ? m - wsize : NIL);
197
16.8G
    } while (--n);
198
514k
#ifndef FASTEST
199
514k
    n = wsize;
200
514k
    p = &s->prev[n];
201
16.8G
    do {
202
16.8G
        m = *--p;
203
16.8G
        *p = (Pos)(m >= wsize ? m - wsize : NIL);
204
        /* If n is not on any hash chain, prev[n] is garbage but
205
         * its value will never be used.
206
         */
207
16.8G
    } while (--n);
208
514k
#endif
209
514k
    s->slid = 1;
210
514k
}
211
212
/* ===========================================================================
213
 * Read a new buffer from the current input stream, update the adler32
214
 * and total number of bytes read.  All deflate() input goes through
215
 * this function so some applications may wish to modify it to avoid
216
 * allocating a large strm->next_in buffer and copying from it.
217
 * (See also flush_pending()).
218
 */
219
60.2M
local unsigned read_buf(z_streamp strm, Bytef *buf, unsigned size) {
220
60.2M
    unsigned len = strm->avail_in;
221
222
60.2M
    if (len > size) len = size;
223
60.2M
    if (len == 0) return 0;
224
225
60.2M
    strm->avail_in  -= len;
226
227
60.2M
    zmemcpy(buf, strm->next_in, len);
228
60.2M
    if (strm->state->wrap == 1) {
229
60.2M
        strm->adler = adler32(strm->adler, buf, len);
230
60.2M
    }
231
0
#ifdef GZIP
232
0
    else if (strm->state->wrap == 2) {
233
0
        strm->adler = crc32(strm->adler, buf, len);
234
0
    }
235
60.2M
#endif
236
60.2M
    strm->next_in  += len;
237
60.2M
    strm->total_in += len;
238
239
60.2M
    return len;
240
60.2M
}
241
242
/* ===========================================================================
243
 * Fill the window when the lookahead becomes insufficient.
244
 * Updates strstart and lookahead.
245
 *
246
 * IN assertion: lookahead < MIN_LOOKAHEAD
247
 * OUT assertions: strstart <= window_size-MIN_LOOKAHEAD
248
 *    At least one byte has been read, or avail_in == 0; reads are
249
 *    performed for at least two bytes (required for the zip translate_eol
250
 *    option -- not supported here).
251
 */
252
112M
local void fill_window(deflate_state *s) {
253
112M
    unsigned n;
254
112M
    unsigned more;    /* Amount of free space at the end of the window. */
255
112M
    uInt wsize = s->w_size;
256
257
112M
    Assert(s->lookahead < MIN_LOOKAHEAD, "already enough lookahead");
258
259
112M
    do {
260
112M
        more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
261
262
        /* Deal with !@#$% 64K limit: */
263
#ifdef _MSC_VER
264
#pragma warning(push)
265
#pragma warning(disable: 4127)
266
#endif
267
112M
        if (sizeof(int) <= 2) {
268
#ifdef _MSC_VER
269
#pragma warning(pop)
270
#endif
271
0
            if (more == 0 && s->strstart == 0 && s->lookahead == 0) {
272
0
                more = wsize;
273
274
0
            } else if (more == (unsigned)(-1)) {
275
                /* Very unlikely, but possible on 16 bit machine if
276
                 * strstart == 0 && lookahead == 1 (input done a byte at time)
277
                 */
278
0
                more--;
279
0
            }
280
0
        }
281
282
        /* If the window is almost full and there is insufficient lookahead,
283
         * move the upper half to the lower one to make room in the upper half.
284
         */
285
112M
        if (s->strstart >= wsize + MAX_DIST(s)) {
286
287
514k
            zmemcpy(s->window, s->window + wsize, (unsigned)wsize - more);
288
514k
            s->match_start -= wsize;
289
514k
            s->strstart    -= wsize; /* we now have strstart >= MAX_DIST */
290
514k
            s->block_start -= (long) wsize;
291
514k
            if (s->insert > s->strstart)
292
0
                s->insert = s->strstart;
293
514k
            slide_hash(s);
294
514k
            more += wsize;
295
514k
        }
296
112M
        if (s->strm->avail_in == 0) break;
297
298
        /* If there was no sliding:
299
         *    strstart <= WSIZE+MAX_DIST-1 && lookahead <= MIN_LOOKAHEAD - 1 &&
300
         *    more == window_size - lookahead - strstart
301
         * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1)
302
         * => more >= window_size - 2*WSIZE + 2
303
         * In the BIG_MEM or MMAP case (not yet supported),
304
         *   window_size == input_size + MIN_LOOKAHEAD  &&
305
         *   strstart + s->lookahead <= input_size => more >= MIN_LOOKAHEAD.
306
         * Otherwise, window_size == 2*WSIZE so more >= 2.
307
         * If there was sliding, more >= WSIZE. So in all cases, more >= 2.
308
         */
309
60.2M
        Assert(more >= 2, "more < 2");
310
311
60.2M
        n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more);
312
60.2M
        s->lookahead += n;
313
314
        /* Initialize the hash value now that we have some input: */
315
60.2M
        if (s->lookahead + s->insert >= MIN_MATCH) {
316
60.2M
            uInt str = s->strstart - s->insert;
317
60.2M
            s->ins_h = s->window[str];
318
60.2M
            UPDATE_HASH(s, s->ins_h, s->window[str + 1]);
319
#if MIN_MATCH != 3
320
            Call UPDATE_HASH() MIN_MATCH-3 more times
321
#endif
322
60.2M
            while (s->insert) {
323
0
                UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]);
324
0
#ifndef FASTEST
325
0
                s->prev[str & s->w_mask] = s->head[s->ins_h];
326
0
#endif
327
0
                s->head[s->ins_h] = (Pos)str;
328
0
                str++;
329
0
                s->insert--;
330
0
                if (s->lookahead + s->insert < MIN_MATCH)
331
0
                    break;
332
0
            }
333
60.2M
        }
334
        /* If the whole input has less than MIN_MATCH bytes, ins_h is garbage,
335
         * but this is not important since only literal bytes will be emitted.
336
         */
337
338
60.2M
    } while (s->lookahead < MIN_LOOKAHEAD && s->strm->avail_in != 0);
339
340
    /* If the WIN_INIT bytes after the end of the current data have never been
341
     * written, then zero those bytes in order to avoid memory check reports of
342
     * the use of uninitialized (or uninitialised as Julian writes) bytes by
343
     * the longest match routines.  Update the high water mark for the next
344
     * time through here.  WIN_INIT is set to MAX_MATCH since the longest match
345
     * routines allow scanning to strstart + MAX_MATCH, ignoring lookahead.
346
     */
347
112M
    if (s->high_water < s->window_size) {
348
26.8M
        ulg curr = s->strstart + (ulg)(s->lookahead);
349
26.8M
        ulg init;
350
351
26.8M
        if (s->high_water < curr) {
352
            /* Previous high water mark below current data -- zero WIN_INIT
353
             * bytes or up to end of window, whichever is less.
354
             */
355
960k
            init = s->window_size - curr;
356
960k
            if (init > WIN_INIT)
357
949k
                init = WIN_INIT;
358
960k
            zmemzero(s->window + curr, (unsigned)init);
359
960k
            s->high_water = curr + init;
360
960k
        }
361
25.9M
        else if (s->high_water < (ulg)curr + WIN_INIT) {
362
            /* High water mark at or above current data, but below current data
363
             * plus WIN_INIT -- zero out to current data plus WIN_INIT, or up
364
             * to end of window, whichever is less.
365
             */
366
6.82M
            init = (ulg)curr + WIN_INIT - s->high_water;
367
6.82M
            if (init > s->window_size - s->high_water)
368
2.20k
                init = s->window_size - s->high_water;
369
6.82M
            zmemzero(s->window + s->high_water, (unsigned)init);
370
6.82M
            s->high_water += init;
371
6.82M
        }
372
26.8M
    }
373
374
112M
    Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD,
375
112M
           "not enough room for search");
376
112M
}
377
378
/* ========================================================================= */
379
int ZEXPORT deflateInit_(z_streamp strm, int level, const char *version,
380
223k
                         int stream_size) {
381
223k
    return deflateInit2_(strm, level, Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL,
382
223k
                         Z_DEFAULT_STRATEGY, version, stream_size);
383
    /* To do: ignore strm->next_in if we use it as window */
384
223k
}
385
386
/* ========================================================================= */
387
int ZEXPORT deflateInit2_(z_streamp strm, int level, int method,
388
                          int windowBits, int memLevel, int strategy,
389
223k
                          const char *version, int stream_size) {
390
223k
    deflate_state *s;
391
223k
    int wrap = 1;
392
223k
    static const char my_version[] = ZLIB_VERSION;
393
394
223k
    if (version == Z_NULL || version[0] != my_version[0] ||
395
223k
        stream_size != sizeof(z_stream)) {
396
0
        return Z_VERSION_ERROR;
397
0
    }
398
223k
    if (strm == Z_NULL) return Z_STREAM_ERROR;
399
400
223k
    strm->msg = Z_NULL;
401
223k
    if (strm->zalloc == (alloc_func)0) {
402
#ifdef Z_SOLO
403
        return Z_STREAM_ERROR;
404
#else
405
223k
        strm->zalloc = zcalloc;
406
223k
        strm->opaque = (voidpf)0;
407
223k
#endif
408
223k
    }
409
223k
    if (strm->zfree == (free_func)0)
410
#ifdef Z_SOLO
411
        return Z_STREAM_ERROR;
412
#else
413
223k
        strm->zfree = zcfree;
414
223k
#endif
415
416
#ifdef FASTEST
417
    if (level != 0) level = 1;
418
#else
419
223k
    if (level == Z_DEFAULT_COMPRESSION) level = 6;
420
223k
#endif
421
422
223k
    if (windowBits < 0) { /* suppress zlib wrapper */
423
0
        wrap = 0;
424
0
        if (windowBits < -15)
425
0
            return Z_STREAM_ERROR;
426
0
        windowBits = -windowBits;
427
0
    }
428
223k
#ifdef GZIP
429
223k
    else if (windowBits > 15) {
430
0
        wrap = 2;       /* write gzip wrapper instead */
431
0
        windowBits -= 16;
432
0
    }
433
223k
#endif
434
223k
    if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method != Z_DEFLATED ||
435
223k
        windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
436
223k
        strategy < 0 || strategy > Z_FIXED || (windowBits == 8 && wrap != 1)) {
437
0
        return Z_STREAM_ERROR;
438
0
    }
439
223k
    if (windowBits == 8) windowBits = 9;  /* until 256-byte window bug fixed */
440
223k
    s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state));
441
223k
    if (s == Z_NULL) return Z_MEM_ERROR;
442
223k
    zmemzero(s, sizeof(deflate_state));
443
223k
    strm->state = (struct internal_state FAR *)s;
444
223k
    s->strm = strm;
445
223k
    s->status = INIT_STATE;     /* to pass state test in deflateReset() */
446
447
223k
    s->wrap = wrap;
448
223k
    s->gzhead = Z_NULL;
449
223k
    s->w_bits = (uInt)windowBits;
450
223k
    s->w_size = 1 << s->w_bits;
451
223k
    s->w_mask = s->w_size - 1;
452
453
223k
    s->hash_bits = (uInt)memLevel + 7;
454
223k
    s->hash_size = 1 << s->hash_bits;
455
223k
    s->hash_mask = s->hash_size - 1;
456
223k
    s->hash_shift =  ((s->hash_bits + MIN_MATCH-1) / MIN_MATCH);
457
458
223k
    s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
459
223k
    s->prev   = (Posf *)  ZALLOC(strm, s->w_size, sizeof(Pos));
460
223k
    s->head   = (Posf *)  ZALLOC(strm, s->hash_size, sizeof(Pos));
461
462
223k
    s->high_water = 0;      /* nothing written to s->window yet */
463
464
223k
    s->lit_bufsize = 1 << (memLevel + 6); /* 16K elements by default */
465
466
    /* We overlay pending_buf and sym_buf. This works since the average size
467
     * for length/distance pairs over any compressed block is assured to be 31
468
     * bits or less.
469
     *
470
     * Analysis: The longest fixed codes are a length code of 8 bits plus 5
471
     * extra bits, for lengths 131 to 257. The longest fixed distance codes are
472
     * 5 bits plus 13 extra bits, for distances 16385 to 32768. The longest
473
     * possible fixed-codes length/distance pair is then 31 bits total.
474
     *
475
     * sym_buf starts one-fourth of the way into pending_buf. So there are
476
     * three bytes in sym_buf for every four bytes in pending_buf. Each symbol
477
     * in sym_buf is three bytes -- two for the distance and one for the
478
     * literal/length. As each symbol is consumed, the pointer to the next
479
     * sym_buf value to read moves forward three bytes. From that symbol, up to
480
     * 31 bits are written to pending_buf. The closest the written pending_buf
481
     * bits gets to the next sym_buf symbol to read is just before the last
482
     * code is written. At that time, 31*(n - 2) bits have been written, just
483
     * after 24*(n - 2) bits have been consumed from sym_buf. sym_buf starts at
484
     * 8*n bits into pending_buf. (Note that the symbol buffer fills when n - 1
485
     * symbols are written.) The closest the writing gets to what is unread is
486
     * then n + 14 bits. Here n is lit_bufsize, which is 16384 by default, and
487
     * can range from 128 to 32768.
488
     *
489
     * Therefore, at a minimum, there are 142 bits of space between what is
490
     * written and what is read in the overlain buffers, so the symbols cannot
491
     * be overwritten by the compressed data. That space is actually 139 bits,
492
     * due to the three-bit fixed-code block header.
493
     *
494
     * That covers the case where either Z_FIXED is specified, forcing fixed
495
     * codes, or when the use of fixed codes is chosen, because that choice
496
     * results in a smaller compressed block than dynamic codes. That latter
497
     * condition then assures that the above analysis also covers all dynamic
498
     * blocks. A dynamic-code block will only be chosen to be emitted if it has
499
     * fewer bits than a fixed-code block would for the same set of symbols.
500
     * Therefore its average symbol length is assured to be less than 31. So
501
     * the compressed data for a dynamic block also cannot overwrite the
502
     * symbols from which it is being constructed.
503
     */
504
505
223k
    s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, LIT_BUFS);
506
223k
    s->pending_buf_size = (ulg)s->lit_bufsize * 4;
507
508
223k
    if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
509
223k
        s->pending_buf == Z_NULL) {
510
0
        s->status = FINISH_STATE;
511
0
        strm->msg = ERR_MSG(Z_MEM_ERROR);
512
0
        deflateEnd (strm);
513
0
        return Z_MEM_ERROR;
514
0
    }
515
#ifdef LIT_MEM
516
    s->d_buf = (ushf *)(s->pending_buf + (s->lit_bufsize << 1));
517
    s->l_buf = s->pending_buf + (s->lit_bufsize << 2);
518
    s->sym_end = s->lit_bufsize - 1;
519
#else
520
223k
    s->sym_buf = s->pending_buf + s->lit_bufsize;
521
223k
    s->sym_end = (s->lit_bufsize - 1) * 3;
522
223k
#endif
523
    /* We avoid equality with lit_bufsize*3 because of wraparound at 64K
524
     * on 16 bit machines and because stored blocks are restricted to
525
     * 64K-1 bytes.
526
     */
527
528
223k
    s->level = level;
529
223k
    s->strategy = strategy;
530
223k
    s->method = (Byte)method;
531
532
223k
    return deflateReset(strm);
533
223k
}
534
535
/* =========================================================================
536
 * Check for a valid deflate stream state. Return 0 if ok, 1 if not.
537
 */
538
60.5M
local int deflateStateCheck(z_streamp strm) {
539
60.5M
    deflate_state *s;
540
60.5M
    if (strm == Z_NULL ||
541
60.5M
        strm->zalloc == (alloc_func)0 || strm->zfree == (free_func)0)
542
0
        return 1;
543
60.5M
    s = strm->state;
544
60.5M
    if (s == Z_NULL || s->strm != strm || (s->status != INIT_STATE &&
545
60.0M
#ifdef GZIP
546
60.0M
                                           s->status != GZIP_STATE &&
547
60.0M
#endif
548
60.0M
                                           s->status != EXTRA_STATE &&
549
60.0M
                                           s->status != NAME_STATE &&
550
60.0M
                                           s->status != COMMENT_STATE &&
551
60.0M
                                           s->status != HCRC_STATE &&
552
60.0M
                                           s->status != BUSY_STATE &&
553
217k
                                           s->status != FINISH_STATE))
554
0
        return 1;
555
60.5M
    return 0;
556
60.5M
}
557
558
/* ========================================================================= */
559
int ZEXPORT deflateSetDictionary(z_streamp strm, const Bytef *dictionary,
560
0
                                 uInt  dictLength) {
561
0
    deflate_state *s;
562
0
    uInt str, n;
563
0
    int wrap;
564
0
    unsigned avail;
565
0
    z_const unsigned char *next;
566
567
0
    if (deflateStateCheck(strm) || dictionary == Z_NULL)
568
0
        return Z_STREAM_ERROR;
569
0
    s = strm->state;
570
0
    wrap = s->wrap;
571
0
    if (wrap == 2 || (wrap == 1 && s->status != INIT_STATE) || s->lookahead)
572
0
        return Z_STREAM_ERROR;
573
574
    /* when using zlib wrappers, compute Adler-32 for provided dictionary */
575
0
    if (wrap == 1)
576
0
        strm->adler = adler32(strm->adler, dictionary, dictLength);
577
0
    s->wrap = 0;                    /* avoid computing Adler-32 in read_buf */
578
579
    /* if dictionary would fill window, just replace the history */
580
0
    if (dictLength >= s->w_size) {
581
0
        if (wrap == 0) {            /* already empty otherwise */
582
0
            CLEAR_HASH(s);
583
0
            s->strstart = 0;
584
0
            s->block_start = 0L;
585
0
            s->insert = 0;
586
0
        }
587
0
        dictionary += dictLength - s->w_size;  /* use the tail */
588
0
        dictLength = s->w_size;
589
0
    }
590
591
    /* insert dictionary into window and hash */
592
0
    avail = strm->avail_in;
593
0
    next = strm->next_in;
594
0
    strm->avail_in = dictLength;
595
0
    strm->next_in = (z_const Bytef *)dictionary;
596
0
    fill_window(s);
597
0
    while (s->lookahead >= MIN_MATCH) {
598
0
        str = s->strstart;
599
0
        n = s->lookahead - (MIN_MATCH-1);
600
0
        do {
601
0
            UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]);
602
0
#ifndef FASTEST
603
0
            s->prev[str & s->w_mask] = s->head[s->ins_h];
604
0
#endif
605
0
            s->head[s->ins_h] = (Pos)str;
606
0
            str++;
607
0
        } while (--n);
608
0
        s->strstart = str;
609
0
        s->lookahead = MIN_MATCH-1;
610
0
        fill_window(s);
611
0
    }
612
0
    s->strstart += s->lookahead;
613
0
    s->block_start = (long)s->strstart;
614
0
    s->insert = s->lookahead;
615
0
    s->lookahead = 0;
616
0
    s->match_length = s->prev_length = MIN_MATCH-1;
617
0
    s->match_available = 0;
618
0
    strm->next_in = next;
619
0
    strm->avail_in = avail;
620
0
    s->wrap = wrap;
621
0
    return Z_OK;
622
0
}
623
624
/* ========================================================================= */
625
int ZEXPORT deflateGetDictionary(z_streamp strm, Bytef *dictionary,
626
0
                                 uInt *dictLength) {
627
0
    deflate_state *s;
628
0
    uInt len;
629
630
0
    if (deflateStateCheck(strm))
631
0
        return Z_STREAM_ERROR;
632
0
    s = strm->state;
633
0
    len = s->strstart + s->lookahead;
634
0
    if (len > s->w_size)
635
0
        len = s->w_size;
636
0
    if (dictionary != Z_NULL && len)
637
0
        zmemcpy(dictionary, s->window + s->strstart + s->lookahead - len, len);
638
0
    if (dictLength != Z_NULL)
639
0
        *dictLength = len;
640
0
    return Z_OK;
641
0
}
642
643
/* ========================================================================= */
644
223k
int ZEXPORT deflateResetKeep(z_streamp strm) {
645
223k
    deflate_state *s;
646
647
223k
    if (deflateStateCheck(strm)) {
648
0
        return Z_STREAM_ERROR;
649
0
    }
650
651
223k
    strm->total_in = strm->total_out = 0;
652
223k
    strm->msg = Z_NULL; /* use zfree if we ever allocate msg dynamically */
653
223k
    strm->data_type = Z_UNKNOWN;
654
655
223k
    s = (deflate_state *)strm->state;
656
223k
    s->pending = 0;
657
223k
    s->pending_out = s->pending_buf;
658
659
223k
    if (s->wrap < 0) {
660
0
        s->wrap = -s->wrap; /* was made negative by deflate(..., Z_FINISH); */
661
0
    }
662
223k
    s->status =
663
223k
#ifdef GZIP
664
223k
        s->wrap == 2 ? GZIP_STATE :
665
223k
#endif
666
223k
        INIT_STATE;
667
223k
    strm->adler =
668
223k
#ifdef GZIP
669
223k
        s->wrap == 2 ? crc32(0L, Z_NULL, 0) :
670
223k
#endif
671
223k
        adler32(0L, Z_NULL, 0);
672
223k
    s->last_flush = -2;
673
674
223k
    _tr_init(s);
675
676
223k
    return Z_OK;
677
223k
}
678
679
/* ===========================================================================
680
 * Initialize the "longest match" routines for a new zlib stream
681
 */
682
223k
local void lm_init(deflate_state *s) {
683
223k
    s->window_size = (ulg)2L*s->w_size;
684
685
223k
    CLEAR_HASH(s);
686
687
    /* Set the default configuration parameters:
688
     */
689
223k
    s->max_lazy_match   = configuration_table[s->level].max_lazy;
690
223k
    s->good_match       = configuration_table[s->level].good_length;
691
223k
    s->nice_match       = configuration_table[s->level].nice_length;
692
223k
    s->max_chain_length = configuration_table[s->level].max_chain;
693
694
223k
    s->strstart = 0;
695
223k
    s->block_start = 0L;
696
223k
    s->lookahead = 0;
697
223k
    s->insert = 0;
698
223k
    s->match_length = s->prev_length = MIN_MATCH-1;
699
223k
    s->match_available = 0;
700
223k
    s->ins_h = 0;
701
223k
}
702
703
/* ========================================================================= */
704
223k
int ZEXPORT deflateReset(z_streamp strm) {
705
223k
    int ret;
706
707
223k
    ret = deflateResetKeep(strm);
708
223k
    if (ret == Z_OK)
709
223k
        lm_init(strm->state);
710
223k
    return ret;
711
223k
}
712
713
/* ========================================================================= */
714
0
int ZEXPORT deflateSetHeader(z_streamp strm, gz_headerp head) {
715
0
    if (deflateStateCheck(strm) || strm->state->wrap != 2)
716
0
        return Z_STREAM_ERROR;
717
0
    strm->state->gzhead = head;
718
0
    return Z_OK;
719
0
}
720
721
/* ========================================================================= */
722
0
int ZEXPORT deflatePending(z_streamp strm, unsigned *pending, int *bits) {
723
0
    if (deflateStateCheck(strm)) return Z_STREAM_ERROR;
724
0
    if (bits != Z_NULL)
725
0
        *bits = strm->state->bi_valid;
726
0
    if (pending != Z_NULL) {
727
0
        *pending = (unsigned)strm->state->pending;
728
0
        if (*pending != strm->state->pending) {
729
0
            *pending = (unsigned)-1;
730
0
            return Z_BUF_ERROR;
731
0
        }
732
0
    }
733
0
    return Z_OK;
734
0
}
735
736
/* ========================================================================= */
737
0
int ZEXPORT deflateUsed(z_streamp strm, int *bits) {
738
0
    if (deflateStateCheck(strm)) return Z_STREAM_ERROR;
739
0
    if (bits != Z_NULL)
740
0
        *bits = strm->state->bi_used;
741
0
    return Z_OK;
742
0
}
743
744
/* ========================================================================= */
745
0
int ZEXPORT deflatePrime(z_streamp strm, int bits, int value) {
746
0
    deflate_state *s;
747
0
    int put;
748
749
0
    if (deflateStateCheck(strm)) return Z_STREAM_ERROR;
750
0
    s = strm->state;
751
#ifdef LIT_MEM
752
    if (bits < 0 || bits > 16 ||
753
        (uchf *)s->d_buf < s->pending_out + ((Buf_size + 7) >> 3))
754
        return Z_BUF_ERROR;
755
#else
756
0
    if (bits < 0 || bits > 16 ||
757
0
        s->sym_buf < s->pending_out + ((Buf_size + 7) >> 3))
758
0
        return Z_BUF_ERROR;
759
0
#endif
760
0
    do {
761
0
        put = Buf_size - s->bi_valid;
762
0
        if (put > bits)
763
0
            put = bits;
764
0
        s->bi_buf |= (ush)((value & ((1 << put) - 1)) << s->bi_valid);
765
0
        s->bi_valid += put;
766
0
        _tr_flush_bits(s);
767
0
        value >>= put;
768
0
        bits -= put;
769
0
    } while (bits);
770
0
    return Z_OK;
771
0
}
772
773
/* ========================================================================= */
774
0
int ZEXPORT deflateParams(z_streamp strm, int level, int strategy) {
775
0
    deflate_state *s;
776
0
    compress_func func;
777
778
0
    if (deflateStateCheck(strm)) return Z_STREAM_ERROR;
779
0
    s = strm->state;
780
781
#ifdef FASTEST
782
    if (level != 0) level = 1;
783
#else
784
0
    if (level == Z_DEFAULT_COMPRESSION) level = 6;
785
0
#endif
786
0
    if (level < 0 || level > 9 || strategy < 0 || strategy > Z_FIXED) {
787
0
        return Z_STREAM_ERROR;
788
0
    }
789
0
    func = configuration_table[s->level].func;
790
791
0
    if ((strategy != s->strategy || func != configuration_table[level].func) &&
792
0
        s->last_flush != -2) {
793
        /* Flush the last buffer: */
794
0
        int err = deflate(strm, Z_BLOCK);
795
0
        if (err == Z_STREAM_ERROR)
796
0
            return err;
797
0
        if (strm->avail_in || (s->strstart - s->block_start) + s->lookahead)
798
0
            return Z_BUF_ERROR;
799
0
    }
800
0
    if (s->level != level) {
801
0
        if (s->level == 0 && s->matches != 0) {
802
0
            if (s->matches == 1)
803
0
                slide_hash(s);
804
0
            else
805
0
                CLEAR_HASH(s);
806
0
            s->matches = 0;
807
0
        }
808
0
        s->level = level;
809
0
        s->max_lazy_match   = configuration_table[level].max_lazy;
810
0
        s->good_match       = configuration_table[level].good_length;
811
0
        s->nice_match       = configuration_table[level].nice_length;
812
0
        s->max_chain_length = configuration_table[level].max_chain;
813
0
    }
814
0
    s->strategy = strategy;
815
0
    return Z_OK;
816
0
}
817
818
/* ========================================================================= */
819
int ZEXPORT deflateTune(z_streamp strm, int good_length, int max_lazy,
820
0
                        int nice_length, int max_chain) {
821
0
    deflate_state *s;
822
823
0
    if (deflateStateCheck(strm)) return Z_STREAM_ERROR;
824
0
    s = strm->state;
825
0
    s->good_match = (uInt)good_length;
826
0
    s->max_lazy_match = (uInt)max_lazy;
827
0
    s->nice_match = nice_length;
828
0
    s->max_chain_length = (uInt)max_chain;
829
0
    return Z_OK;
830
0
}
831
832
/* =========================================================================
833
 * For the default windowBits of 15 and memLevel of 8, this function returns a
834
 * close to exact, as well as small, upper bound on the compressed size. This
835
 * is an expansion of ~0.03%, plus a small constant.
836
 *
837
 * For any setting other than those defaults for windowBits and memLevel, one
838
 * of two worst case bounds is returned. This is at most an expansion of ~4% or
839
 * ~13%, plus a small constant.
840
 *
841
 * Both the 0.03% and 4% derive from the overhead of stored blocks. The first
842
 * one is for stored blocks of 16383 bytes (memLevel == 8), whereas the second
843
 * is for stored blocks of 127 bytes (the worst case memLevel == 1). The
844
 * expansion results from five bytes of header for each stored block.
845
 *
846
 * The larger expansion of 13% results from a window size less than or equal to
847
 * the symbols buffer size (windowBits <= memLevel + 7). In that case some of
848
 * the data being compressed may have slid out of the sliding window, impeding
849
 * a stored block from being emitted. Then the only choice is a fixed or
850
 * dynamic block, where a fixed block limits the maximum expansion to 9 bits
851
 * per 8-bit byte, plus 10 bits for every block. The smallest block size for
852
 * which this can occur is 255 (memLevel == 2).
853
 *
854
 * Shifts are used to approximate divisions, for speed.
855
 */
856
0
z_size_t ZEXPORT deflateBound_z(z_streamp strm, z_size_t sourceLen) {
857
0
    deflate_state *s;
858
0
    z_size_t fixedlen, storelen, wraplen, bound;
859
860
    /* upper bound for fixed blocks with 9-bit literals and length 255
861
       (memLevel == 2, which is the lowest that may not use stored blocks) --
862
       ~13% overhead plus a small constant */
863
0
    fixedlen = sourceLen + (sourceLen >> 3) + (sourceLen >> 8) +
864
0
               (sourceLen >> 9) + 4;
865
0
    if (fixedlen < sourceLen)
866
0
        fixedlen = (z_size_t)-1;
867
868
    /* upper bound for stored blocks with length 127 (memLevel == 1) --
869
       ~4% overhead plus a small constant */
870
0
    storelen = sourceLen + (sourceLen >> 5) + (sourceLen >> 7) +
871
0
               (sourceLen >> 11) + 7;
872
0
    if (storelen < sourceLen)
873
0
        storelen = (z_size_t)-1;
874
875
    /* if can't get parameters, return larger bound plus a wrapper */
876
0
    if (deflateStateCheck(strm)) {
877
0
        bound = fixedlen > storelen ? fixedlen : storelen;
878
0
        return bound + 18 < bound ? (z_size_t)-1 : bound + 18;
879
0
    }
880
881
    /* compute wrapper length */
882
0
    s = strm->state;
883
0
    switch (s->wrap < 0 ? -s->wrap : s->wrap) {
884
0
    case 0:                                 /* raw deflate */
885
0
        wraplen = 0;
886
0
        break;
887
0
    case 1:                                 /* zlib wrapper */
888
0
        wraplen = 6 + (s->strstart ? 4 : 0);
889
0
        break;
890
0
#ifdef GZIP
891
0
    case 2:                                 /* gzip wrapper */
892
0
        wraplen = 18;
893
0
        if (s->gzhead != Z_NULL) {          /* user-supplied gzip header */
894
0
            Bytef *str;
895
0
            if (s->gzhead->extra != Z_NULL)
896
0
                wraplen += 2 + s->gzhead->extra_len;
897
0
            str = s->gzhead->name;
898
0
            if (str != Z_NULL)
899
0
                do {
900
0
                    wraplen++;
901
0
                } while (*str++);
902
0
            str = s->gzhead->comment;
903
0
            if (str != Z_NULL)
904
0
                do {
905
0
                    wraplen++;
906
0
                } while (*str++);
907
0
            if (s->gzhead->hcrc)
908
0
                wraplen += 2;
909
0
        }
910
0
        break;
911
0
#endif
912
0
    default:                                /* for compiler happiness */
913
0
        wraplen = 18;
914
0
    }
915
916
    /* if not default parameters, return one of the conservative bounds */
917
0
    if (s->w_bits != 15 || s->hash_bits != 8 + 7) {
918
0
        bound = s->w_bits <= s->hash_bits && s->level ? fixedlen :
919
0
                                                        storelen;
920
0
        return bound + wraplen < bound ? (z_size_t)-1 : bound + wraplen;
921
0
    }
922
923
    /* default settings: return tight bound for that case -- ~0.03% overhead
924
       plus a small constant */
925
0
    bound = sourceLen + (sourceLen >> 12) + (sourceLen >> 14) +
926
0
            (sourceLen >> 25) + 13 - 6 + wraplen;
927
0
    return bound < sourceLen ? (z_size_t)-1 : bound;
928
0
}
929
0
uLong ZEXPORT deflateBound(z_streamp strm, uLong sourceLen) {
930
0
    z_size_t bound = deflateBound_z(strm, sourceLen);
931
0
    return (uLong)bound != bound ? (uLong)-1 : (uLong)bound;
932
0
}
933
934
/* =========================================================================
935
 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
936
 * IN assertion: the stream state is correct and there is enough room in
937
 * pending_buf.
938
 */
939
657k
local void putShortMSB(deflate_state *s, uInt b) {
940
657k
    put_byte(s, (Byte)(b >> 8));
941
657k
    put_byte(s, (Byte)(b & 0xff));
942
657k
}
943
944
/* =========================================================================
945
 * Flush as much pending output as possible. All deflate() output, except for
946
 * some deflate_stored() output, goes through this function so some
947
 * applications may wish to modify it to avoid allocating a large
948
 * strm->next_out buffer and copying into it. (See also read_buf()).
949
 */
950
848k
local void flush_pending(z_streamp strm) {
951
848k
    unsigned len;
952
848k
    deflate_state *s = strm->state;
953
954
848k
    _tr_flush_bits(s);
955
848k
    len = s->pending > strm->avail_out ? strm->avail_out :
956
848k
                                         (unsigned)s->pending;
957
848k
    if (len == 0) return;
958
959
848k
    zmemcpy(strm->next_out, s->pending_out, len);
960
848k
    strm->next_out  += len;
961
848k
    s->pending_out  += len;
962
848k
    strm->total_out += len;
963
848k
    strm->avail_out -= len;
964
848k
    s->pending      -= len;
965
848k
    if (s->pending == 0) {
966
840k
        s->pending_out = s->pending_buf;
967
840k
    }
968
848k
}
969
970
/* ===========================================================================
971
 * Update the header CRC with the bytes s->pending_buf[beg..s->pending - 1].
972
 */
973
#define HCRC_UPDATE(beg) \
974
0
    do { \
975
0
        if (s->gzhead->hcrc && s->pending > (beg)) \
976
0
            strm->adler = crc32_z(strm->adler, s->pending_buf + (beg), \
977
0
                                  s->pending - (beg)); \
978
0
    } while (0)
979
980
/* ========================================================================= */
981
60.0M
int ZEXPORT deflate(z_streamp strm, int flush) {
982
60.0M
    int old_flush; /* value of flush param for previous deflate call */
983
60.0M
    deflate_state *s;
984
985
60.0M
    if (deflateStateCheck(strm) || flush > Z_BLOCK || flush < 0) {
986
0
        return Z_STREAM_ERROR;
987
0
    }
988
60.0M
    s = strm->state;
989
990
60.0M
    if (strm->next_out == Z_NULL ||
991
60.0M
        (strm->avail_in != 0 && strm->next_in == Z_NULL) ||
992
60.0M
        (s->status == FINISH_STATE && flush != Z_FINISH)) {
993
0
        ERR_RETURN(strm, Z_STREAM_ERROR);
994
0
    }
995
60.0M
    if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR);
996
997
60.0M
    old_flush = s->last_flush;
998
60.0M
    s->last_flush = flush;
999
1000
    /* Flush as much pending output as possible */
1001
60.0M
    if (s->pending != 0) {
1002
7.94k
        flush_pending(strm);
1003
7.94k
        if (strm->avail_out == 0) {
1004
            /* Since avail_out is 0, deflate will be called again with
1005
             * more output space, but possibly with both pending and
1006
             * avail_in equal to zero. There won't be anything to do,
1007
             * but this is not an error situation so make sure we
1008
             * return OK instead of BUF_ERROR at next call of deflate:
1009
             */
1010
0
            s->last_flush = -1;
1011
0
            return Z_OK;
1012
0
        }
1013
1014
    /* Make sure there is something to do and avoid duplicate consecutive
1015
     * flushes. For repeated and useless calls with Z_FINISH, we keep
1016
     * returning Z_STREAM_END instead of Z_BUF_ERROR.
1017
     */
1018
60.0M
    } else if (strm->avail_in == 0 && RANK(flush) <= RANK(old_flush) &&
1019
0
               flush != Z_FINISH) {
1020
0
        ERR_RETURN(strm, Z_BUF_ERROR);
1021
0
    }
1022
1023
    /* User must not provide more input after the first FINISH: */
1024
60.0M
    if (s->status == FINISH_STATE && strm->avail_in != 0) {
1025
0
        ERR_RETURN(strm, Z_BUF_ERROR);
1026
0
    }
1027
1028
    /* Write the header */
1029
60.0M
    if (s->status == INIT_STATE && s->wrap == 0)
1030
0
        s->status = BUSY_STATE;
1031
60.0M
    if (s->status == INIT_STATE) {
1032
        /* zlib header */
1033
223k
        uInt header = (Z_DEFLATED + ((s->w_bits - 8) << 4)) << 8;
1034
223k
        uInt level_flags;
1035
1036
223k
        if (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2)
1037
0
            level_flags = 0;
1038
223k
        else if (s->level < 6)
1039
0
            level_flags = 1;
1040
223k
        else if (s->level == 6)
1041
223k
            level_flags = 2;
1042
0
        else
1043
0
            level_flags = 3;
1044
223k
        header |= (level_flags << 6);
1045
223k
        if (s->strstart != 0) header |= PRESET_DICT;
1046
223k
        header += 31 - (header % 31);
1047
1048
223k
        putShortMSB(s, header);
1049
1050
        /* Save the adler32 of the preset dictionary: */
1051
223k
        if (s->strstart != 0) {
1052
0
            putShortMSB(s, (uInt)(strm->adler >> 16));
1053
0
            putShortMSB(s, (uInt)(strm->adler & 0xffff));
1054
0
        }
1055
223k
        strm->adler = adler32(0L, Z_NULL, 0);
1056
223k
        s->status = BUSY_STATE;
1057
1058
        /* Compression must start with an empty pending buffer */
1059
223k
        flush_pending(strm);
1060
223k
        if (s->pending != 0) {
1061
0
            s->last_flush = -1;
1062
0
            return Z_OK;
1063
0
        }
1064
223k
    }
1065
60.0M
#ifdef GZIP
1066
60.0M
    if (s->status == GZIP_STATE) {
1067
        /* gzip header */
1068
0
        strm->adler = crc32(0L, Z_NULL, 0);
1069
0
        put_byte(s, 31);
1070
0
        put_byte(s, 139);
1071
0
        put_byte(s, 8);
1072
0
        if (s->gzhead == Z_NULL) {
1073
0
            put_byte(s, 0);
1074
0
            put_byte(s, 0);
1075
0
            put_byte(s, 0);
1076
0
            put_byte(s, 0);
1077
0
            put_byte(s, 0);
1078
0
            put_byte(s, s->level == 9 ? 2 :
1079
0
                     (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2 ?
1080
0
                      4 : 0));
1081
0
            put_byte(s, OS_CODE);
1082
0
            s->status = BUSY_STATE;
1083
1084
            /* Compression must start with an empty pending buffer */
1085
0
            flush_pending(strm);
1086
0
            if (s->pending != 0) {
1087
0
                s->last_flush = -1;
1088
0
                return Z_OK;
1089
0
            }
1090
0
        }
1091
0
        else {
1092
0
            put_byte(s, (s->gzhead->text ? 1 : 0) +
1093
0
                     (s->gzhead->hcrc ? 2 : 0) +
1094
0
                     (s->gzhead->extra == Z_NULL ? 0 : 4) +
1095
0
                     (s->gzhead->name == Z_NULL ? 0 : 8) +
1096
0
                     (s->gzhead->comment == Z_NULL ? 0 : 16)
1097
0
                     );
1098
0
            put_byte(s, (Byte)(s->gzhead->time & 0xff));
1099
0
            put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff));
1100
0
            put_byte(s, (Byte)((s->gzhead->time >> 16) & 0xff));
1101
0
            put_byte(s, (Byte)((s->gzhead->time >> 24) & 0xff));
1102
0
            put_byte(s, s->level == 9 ? 2 :
1103
0
                     (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2 ?
1104
0
                      4 : 0));
1105
0
            put_byte(s, s->gzhead->os & 0xff);
1106
0
            if (s->gzhead->extra != Z_NULL) {
1107
0
                put_byte(s, s->gzhead->extra_len & 0xff);
1108
0
                put_byte(s, (s->gzhead->extra_len >> 8) & 0xff);
1109
0
            }
1110
0
            if (s->gzhead->hcrc)
1111
0
                strm->adler = crc32_z(strm->adler, s->pending_buf,
1112
0
                                      s->pending);
1113
0
            s->gzindex = 0;
1114
0
            s->status = EXTRA_STATE;
1115
0
        }
1116
0
    }
1117
60.0M
    if (s->status == EXTRA_STATE) {
1118
0
        if (s->gzhead->extra != Z_NULL) {
1119
0
            ulg beg = s->pending;   /* start of bytes to update crc */
1120
0
            ulg left = (s->gzhead->extra_len & 0xffff) - s->gzindex;
1121
0
            while (s->pending + left > s->pending_buf_size) {
1122
0
                ulg copy = s->pending_buf_size - s->pending;
1123
0
                zmemcpy(s->pending_buf + s->pending,
1124
0
                        s->gzhead->extra + s->gzindex, copy);
1125
0
                s->pending = s->pending_buf_size;
1126
0
                HCRC_UPDATE(beg);
1127
0
                s->gzindex += copy;
1128
0
                flush_pending(strm);
1129
0
                if (s->pending != 0) {
1130
0
                    s->last_flush = -1;
1131
0
                    return Z_OK;
1132
0
                }
1133
0
                beg = 0;
1134
0
                left -= copy;
1135
0
            }
1136
0
            zmemcpy(s->pending_buf + s->pending,
1137
0
                    s->gzhead->extra + s->gzindex, left);
1138
0
            s->pending += left;
1139
0
            HCRC_UPDATE(beg);
1140
0
            s->gzindex = 0;
1141
0
        }
1142
0
        s->status = NAME_STATE;
1143
0
    }
1144
60.0M
    if (s->status == NAME_STATE) {
1145
0
        if (s->gzhead->name != Z_NULL) {
1146
0
            ulg beg = s->pending;   /* start of bytes to update crc */
1147
0
            int val;
1148
0
            do {
1149
0
                if (s->pending == s->pending_buf_size) {
1150
0
                    HCRC_UPDATE(beg);
1151
0
                    flush_pending(strm);
1152
0
                    if (s->pending != 0) {
1153
0
                        s->last_flush = -1;
1154
0
                        return Z_OK;
1155
0
                    }
1156
0
                    beg = 0;
1157
0
                }
1158
0
                val = s->gzhead->name[s->gzindex++];
1159
0
                put_byte(s, val);
1160
0
            } while (val != 0);
1161
0
            HCRC_UPDATE(beg);
1162
0
            s->gzindex = 0;
1163
0
        }
1164
0
        s->status = COMMENT_STATE;
1165
0
    }
1166
60.0M
    if (s->status == COMMENT_STATE) {
1167
0
        if (s->gzhead->comment != Z_NULL) {
1168
0
            ulg beg = s->pending;   /* start of bytes to update crc */
1169
0
            int val;
1170
0
            do {
1171
0
                if (s->pending == s->pending_buf_size) {
1172
0
                    HCRC_UPDATE(beg);
1173
0
                    flush_pending(strm);
1174
0
                    if (s->pending != 0) {
1175
0
                        s->last_flush = -1;
1176
0
                        return Z_OK;
1177
0
                    }
1178
0
                    beg = 0;
1179
0
                }
1180
0
                val = s->gzhead->comment[s->gzindex++];
1181
0
                put_byte(s, val);
1182
0
            } while (val != 0);
1183
0
            HCRC_UPDATE(beg);
1184
0
        }
1185
0
        s->status = HCRC_STATE;
1186
0
    }
1187
60.0M
    if (s->status == HCRC_STATE) {
1188
0
        if (s->gzhead->hcrc) {
1189
0
            if (s->pending + 2 > s->pending_buf_size) {
1190
0
                flush_pending(strm);
1191
0
                if (s->pending != 0) {
1192
0
                    s->last_flush = -1;
1193
0
                    return Z_OK;
1194
0
                }
1195
0
            }
1196
0
            put_byte(s, (Byte)(strm->adler & 0xff));
1197
0
            put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
1198
0
            strm->adler = crc32(0L, Z_NULL, 0);
1199
0
        }
1200
0
        s->status = BUSY_STATE;
1201
1202
        /* Compression must start with an empty pending buffer */
1203
0
        flush_pending(strm);
1204
0
        if (s->pending != 0) {
1205
0
            s->last_flush = -1;
1206
0
            return Z_OK;
1207
0
        }
1208
0
    }
1209
60.0M
#endif
1210
1211
    /* Start a new block or continue the current one.
1212
     */
1213
60.0M
    if (strm->avail_in != 0 || s->lookahead != 0 ||
1214
60.0M
        (flush != Z_NO_FLUSH && s->status != FINISH_STATE)) {
1215
60.0M
        block_state bstate;
1216
1217
60.0M
        bstate = s->level == 0 ? deflate_stored(s, flush) :
1218
60.0M
                 s->strategy == Z_HUFFMAN_ONLY ? deflate_huff(s, flush) :
1219
60.0M
                 s->strategy == Z_RLE ? deflate_rle(s, flush) :
1220
60.0M
                 (*(configuration_table[s->level].func))(s, flush);
1221
1222
60.0M
        if (bstate == finish_started || bstate == finish_done) {
1223
217k
            s->status = FINISH_STATE;
1224
217k
        }
1225
60.0M
        if (bstate == need_more || bstate == finish_started) {
1226
59.8M
            if (strm->avail_out == 0) {
1227
7.98k
                s->last_flush = -1; /* avoid BUF_ERROR next call, see above */
1228
7.98k
            }
1229
59.8M
            return Z_OK;
1230
            /* If flush != Z_NO_FLUSH && avail_out == 0, the next call
1231
             * of deflate should use the same flush parameter to make sure
1232
             * that the flush is complete. So we don't have to output an
1233
             * empty block here, this will be done at next call. This also
1234
             * ensures that for a very small output buffer, we emit at most
1235
             * one empty block.
1236
             */
1237
59.8M
        }
1238
217k
        if (bstate == block_done) {
1239
0
            if (flush == Z_PARTIAL_FLUSH) {
1240
0
                _tr_align(s);
1241
0
            } else if (flush != Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */
1242
0
                _tr_stored_block(s, (char*)0, 0L, 0);
1243
                /* For a full flush, this empty block will be recognized
1244
                 * as a special marker by inflate_sync().
1245
                 */
1246
0
                if (flush == Z_FULL_FLUSH) {
1247
0
                    CLEAR_HASH(s);             /* forget history */
1248
0
                    if (s->lookahead == 0) {
1249
0
                        s->strstart = 0;
1250
0
                        s->block_start = 0L;
1251
0
                        s->insert = 0;
1252
0
                    }
1253
0
                }
1254
0
            }
1255
0
            flush_pending(strm);
1256
0
            if (strm->avail_out == 0) {
1257
0
              s->last_flush = -1; /* avoid BUF_ERROR at next call, see above */
1258
0
              return Z_OK;
1259
0
            }
1260
0
        }
1261
217k
    }
1262
1263
217k
    if (flush != Z_FINISH) return Z_OK;
1264
217k
    if (s->wrap <= 0) return Z_STREAM_END;
1265
1266
    /* Write the trailer */
1267
217k
#ifdef GZIP
1268
217k
    if (s->wrap == 2) {
1269
0
        put_byte(s, (Byte)(strm->adler & 0xff));
1270
0
        put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
1271
0
        put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
1272
0
        put_byte(s, (Byte)((strm->adler >> 24) & 0xff));
1273
0
        put_byte(s, (Byte)(strm->total_in & 0xff));
1274
0
        put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
1275
0
        put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
1276
0
        put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
1277
0
    }
1278
217k
    else
1279
217k
#endif
1280
217k
    {
1281
217k
        putShortMSB(s, (uInt)(strm->adler >> 16));
1282
217k
        putShortMSB(s, (uInt)(strm->adler & 0xffff));
1283
217k
    }
1284
217k
    flush_pending(strm);
1285
    /* If avail_out is zero, the application will call deflate again
1286
     * to flush the rest.
1287
     */
1288
217k
    if (s->wrap > 0) s->wrap = -s->wrap; /* write the trailer only once! */
1289
217k
    return s->pending != 0 ? Z_OK : Z_STREAM_END;
1290
217k
}
1291
1292
/* ========================================================================= */
1293
223k
int ZEXPORT deflateEnd(z_streamp strm) {
1294
223k
    int status;
1295
1296
223k
    if (deflateStateCheck(strm)) return Z_STREAM_ERROR;
1297
1298
223k
    status = strm->state->status;
1299
1300
    /* Deallocate in reverse order of allocations: */
1301
223k
    TRY_FREE(strm, strm->state->pending_buf);
1302
223k
    TRY_FREE(strm, strm->state->head);
1303
223k
    TRY_FREE(strm, strm->state->prev);
1304
223k
    TRY_FREE(strm, strm->state->window);
1305
1306
223k
    ZFREE(strm, strm->state);
1307
223k
    strm->state = Z_NULL;
1308
1309
223k
    return status == BUSY_STATE ? Z_DATA_ERROR : Z_OK;
1310
223k
}
1311
1312
/* =========================================================================
1313
 * Copy the source state to the destination state.
1314
 * To simplify the source, this is not supported for 16-bit MSDOS (which
1315
 * doesn't have enough memory anyway to duplicate compression states).
1316
 */
1317
0
int ZEXPORT deflateCopy(z_streamp dest, z_streamp source) {
1318
#ifdef MAXSEG_64K
1319
    (void)dest;
1320
    (void)source;
1321
    return Z_STREAM_ERROR;
1322
#else
1323
0
    deflate_state *ds;
1324
0
    deflate_state *ss;
1325
1326
1327
0
    if (deflateStateCheck(source) || dest == Z_NULL) {
1328
0
        return Z_STREAM_ERROR;
1329
0
    }
1330
1331
0
    ss = source->state;
1332
1333
0
    zmemcpy(dest, source, sizeof(z_stream));
1334
1335
0
    ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state));
1336
0
    if (ds == Z_NULL) return Z_MEM_ERROR;
1337
0
    zmemzero(ds, sizeof(deflate_state));
1338
0
    dest->state = (struct internal_state FAR *) ds;
1339
0
    zmemcpy(ds, ss, sizeof(deflate_state));
1340
0
    ds->strm = dest;
1341
1342
0
    ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
1343
0
    ds->prev   = (Posf *)  ZALLOC(dest, ds->w_size, sizeof(Pos));
1344
0
    ds->head   = (Posf *)  ZALLOC(dest, ds->hash_size, sizeof(Pos));
1345
0
    ds->pending_buf = (uchf *) ZALLOC(dest, ds->lit_bufsize, LIT_BUFS);
1346
1347
0
    if (ds->window == Z_NULL || ds->prev == Z_NULL || ds->head == Z_NULL ||
1348
0
        ds->pending_buf == Z_NULL) {
1349
0
        deflateEnd (dest);
1350
0
        return Z_MEM_ERROR;
1351
0
    }
1352
    /* following zmemcpy's do not work for 16-bit MSDOS */
1353
0
    zmemcpy(ds->window, ss->window, ss->high_water);
1354
0
    zmemcpy(ds->prev, ss->prev,
1355
0
            (ss->slid || ss->strstart - ss->insert > ds->w_size ? ds->w_size :
1356
0
                ss->strstart - ss->insert) * sizeof(Pos));
1357
0
    zmemcpy(ds->head, ss->head, ds->hash_size * sizeof(Pos));
1358
1359
0
    ds->pending_out = ds->pending_buf + (ss->pending_out - ss->pending_buf);
1360
0
    zmemcpy(ds->pending_out, ss->pending_out, ss->pending);
1361
#ifdef LIT_MEM
1362
    ds->d_buf = (ushf *)(ds->pending_buf + (ds->lit_bufsize << 1));
1363
    ds->l_buf = ds->pending_buf + (ds->lit_bufsize << 2);
1364
    zmemcpy(ds->d_buf, ss->d_buf, ss->sym_next * sizeof(ush));
1365
    zmemcpy(ds->l_buf, ss->l_buf, ss->sym_next);
1366
#else
1367
0
    ds->sym_buf = ds->pending_buf + ds->lit_bufsize;
1368
0
    zmemcpy(ds->sym_buf, ss->sym_buf, ss->sym_next);
1369
0
#endif
1370
1371
0
    ds->l_desc.dyn_tree = ds->dyn_ltree;
1372
0
    ds->d_desc.dyn_tree = ds->dyn_dtree;
1373
0
    ds->bl_desc.dyn_tree = ds->bl_tree;
1374
1375
0
    return Z_OK;
1376
0
#endif /* MAXSEG_64K */
1377
0
}
1378
1379
#ifndef FASTEST
1380
/* ===========================================================================
1381
 * Set match_start to the longest match starting at the given string and
1382
 * return its length. Matches shorter or equal to prev_length are discarded,
1383
 * in which case the result is equal to prev_length and match_start is
1384
 * garbage.
1385
 * IN assertions: cur_match is the head of the hash chain for the current
1386
 *   string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
1387
 * OUT assertion: the match length is not greater than s->lookahead.
1388
 */
1389
2.89G
local uInt longest_match(deflate_state *s, IPos cur_match) {
1390
2.89G
    unsigned chain_length = s->max_chain_length;/* max hash chain length */
1391
2.89G
    Bytef *scan = s->window + s->strstart;      /* current string */
1392
2.89G
    Bytef *match;                               /* matched string */
1393
2.89G
    int len;                                    /* length of current match */
1394
2.89G
    int best_len = (int)s->prev_length;         /* best match length so far */
1395
2.89G
    int nice_match = s->nice_match;             /* stop if match long enough */
1396
2.89G
    IPos limit = s->strstart > (IPos)MAX_DIST(s) ?
1397
2.78G
        s->strstart - (IPos)MAX_DIST(s) : NIL;
1398
    /* Stop when cur_match becomes <= limit. To simplify the code,
1399
     * we prevent matches with the string of window index 0.
1400
     */
1401
2.89G
    Posf *prev = s->prev;
1402
2.89G
    uInt wmask = s->w_mask;
1403
1404
#ifdef UNALIGNED_OK
1405
    /* Compare two bytes at a time. Note: this is not always beneficial.
1406
     * Try with and without -DUNALIGNED_OK to check.
1407
     */
1408
    Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
1409
    ush scan_start = *(ushf*)scan;
1410
    ush scan_end   = *(ushf*)(scan + best_len - 1);
1411
#else
1412
2.89G
    Bytef *strend = s->window + s->strstart + MAX_MATCH;
1413
2.89G
    Byte scan_end1  = scan[best_len - 1];
1414
2.89G
    Byte scan_end   = scan[best_len];
1415
2.89G
#endif
1416
1417
    /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
1418
     * It is easy to get rid of this optimization if necessary.
1419
     */
1420
2.89G
    Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
1421
1422
    /* Do not waste too much time if we already have a good match: */
1423
2.89G
    if (s->prev_length >= s->good_match) {
1424
164M
        chain_length >>= 2;
1425
164M
    }
1426
    /* Do not look for matches beyond the end of the input. This is necessary
1427
     * to make deflate deterministic.
1428
     */
1429
2.89G
    if ((uInt)nice_match > s->lookahead) nice_match = (int)s->lookahead;
1430
1431
2.89G
    Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD,
1432
2.89G
           "need lookahead");
1433
1434
76.0G
    do {
1435
76.0G
        Assert(cur_match < s->strstart, "no future");
1436
76.0G
        match = s->window + cur_match;
1437
1438
        /* Skip to next match if the match length cannot increase
1439
         * or if the match length is less than 2.  Note that the checks below
1440
         * for insufficient lookahead only occur occasionally for performance
1441
         * reasons.  Therefore uninitialized memory will be accessed, and
1442
         * conditional jumps will be made that depend on those values.
1443
         * However the length of the match is limited to the lookahead, so
1444
         * the output of deflate is not affected by the uninitialized values.
1445
         */
1446
#if (defined(UNALIGNED_OK) && MAX_MATCH == 258)
1447
        /* This code assumes sizeof(unsigned short) == 2. Do not use
1448
         * UNALIGNED_OK if your compiler uses a different size.
1449
         */
1450
        if (*(ushf*)(match + best_len - 1) != scan_end ||
1451
            *(ushf*)match != scan_start) continue;
1452
1453
        /* It is not necessary to compare scan[2] and match[2] since they are
1454
         * always equal when the other bytes match, given that the hash keys
1455
         * are equal and that HASH_BITS >= 8. Compare 2 bytes at a time at
1456
         * strstart + 3, + 5, up to strstart + 257. We check for insufficient
1457
         * lookahead only every 4th comparison; the 128th check will be made
1458
         * at strstart + 257. If MAX_MATCH-2 is not a multiple of 8, it is
1459
         * necessary to put more guard bytes at the end of the window, or
1460
         * to check more often for insufficient lookahead.
1461
         */
1462
        Assert(scan[2] == match[2], "scan[2]?");
1463
        scan++, match++;
1464
        do {
1465
        } while (*(ushf*)(scan += 2) == *(ushf*)(match += 2) &&
1466
                 *(ushf*)(scan += 2) == *(ushf*)(match += 2) &&
1467
                 *(ushf*)(scan += 2) == *(ushf*)(match += 2) &&
1468
                 *(ushf*)(scan += 2) == *(ushf*)(match += 2) &&
1469
                 scan < strend);
1470
        /* The funny "do {}" generates better code on most compilers */
1471
1472
        /* Here, scan <= window + strstart + 257 */
1473
        Assert(scan <= s->window + (unsigned)(s->window_size - 1),
1474
               "wild scan");
1475
        if (*scan == *match) scan++;
1476
1477
        len = (MAX_MATCH - 1) - (int)(strend - scan);
1478
        scan = strend - (MAX_MATCH-1);
1479
1480
#else /* UNALIGNED_OK */
1481
1482
76.0G
        if (match[best_len]     != scan_end  ||
1483
20.2G
            match[best_len - 1] != scan_end1 ||
1484
8.45G
            *match              != *scan     ||
1485
72.4G
            *++match            != scan[1])      continue;
1486
1487
        /* The check at best_len - 1 can be removed because it will be made
1488
         * again later. (This heuristic is not always a win.)
1489
         * It is not necessary to compare scan[2] and match[2] since they
1490
         * are always equal when the other bytes match, given that
1491
         * the hash keys are equal and that HASH_BITS >= 8.
1492
         */
1493
3.56G
        scan += 2, match++;
1494
3.56G
        Assert(*scan == *match, "match[2]?");
1495
1496
        /* We check for insufficient lookahead only every 8th comparison;
1497
         * the 256th check will be made at strstart + 258.
1498
         */
1499
6.47G
        do {
1500
6.47G
        } while (*++scan == *++match && *++scan == *++match &&
1501
4.37G
                 *++scan == *++match && *++scan == *++match &&
1502
3.62G
                 *++scan == *++match && *++scan == *++match &&
1503
3.19G
                 *++scan == *++match && *++scan == *++match &&
1504
2.93G
                 scan < strend);
1505
1506
3.56G
        Assert(scan <= s->window + (unsigned)(s->window_size - 1),
1507
3.56G
               "wild scan");
1508
1509
3.56G
        len = MAX_MATCH - (int)(strend - scan);
1510
3.56G
        scan = strend - MAX_MATCH;
1511
1512
3.56G
#endif /* UNALIGNED_OK */
1513
1514
3.56G
        if (len > best_len) {
1515
2.10G
            s->match_start = cur_match;
1516
2.10G
            best_len = len;
1517
2.10G
            if (len >= nice_match) break;
1518
#ifdef UNALIGNED_OK
1519
            scan_end = *(ushf*)(scan + best_len - 1);
1520
#else
1521
2.07G
            scan_end1  = scan[best_len - 1];
1522
2.07G
            scan_end   = scan[best_len];
1523
2.07G
#endif
1524
2.07G
        }
1525
75.9G
    } while ((cur_match = prev[cur_match & wmask]) > limit
1526
73.5G
             && --chain_length != 0);
1527
1528
2.89G
    if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
1529
27.6k
    return s->lookahead;
1530
2.89G
}
1531
1532
#else /* FASTEST */
1533
1534
/* ---------------------------------------------------------------------------
1535
 * Optimized version for FASTEST only
1536
 */
1537
local uInt longest_match(deflate_state *s, IPos cur_match) {
1538
    Bytef *scan = s->window + s->strstart;      /* current string */
1539
    Bytef *match;                               /* matched string */
1540
    int len;                                    /* length of current match */
1541
    Bytef *strend = s->window + s->strstart + MAX_MATCH;
1542
1543
    /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
1544
     * It is easy to get rid of this optimization if necessary.
1545
     */
1546
    Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
1547
1548
    Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD,
1549
           "need lookahead");
1550
1551
    Assert(cur_match < s->strstart, "no future");
1552
1553
    match = s->window + cur_match;
1554
1555
    /* Return failure if the match length is less than 2:
1556
     */
1557
    if (match[0] != scan[0] || match[1] != scan[1]) return MIN_MATCH-1;
1558
1559
    /* The check at best_len - 1 can be removed because it will be made
1560
     * again later. (This heuristic is not always a win.)
1561
     * It is not necessary to compare scan[2] and match[2] since they
1562
     * are always equal when the other bytes match, given that
1563
     * the hash keys are equal and that HASH_BITS >= 8.
1564
     */
1565
    scan += 2, match += 2;
1566
    Assert(*scan == *match, "match[2]?");
1567
1568
    /* We check for insufficient lookahead only every 8th comparison;
1569
     * the 256th check will be made at strstart + 258.
1570
     */
1571
    do {
1572
    } while (*++scan == *++match && *++scan == *++match &&
1573
             *++scan == *++match && *++scan == *++match &&
1574
             *++scan == *++match && *++scan == *++match &&
1575
             *++scan == *++match && *++scan == *++match &&
1576
             scan < strend);
1577
1578
    Assert(scan <= s->window + (unsigned)(s->window_size - 1), "wild scan");
1579
1580
    len = MAX_MATCH - (int)(strend - scan);
1581
1582
    if (len < MIN_MATCH) return MIN_MATCH - 1;
1583
1584
    s->match_start = cur_match;
1585
    return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead;
1586
}
1587
1588
#endif /* FASTEST */
1589
1590
#ifdef ZLIB_DEBUG
1591
1592
#define EQUAL 0
1593
/* result of memcmp for equal strings */
1594
1595
/* ===========================================================================
1596
 * Check that the match at match_start is indeed a match.
1597
 */
1598
local void check_match(deflate_state *s, IPos start, IPos match, int length) {
1599
    /* check that the match is indeed a match */
1600
    Bytef *back = s->window + (int)match, *here = s->window + start;
1601
    IPos len = (IPos)length;
1602
    if (match == (IPos)-1) {
1603
        /* match starts one byte before the current window -- just compare the
1604
           subsequent length-1 bytes */
1605
        back++;
1606
        here++;
1607
        len--;
1608
    }
1609
    if (zmemcmp(back, here, len) != EQUAL) {
1610
        fprintf(stderr, " start %u, match %d, length %d\n",
1611
                start, (int)match, length);
1612
        do {
1613
            fprintf(stderr, "(%02x %02x)", *back++, *here++);
1614
        } while (--len != 0);
1615
        z_error("invalid match");
1616
    }
1617
    if (z_verbose > 1) {
1618
        fprintf(stderr,"\\[%d,%d]", start - match, length);
1619
        do { putc(s->window[start++], stderr); } while (--length != 0);
1620
    }
1621
}
1622
#else
1623
#  define check_match(s, start, match, length)
1624
#endif /* ZLIB_DEBUG */
1625
1626
/* ===========================================================================
1627
 * Flush the current block, with given end-of-file flag.
1628
 * IN assertion: strstart is set to the end of the current match.
1629
 */
1630
400k
#define FLUSH_BLOCK_ONLY(s, last) { \
1631
400k
   _tr_flush_block(s, (s->block_start >= 0L ? \
1632
400k
                   (charf *)&s->window[(unsigned)s->block_start] : \
1633
400k
                   (charf *)Z_NULL), \
1634
400k
                (ulg)((long)s->strstart - s->block_start), \
1635
400k
                (last)); \
1636
400k
   s->block_start = s->strstart; \
1637
400k
   flush_pending(s->strm); \
1638
400k
   Tracev((stderr,"[FLUSH]")); \
1639
400k
}
1640
1641
/* Same but force premature exit if necessary. */
1642
271k
#define FLUSH_BLOCK(s, last) { \
1643
271k
   FLUSH_BLOCK_ONLY(s, last); \
1644
271k
   if (s->strm->avail_out == 0) return (last) ? finish_started : need_more; \
1645
271k
}
1646
1647
/* Maximum stored block length in deflate format (not including header). */
1648
0
#define MAX_STORED 65535
1649
1650
/* Minimum of a and b. */
1651
0
#define MIN(a, b) ((a) > (b) ? (b) : (a))
1652
1653
/* ===========================================================================
1654
 * Copy without compression as much as possible from the input stream, return
1655
 * the current block state.
1656
 *
1657
 * In case deflateParams() is used to later switch to a non-zero compression
1658
 * level, s->matches (otherwise unused when storing) keeps track of the number
1659
 * of hash table slides to perform. If s->matches is 1, then one hash table
1660
 * slide will be done when switching. If s->matches is 2, the maximum value
1661
 * allowed here, then the hash table will be cleared, since two or more slides
1662
 * is the same as a clear.
1663
 *
1664
 * deflate_stored() is written to minimize the number of times an input byte is
1665
 * copied. It is most efficient with large input and output buffers, which
1666
 * maximizes the opportunities to have a single copy from next_in to next_out.
1667
 */
1668
0
local block_state deflate_stored(deflate_state *s, int flush) {
1669
    /* Smallest worthy block size when not flushing or finishing. By default
1670
     * this is 32K. This can be as small as 507 bytes for memLevel == 1. For
1671
     * large input and output buffers, the stored block size will be larger.
1672
     */
1673
0
    unsigned min_block = (unsigned)(MIN(s->pending_buf_size - 5, s->w_size));
1674
1675
    /* Copy as many min_block or larger stored blocks directly to next_out as
1676
     * possible. If flushing, copy the remaining available input to next_out as
1677
     * stored blocks, if there is enough space.
1678
     */
1679
0
    int last = 0;
1680
0
    unsigned len, left, have;
1681
0
    unsigned used = s->strm->avail_in;
1682
0
    do {
1683
        /* Set len to the maximum size block that we can copy directly with the
1684
         * available input data and output space. Set left to how much of that
1685
         * would be copied from what's left in the window.
1686
         */
1687
0
        len = MAX_STORED;       /* maximum deflate stored block length */
1688
0
        have = ((unsigned)s->bi_valid + 42) >> 3;   /* bytes in header */
1689
0
        if (s->strm->avail_out < have)          /* need room for header */
1690
0
            break;
1691
            /* maximum stored block length that will fit in avail_out: */
1692
0
        have = s->strm->avail_out - have;
1693
0
        left = (unsigned)(s->strstart - s->block_start);    /* window bytes */
1694
0
        if (len > (ulg)left + s->strm->avail_in)
1695
0
            len = left + s->strm->avail_in;     /* limit len to the input */
1696
0
        if (len > have)
1697
0
            len = have;                         /* limit len to the output */
1698
1699
        /* If the stored block would be less than min_block in length, or if
1700
         * unable to copy all of the available input when flushing, then try
1701
         * copying to the window and the pending buffer instead. Also don't
1702
         * write an empty block when flushing -- deflate() does that.
1703
         */
1704
0
        if (len < min_block && ((len == 0 && flush != Z_FINISH) ||
1705
0
                                flush == Z_NO_FLUSH ||
1706
0
                                len != left + s->strm->avail_in))
1707
0
            break;
1708
1709
        /* Make a dummy stored block in pending to get the header bytes,
1710
         * including any pending bits. This also updates the debugging counts.
1711
         */
1712
0
        last = flush == Z_FINISH && len == left + s->strm->avail_in ? 1 : 0;
1713
0
        _tr_stored_block(s, (char *)0, 0L, last);
1714
1715
        /* Replace the lengths in the dummy stored block with len. */
1716
0
        s->pending_buf[s->pending - 4] = (Bytef)len;
1717
0
        s->pending_buf[s->pending - 3] = (Bytef)(len >> 8);
1718
0
        s->pending_buf[s->pending - 2] = (Bytef)~len;
1719
0
        s->pending_buf[s->pending - 1] = (Bytef)(~len >> 8);
1720
1721
        /* Write the stored block header bytes. */
1722
0
        flush_pending(s->strm);
1723
1724
#ifdef ZLIB_DEBUG
1725
        /* Update debugging counts for the data about to be copied. */
1726
        s->compressed_len += len << 3;
1727
        s->bits_sent += len << 3;
1728
#endif
1729
1730
        /* Copy uncompressed bytes from the window to next_out. */
1731
0
        if (left) {
1732
0
            if (left > len)
1733
0
                left = len;
1734
0
            zmemcpy(s->strm->next_out, s->window + s->block_start, left);
1735
0
            s->strm->next_out += left;
1736
0
            s->strm->avail_out -= left;
1737
0
            s->strm->total_out += left;
1738
0
            s->block_start += left;
1739
0
            len -= left;
1740
0
        }
1741
1742
        /* Copy uncompressed bytes directly from next_in to next_out, updating
1743
         * the check value.
1744
         */
1745
0
        if (len) {
1746
0
            read_buf(s->strm, s->strm->next_out, len);
1747
0
            s->strm->next_out += len;
1748
0
            s->strm->avail_out -= len;
1749
0
            s->strm->total_out += len;
1750
0
        }
1751
0
    } while (last == 0);
1752
1753
    /* Update the sliding window with the last s->w_size bytes of the copied
1754
     * data, or append all of the copied data to the existing window if less
1755
     * than s->w_size bytes were copied. Also update the number of bytes to
1756
     * insert in the hash tables, in the event that deflateParams() switches to
1757
     * a non-zero compression level.
1758
     */
1759
0
    used -= s->strm->avail_in;      /* number of input bytes directly copied */
1760
0
    if (used) {
1761
        /* If any input was used, then no unused input remains in the window,
1762
         * therefore s->block_start == s->strstart.
1763
         */
1764
0
        if (used >= s->w_size) {    /* supplant the previous history */
1765
0
            s->matches = 2;         /* clear hash */
1766
0
            zmemcpy(s->window, s->strm->next_in - s->w_size, s->w_size);
1767
0
            s->strstart = s->w_size;
1768
0
            s->insert = s->strstart;
1769
0
        }
1770
0
        else {
1771
0
            if (s->window_size - s->strstart <= used) {
1772
                /* Slide the window down. */
1773
0
                s->strstart -= s->w_size;
1774
0
                zmemcpy(s->window, s->window + s->w_size, s->strstart);
1775
0
                if (s->matches < 2)
1776
0
                    s->matches++;   /* add a pending slide_hash() */
1777
0
                if (s->insert > s->strstart)
1778
0
                    s->insert = s->strstart;
1779
0
            }
1780
0
            zmemcpy(s->window + s->strstart, s->strm->next_in - used, used);
1781
0
            s->strstart += used;
1782
0
            s->insert += MIN(used, s->w_size - s->insert);
1783
0
        }
1784
0
        s->block_start = s->strstart;
1785
0
    }
1786
0
    if (s->high_water < s->strstart)
1787
0
        s->high_water = s->strstart;
1788
1789
    /* If the last block was written to next_out, then done. */
1790
0
    if (last) {
1791
0
        s->bi_used = 8;
1792
0
        return finish_done;
1793
0
    }
1794
1795
    /* If flushing and all input has been consumed, then done. */
1796
0
    if (flush != Z_NO_FLUSH && flush != Z_FINISH &&
1797
0
        s->strm->avail_in == 0 && (long)s->strstart == s->block_start)
1798
0
        return block_done;
1799
1800
    /* Fill the window with any remaining input. */
1801
0
    have = (unsigned)(s->window_size - s->strstart);
1802
0
    if (s->strm->avail_in > have && s->block_start >= (long)s->w_size) {
1803
        /* Slide the window down. */
1804
0
        s->block_start -= s->w_size;
1805
0
        s->strstart -= s->w_size;
1806
0
        zmemcpy(s->window, s->window + s->w_size, s->strstart);
1807
0
        if (s->matches < 2)
1808
0
            s->matches++;           /* add a pending slide_hash() */
1809
0
        have += s->w_size;          /* more space now */
1810
0
        if (s->insert > s->strstart)
1811
0
            s->insert = s->strstart;
1812
0
    }
1813
0
    if (have > s->strm->avail_in)
1814
0
        have = s->strm->avail_in;
1815
0
    if (have) {
1816
0
        read_buf(s->strm, s->window + s->strstart, have);
1817
0
        s->strstart += have;
1818
0
        s->insert += MIN(have, s->w_size - s->insert);
1819
0
    }
1820
0
    if (s->high_water < s->strstart)
1821
0
        s->high_water = s->strstart;
1822
1823
    /* There was not enough avail_out to write a complete worthy or flushed
1824
     * stored block to next_out. Write a stored block to pending instead, if we
1825
     * have enough input for a worthy block, or if flushing and there is enough
1826
     * room for the remaining input as a stored block in the pending buffer.
1827
     */
1828
0
    have = ((unsigned)s->bi_valid + 42) >> 3;   /* bytes in header */
1829
        /* maximum stored block length that will fit in pending: */
1830
0
    have = (unsigned)MIN(s->pending_buf_size - have, MAX_STORED);
1831
0
    min_block = MIN(have, s->w_size);
1832
0
    left = (unsigned)(s->strstart - s->block_start);
1833
0
    if (left >= min_block ||
1834
0
        ((left || flush == Z_FINISH) && flush != Z_NO_FLUSH &&
1835
0
         s->strm->avail_in == 0 && left <= have)) {
1836
0
        len = MIN(left, have);
1837
0
        last = flush == Z_FINISH && s->strm->avail_in == 0 &&
1838
0
               len == left ? 1 : 0;
1839
0
        _tr_stored_block(s, (charf *)s->window + s->block_start, len, last);
1840
0
        s->block_start += len;
1841
0
        flush_pending(s->strm);
1842
0
    }
1843
1844
    /* We've done all we can with the available input and output. */
1845
0
    if (last)
1846
0
        s->bi_used = 8;
1847
0
    return last ? finish_started : need_more;
1848
0
}
1849
1850
/* ===========================================================================
1851
 * Compress as much as possible from the input stream, return the current
1852
 * block state.
1853
 * This function does not perform lazy evaluation of matches and inserts
1854
 * new strings in the dictionary only for unmatched strings or for short
1855
 * matches. It is used only for the fast compression options.
1856
 */
1857
0
local block_state deflate_fast(deflate_state *s, int flush) {
1858
0
    IPos hash_head;       /* head of the hash chain */
1859
0
    int bflush;           /* set if current block must be flushed */
1860
1861
0
    for (;;) {
1862
        /* Make sure that we always have enough lookahead, except
1863
         * at the end of the input file. We need MAX_MATCH bytes
1864
         * for the next match, plus MIN_MATCH bytes to insert the
1865
         * string following the next match.
1866
         */
1867
0
        if (s->lookahead < MIN_LOOKAHEAD) {
1868
0
            fill_window(s);
1869
0
            if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
1870
0
                return need_more;
1871
0
            }
1872
0
            if (s->lookahead == 0) break; /* flush the current block */
1873
0
        }
1874
1875
        /* Insert the string window[strstart .. strstart + 2] in the
1876
         * dictionary, and set hash_head to the head of the hash chain:
1877
         */
1878
0
        hash_head = NIL;
1879
0
        if (s->lookahead >= MIN_MATCH) {
1880
0
            INSERT_STRING(s, s->strstart, hash_head);
1881
0
        }
1882
1883
        /* Find the longest match, discarding those <= prev_length.
1884
         * At this point we have always match_length < MIN_MATCH
1885
         */
1886
0
        if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) {
1887
            /* To simplify the code, we prevent matches with the string
1888
             * of window index 0 (in particular we have to avoid a match
1889
             * of the string with itself at the start of the input file).
1890
             */
1891
0
            s->match_length = longest_match (s, hash_head);
1892
            /* longest_match() sets match_start */
1893
0
        }
1894
0
        if (s->match_length >= MIN_MATCH) {
1895
0
            check_match(s, s->strstart, s->match_start, (int)s->match_length);
1896
1897
0
            _tr_tally_dist(s, s->strstart - s->match_start,
1898
0
                           s->match_length - MIN_MATCH, bflush);
1899
1900
0
            s->lookahead -= s->match_length;
1901
1902
            /* Insert new strings in the hash table only if the match length
1903
             * is not too large. This saves time but degrades compression.
1904
             */
1905
0
#ifndef FASTEST
1906
0
            if (s->match_length <= s->max_insert_length &&
1907
0
                s->lookahead >= MIN_MATCH) {
1908
0
                s->match_length--; /* string at strstart already in table */
1909
0
                do {
1910
0
                    s->strstart++;
1911
0
                    INSERT_STRING(s, s->strstart, hash_head);
1912
                    /* strstart never exceeds WSIZE-MAX_MATCH, so there are
1913
                     * always MIN_MATCH bytes ahead.
1914
                     */
1915
0
                } while (--s->match_length != 0);
1916
0
                s->strstart++;
1917
0
            } else
1918
0
#endif
1919
0
            {
1920
0
                s->strstart += s->match_length;
1921
0
                s->match_length = 0;
1922
0
                s->ins_h = s->window[s->strstart];
1923
0
                UPDATE_HASH(s, s->ins_h, s->window[s->strstart + 1]);
1924
#if MIN_MATCH != 3
1925
                Call UPDATE_HASH() MIN_MATCH-3 more times
1926
#endif
1927
                /* If lookahead < MIN_MATCH, ins_h is garbage, but it does not
1928
                 * matter since it will be recomputed at next deflate call.
1929
                 */
1930
0
            }
1931
0
        } else {
1932
            /* No match, output a literal byte */
1933
0
            Tracevv((stderr,"%c", s->window[s->strstart]));
1934
0
            _tr_tally_lit(s, s->window[s->strstart], bflush);
1935
0
            s->lookahead--;
1936
0
            s->strstart++;
1937
0
        }
1938
0
        if (bflush) FLUSH_BLOCK(s, 0);
1939
0
    }
1940
0
    s->insert = s->strstart < MIN_MATCH-1 ? s->strstart : MIN_MATCH-1;
1941
0
    if (flush == Z_FINISH) {
1942
0
        FLUSH_BLOCK(s, 1);
1943
0
        return finish_done;
1944
0
    }
1945
0
    if (s->sym_next)
1946
0
        FLUSH_BLOCK(s, 0);
1947
0
    return block_done;
1948
0
}
1949
1950
#ifndef FASTEST
1951
/* ===========================================================================
1952
 * Same as above, but achieves better compression. We use a lazy
1953
 * evaluation for matches: a match is finally adopted only if there is
1954
 * no better match at the next window position.
1955
 */
1956
60.0M
local block_state deflate_slow(deflate_state *s, int flush) {
1957
60.0M
    IPos hash_head;          /* head of hash chain */
1958
60.0M
    int bflush;              /* set if current block must be flushed */
1959
1960
    /* Process the input block. */
1961
4.11G
    for (;;) {
1962
        /* Make sure that we always have enough lookahead, except
1963
         * at the end of the input file. We need MAX_MATCH bytes
1964
         * for the next match, plus MIN_MATCH bytes to insert the
1965
         * string following the next match.
1966
         */
1967
4.11G
        if (s->lookahead < MIN_LOOKAHEAD) {
1968
112M
            fill_window(s);
1969
112M
            if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
1970
59.8M
                return need_more;
1971
59.8M
            }
1972
52.2M
            if (s->lookahead == 0) break; /* flush the current block */
1973
52.2M
        }
1974
1975
        /* Insert the string window[strstart .. strstart + 2] in the
1976
         * dictionary, and set hash_head to the head of the hash chain:
1977
         */
1978
4.05G
        hash_head = NIL;
1979
4.05G
        if (s->lookahead >= MIN_MATCH) {
1980
4.05G
            INSERT_STRING(s, s->strstart, hash_head);
1981
4.05G
        }
1982
1983
        /* Find the longest match, discarding those <= prev_length.
1984
         */
1985
4.05G
        s->prev_length = s->match_length, s->prev_match = s->match_start;
1986
4.05G
        s->match_length = MIN_MATCH-1;
1987
1988
4.05G
        if (hash_head != NIL && s->prev_length < s->max_lazy_match &&
1989
3.09G
            s->strstart - hash_head <= MAX_DIST(s)) {
1990
            /* To simplify the code, we prevent matches with the string
1991
             * of window index 0 (in particular we have to avoid a match
1992
             * of the string with itself at the start of the input file).
1993
             */
1994
2.89G
            s->match_length = longest_match (s, hash_head);
1995
            /* longest_match() sets match_start */
1996
1997
2.89G
            if (s->match_length <= 5 && (s->strategy == Z_FILTERED
1998
2.16G
#if TOO_FAR <= 32767
1999
2.16G
                || (s->match_length == MIN_MATCH &&
2000
629M
                    s->strstart - s->match_start > TOO_FAR)
2001
2.16G
#endif
2002
2.16G
                )) {
2003
2004
                /* If prev_match is also MIN_MATCH, match_start is garbage
2005
                 * but we will ignore the current match anyway.
2006
                 */
2007
208M
                s->match_length = MIN_MATCH-1;
2008
208M
            }
2009
2.89G
        }
2010
        /* If there was a match at the previous step and the current
2011
         * match is not better, output the previous match:
2012
         */
2013
4.05G
        if (s->prev_length >= MIN_MATCH && s->match_length <= s->prev_length) {
2014
920M
            uInt max_insert = s->strstart + s->lookahead - MIN_MATCH;
2015
            /* Do not insert strings in hash table beyond this. */
2016
2017
920M
            check_match(s, s->strstart - 1, s->prev_match, (int)s->prev_length);
2018
2019
920M
            _tr_tally_dist(s, s->strstart - 1 - s->prev_match,
2020
920M
                           s->prev_length - MIN_MATCH, bflush);
2021
2022
            /* Insert in hash table all strings up to the end of the match.
2023
             * strstart - 1 and strstart are already inserted. If there is not
2024
             * enough lookahead, the last two strings are not inserted in
2025
             * the hash table.
2026
             */
2027
920M
            s->lookahead -= s->prev_length - 1;
2028
920M
            s->prev_length -= 2;
2029
13.6G
            do {
2030
13.6G
                if (++s->strstart <= max_insert) {
2031
13.6G
                    INSERT_STRING(s, s->strstart, hash_head);
2032
13.6G
                }
2033
13.6G
            } while (--s->prev_length != 0);
2034
920M
            s->match_available = 0;
2035
920M
            s->match_length = MIN_MATCH-1;
2036
920M
            s->strstart++;
2037
2038
920M
            if (bflush) FLUSH_BLOCK(s, 0);
2039
2040
3.13G
        } else if (s->match_available) {
2041
            /* If there was no match at the previous position, output a
2042
             * single literal. If there was a match but the current match
2043
             * is longer, truncate the previous match to a single literal.
2044
             */
2045
2.21G
            Tracevv((stderr,"%c", s->window[s->strstart - 1]));
2046
2.21G
            _tr_tally_lit(s, s->window[s->strstart - 1], bflush);
2047
2.21G
            if (bflush) {
2048
129k
                FLUSH_BLOCK_ONLY(s, 0);
2049
129k
            }
2050
2.21G
            s->strstart++;
2051
2.21G
            s->lookahead--;
2052
2.21G
            if (s->strm->avail_out == 0) return need_more;
2053
2.21G
        } else {
2054
            /* There is no previous match to compare with, wait for
2055
             * the next step to decide.
2056
             */
2057
921M
            s->match_available = 1;
2058
921M
            s->strstart++;
2059
921M
            s->lookahead--;
2060
921M
        }
2061
4.05G
    }
2062
217k
    Assert (flush != Z_NO_FLUSH, "no flush?");
2063
217k
    if (s->match_available) {
2064
170k
        Tracevv((stderr,"%c", s->window[s->strstart - 1]));
2065
170k
        _tr_tally_lit(s, s->window[s->strstart - 1], bflush);
2066
170k
        s->match_available = 0;
2067
170k
    }
2068
217k
    s->insert = s->strstart < MIN_MATCH-1 ? s->strstart : MIN_MATCH-1;
2069
217k
    if (flush == Z_FINISH) {
2070
217k
        FLUSH_BLOCK(s, 1);
2071
217k
        return finish_done;
2072
217k
    }
2073
0
    if (s->sym_next)
2074
0
        FLUSH_BLOCK(s, 0);
2075
0
    return block_done;
2076
0
}
2077
#endif /* FASTEST */
2078
2079
/* ===========================================================================
2080
 * For Z_RLE, simply look for runs of bytes, generate matches only of distance
2081
 * one.  Do not maintain a hash table.  (It will be regenerated if this run of
2082
 * deflate switches away from Z_RLE.)
2083
 */
2084
0
local block_state deflate_rle(deflate_state *s, int flush) {
2085
0
    int bflush;             /* set if current block must be flushed */
2086
0
    uInt prev;              /* byte at distance one to match */
2087
0
    Bytef *scan, *strend;   /* scan goes up to strend for length of run */
2088
2089
0
    for (;;) {
2090
        /* Make sure that we always have enough lookahead, except
2091
         * at the end of the input file. We need MAX_MATCH bytes
2092
         * for the longest run, plus one for the unrolled loop.
2093
         */
2094
0
        if (s->lookahead <= MAX_MATCH) {
2095
0
            fill_window(s);
2096
0
            if (s->lookahead <= MAX_MATCH && flush == Z_NO_FLUSH) {
2097
0
                return need_more;
2098
0
            }
2099
0
            if (s->lookahead == 0) break; /* flush the current block */
2100
0
        }
2101
2102
        /* See how many times the previous byte repeats */
2103
0
        s->match_length = 0;
2104
0
        if (s->lookahead >= MIN_MATCH && s->strstart > 0) {
2105
0
            scan = s->window + s->strstart - 1;
2106
0
            prev = *scan;
2107
0
            if (prev == *++scan && prev == *++scan && prev == *++scan) {
2108
0
                strend = s->window + s->strstart + MAX_MATCH;
2109
0
                do {
2110
0
                } while (prev == *++scan && prev == *++scan &&
2111
0
                         prev == *++scan && prev == *++scan &&
2112
0
                         prev == *++scan && prev == *++scan &&
2113
0
                         prev == *++scan && prev == *++scan &&
2114
0
                         scan < strend);
2115
0
                s->match_length = MAX_MATCH - (uInt)(strend - scan);
2116
0
                if (s->match_length > s->lookahead)
2117
0
                    s->match_length = s->lookahead;
2118
0
            }
2119
0
            Assert(scan <= s->window + (uInt)(s->window_size - 1),
2120
0
                   "wild scan");
2121
0
        }
2122
2123
        /* Emit match if have run of MIN_MATCH or longer, else emit literal */
2124
0
        if (s->match_length >= MIN_MATCH) {
2125
0
            check_match(s, s->strstart, s->strstart - 1, (int)s->match_length);
2126
2127
0
            _tr_tally_dist(s, 1, s->match_length - MIN_MATCH, bflush);
2128
2129
0
            s->lookahead -= s->match_length;
2130
0
            s->strstart += s->match_length;
2131
0
            s->match_length = 0;
2132
0
        } else {
2133
            /* No match, output a literal byte */
2134
0
            Tracevv((stderr,"%c", s->window[s->strstart]));
2135
0
            _tr_tally_lit(s, s->window[s->strstart], bflush);
2136
0
            s->lookahead--;
2137
0
            s->strstart++;
2138
0
        }
2139
0
        if (bflush) FLUSH_BLOCK(s, 0);
2140
0
    }
2141
0
    s->insert = 0;
2142
0
    if (flush == Z_FINISH) {
2143
0
        FLUSH_BLOCK(s, 1);
2144
0
        return finish_done;
2145
0
    }
2146
0
    if (s->sym_next)
2147
0
        FLUSH_BLOCK(s, 0);
2148
0
    return block_done;
2149
0
}
2150
2151
/* ===========================================================================
2152
 * For Z_HUFFMAN_ONLY, do not look for matches.  Do not maintain a hash table.
2153
 * (It will be regenerated if this run of deflate switches away from Huffman.)
2154
 */
2155
0
local block_state deflate_huff(deflate_state *s, int flush) {
2156
0
    int bflush;             /* set if current block must be flushed */
2157
2158
0
    for (;;) {
2159
        /* Make sure that we have a literal to write. */
2160
0
        if (s->lookahead == 0) {
2161
0
            fill_window(s);
2162
0
            if (s->lookahead == 0) {
2163
0
                if (flush == Z_NO_FLUSH)
2164
0
                    return need_more;
2165
0
                break;      /* flush the current block */
2166
0
            }
2167
0
        }
2168
2169
        /* Output a literal byte */
2170
0
        s->match_length = 0;
2171
0
        Tracevv((stderr,"%c", s->window[s->strstart]));
2172
0
        _tr_tally_lit(s, s->window[s->strstart], bflush);
2173
0
        s->lookahead--;
2174
0
        s->strstart++;
2175
0
        if (bflush) FLUSH_BLOCK(s, 0);
2176
0
    }
2177
0
    s->insert = 0;
2178
0
    if (flush == Z_FINISH) {
2179
0
        FLUSH_BLOCK(s, 1);
2180
0
        return finish_done;
2181
0
    }
2182
0
    if (s->sym_next)
2183
0
        FLUSH_BLOCK(s, 0);
2184
0
    return block_done;
2185
0
}