os/ossrv/compressionlibs/ziplib/src/zlib/inflate.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* Portions Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
 * All rights reserved.
sl@0
     3
 */
sl@0
     4
sl@0
     5
/* inflate.cpp -- zlib decompression
sl@0
     6
 * Copyright (C) 1995-2005 Mark Adler
sl@0
     7
 * For conditions of distribution and use, see copyright notice in zlib.h
sl@0
     8
 */
sl@0
     9
sl@0
    10
/*
sl@0
    11
 * Change history:
sl@0
    12
 *
sl@0
    13
 * 1.2.beta0    24 Nov 2002
sl@0
    14
 * - First version -- complete rewrite of inflate to simplify code, avoid
sl@0
    15
 *   creation of window when not needed, minimize use of window when it is
sl@0
    16
 *   needed, make inffast.c even faster, implement gzip decoding, and to
sl@0
    17
 *   improve code readability and style over the previous zlib inflate code
sl@0
    18
 *
sl@0
    19
 * 1.2.beta1    25 Nov 2002
sl@0
    20
 * - Use pointers for available input and output checking in inffast.c
sl@0
    21
 * - Remove input and output counters in inffast.c
sl@0
    22
 * - Change inffast.c entry and loop from avail_in >= 7 to >= 6
sl@0
    23
 * - Remove unnecessary second byte pull from length extra in inffast.c
sl@0
    24
 * - Unroll direct copy to three copies per loop in inffast.c
sl@0
    25
 *
sl@0
    26
 * 1.2.beta2    4 Dec 2002
sl@0
    27
 * - Change external routine names to reduce potential conflicts
sl@0
    28
 * - Correct filename to inffixed.h for fixed tables in inflate.c
sl@0
    29
 * - Make hbuf[] unsigned char to match parameter type in inflate.c
sl@0
    30
 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
sl@0
    31
 *   to avoid negation problem on Alphas (64 bit) in inflate.c
sl@0
    32
 *
sl@0
    33
 * 1.2.beta3    22 Dec 2002
sl@0
    34
 * - Add comments on state->bits assertion in inffast.c
sl@0
    35
 * - Add comments on op field in inftrees.h
sl@0
    36
 * - Fix bug in reuse of allocated window after inflateReset()
sl@0
    37
 * - Remove bit fields--back to byte structure for speed
sl@0
    38
 * - Remove distance extra == 0 check in inflate_fast()--only helps for lengths
sl@0
    39
 * - Change post-increments to pre-increments in inflate_fast(), PPC biased?
sl@0
    40
 * - Add compile time option, POSTINC, to use post-increments instead (Intel?)
sl@0
    41
 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
sl@0
    42
 * - Use local copies of stream next and avail values, as well as local bit
sl@0
    43
 *   buffer and bit count in inflate()--for speed when inflate_fast() not used
sl@0
    44
 *
sl@0
    45
 * 1.2.beta4    1 Jan 2003
sl@0
    46
 * - Split ptr - 257 statements in inflate_table() to avoid compiler warnings
sl@0
    47
 * - Move a comment on output buffer sizes from inffast.c to inflate.c
sl@0
    48
 * - Add comments in inffast.c to introduce the inflate_fast() routine
sl@0
    49
 * - Rearrange window copies in inflate_fast() for speed and simplification
sl@0
    50
 * - Unroll last copy for window match in inflate_fast()
sl@0
    51
 * - Use local copies of window variables in inflate_fast() for speed
sl@0
    52
 * - Pull out common write == 0 case for speed in inflate_fast()
sl@0
    53
 * - Make op and len in inflate_fast() unsigned for consistency
sl@0
    54
 * - Add FAR to lcode and dcode declarations in inflate_fast()
sl@0
    55
 * - Simplified bad distance check in inflate_fast()
sl@0
    56
 * - Added inflateBackInit(), inflateBack(), and inflateBackEnd() in new
sl@0
    57
 *   source file infback.c to provide a call-back interface to inflate for
sl@0
    58
 *   programs like gzip and unzip -- uses window as output buffer to avoid
sl@0
    59
 *   window copying
sl@0
    60
 *
sl@0
    61
 * 1.2.beta5    1 Jan 2003
sl@0
    62
 * - Improved inflateBack() interface to allow the caller to provide initial
sl@0
    63
 *   input in strm.
sl@0
    64
 * - Fixed stored blocks bug in inflateBack()
sl@0
    65
 *
sl@0
    66
 * 1.2.beta6    4 Jan 2003
sl@0
    67
 * - Added comments in inffast.c on effectiveness of POSTINC
sl@0
    68
 * - Typecasting all around to reduce compiler warnings
sl@0
    69
 * - Changed loops from while (1) or do {} while (1) to for (;;), again to
sl@0
    70
 *   make compilers happy
sl@0
    71
 * - Changed type of window in inflateBackInit() to unsigned char *
sl@0
    72
 *
sl@0
    73
 * 1.2.beta7    27 Jan 2003
sl@0
    74
 * - Changed many types to unsigned or unsigned short to avoid warnings
sl@0
    75
 * - Added inflateCopy() function
sl@0
    76
 *
sl@0
    77
 * 1.2.0        9 Mar 2003
sl@0
    78
 * - Changed inflateBack() interface to provide separate opaque descriptors
sl@0
    79
 *   for the in() and out() functions
sl@0
    80
 * - Changed inflateBack() argument and in_func typedef to swap the length
sl@0
    81
 *   and buffer address return values for the input function
sl@0
    82
 * - Check next_in and next_out for Z_NULL on entry to inflate()
sl@0
    83
 *
sl@0
    84
 * The history for versions after 1.2.0 are in ChangeLog in zlib distribution.
sl@0
    85
 */
sl@0
    86
sl@0
    87
#include "zutil.h"
sl@0
    88
#include "inftrees.h"
sl@0
    89
#include "inflate.h"
sl@0
    90
#include "inffast.h"
sl@0
    91
sl@0
    92
#ifdef MAKEFIXED
sl@0
    93
#  ifndef BUILDFIXED
sl@0
    94
#    define BUILDFIXED
sl@0
    95
#  endif
sl@0
    96
#endif
sl@0
    97
sl@0
    98
/* function prototypes */
sl@0
    99
local void fixedtables OF((struct inflate_state FAR *state));
sl@0
   100
local int updatewindow OF((z_streamp strm, unsigned out));
sl@0
   101
#ifdef BUILDFIXED
sl@0
   102
   void makefixed OF((void));
sl@0
   103
#endif
sl@0
   104
local unsigned syncsearch OF((unsigned FAR *have, unsigned char FAR *buf,
sl@0
   105
                              unsigned len));
sl@0
   106
                              
sl@0
   107
#ifdef __SYMBIAN32__
sl@0
   108
EXPORT_C  int inflateReset_r (z_streamp strm)
sl@0
   109
#else
sl@0
   110
int ZEXPORT inflateReset(strm)
sl@0
   111
z_streamp strm;
sl@0
   112
#endif //__SYMBIAN32__
sl@0
   113
{
sl@0
   114
    struct inflate_state FAR *state;
sl@0
   115
sl@0
   116
    if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
sl@0
   117
    state = (struct inflate_state FAR *)strm->state;
sl@0
   118
    strm->total_in = strm->total_out = state->total = 0;
sl@0
   119
    strm->msg = Z_NULL;
sl@0
   120
    strm->adler = 1;        /* to support ill-conceived Java test suite */
sl@0
   121
    state->mode = HEAD;
sl@0
   122
    state->last = 0;
sl@0
   123
    state->havedict = 0;
sl@0
   124
    state->dmax = 32768U;
sl@0
   125
    state->head = Z_NULL;
sl@0
   126
    state->wsize = 0;
sl@0
   127
    state->whave = 0;
sl@0
   128
    state->write = 0;
sl@0
   129
    state->hold = 0;
sl@0
   130
    state->bits = 0;
sl@0
   131
    state->lencode = state->distcode = state->next = state->codes;
sl@0
   132
    Tracev((stderr, "inflate: reset\n"));
sl@0
   133
    return Z_OK;
sl@0
   134
}
sl@0
   135
sl@0
   136
sl@0
   137
#ifdef __SYMBIAN32__
sl@0
   138
EXPORT_C int  inflatePrime_r(z_streamp strm, int bits, int value)
sl@0
   139
#else
sl@0
   140
int ZEXPORT inflatePrime(strm, bits, value)
sl@0
   141
z_streamp strm;
sl@0
   142
int bits;
sl@0
   143
int value;
sl@0
   144
#endif //__SYMBIAN32__
sl@0
   145
{
sl@0
   146
    struct inflate_state FAR *state;
sl@0
   147
sl@0
   148
    if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
sl@0
   149
    state = (struct inflate_state FAR *)strm->state;
sl@0
   150
    if (bits > 16 || state->bits + bits > 32) return Z_STREAM_ERROR;
sl@0
   151
    value &= (1L << bits) - 1;
sl@0
   152
    state->hold += value << state->bits;
sl@0
   153
    state->bits += bits;
sl@0
   154
    return Z_OK;
sl@0
   155
}
sl@0
   156
sl@0
   157
#ifdef __SYMBIAN32__
sl@0
   158
EXPORT_C int inflateInit2__r(z_streamp strm, int windowBits,const char * version,int  stream_size)
sl@0
   159
#else
sl@0
   160
int ZEXPORT inflateInit2_(strm, windowBits, version, stream_size)
sl@0
   161
z_streamp strm;
sl@0
   162
int windowBits;
sl@0
   163
const char *version;
sl@0
   164
int stream_size;
sl@0
   165
#endif //__SYMBIAN32__
sl@0
   166
{
sl@0
   167
    struct inflate_state FAR *state;
sl@0
   168
sl@0
   169
    if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
sl@0
   170
        stream_size != (int)(sizeof(z_stream)))
sl@0
   171
        return Z_VERSION_ERROR;
sl@0
   172
    if (strm == Z_NULL) return Z_STREAM_ERROR;
sl@0
   173
    strm->msg = Z_NULL;                 /* in case we return an error */
sl@0
   174
    if (strm->zalloc == (alloc_func)0) {
sl@0
   175
        strm->zalloc = zcalloc;
sl@0
   176
        strm->opaque = (voidpf)0;
sl@0
   177
    }
sl@0
   178
    if (strm->zfree == (free_func)0) strm->zfree = zcfree;
sl@0
   179
    state = (struct inflate_state FAR *)
sl@0
   180
            ZALLOC(strm, 1, sizeof(struct inflate_state));
sl@0
   181
    if (state == Z_NULL) return Z_MEM_ERROR;
sl@0
   182
    Tracev((stderr, "inflate: allocated\n"));
sl@0
   183
    strm->state = (struct internal_state FAR *)state;
sl@0
   184
    if (windowBits < 0) {
sl@0
   185
        state->wrap = 0;
sl@0
   186
        windowBits = -windowBits;
sl@0
   187
    }
sl@0
   188
    else {
sl@0
   189
        state->wrap = (windowBits >> 4) + 1;
sl@0
   190
#ifdef GUNZIP
sl@0
   191
        if (windowBits < 48) windowBits &= 15;
sl@0
   192
#endif
sl@0
   193
    }
sl@0
   194
    if (windowBits < 8 || windowBits > 15) {
sl@0
   195
        ZFREE(strm, state);
sl@0
   196
        strm->state = Z_NULL;
sl@0
   197
        return Z_STREAM_ERROR;
sl@0
   198
    }
sl@0
   199
    state->wbits = (unsigned)windowBits;
sl@0
   200
    state->window = Z_NULL;
sl@0
   201
    return inflateReset_r (strm);
sl@0
   202
}
sl@0
   203
sl@0
   204
#ifdef __SYMBIAN32__
sl@0
   205
EXPORT_C  int inflateInit__r (z_streamp strm,const char *  version,int stream_size)
sl@0
   206
#else
sl@0
   207
int ZEXPORT inflateInit_(strm, version, stream_size)
sl@0
   208
z_streamp strm;
sl@0
   209
const char *version;
sl@0
   210
int stream_size;
sl@0
   211
#endif //__SYMBIAN32__
sl@0
   212
{
sl@0
   213
    return inflateInit2__r(strm, DEF_WBITS, version, stream_size);
sl@0
   214
}
sl@0
   215
sl@0
   216
sl@0
   217
/*
sl@0
   218
   Return state with length and distance decoding tables and index sizes set to
sl@0
   219
   fixed code decoding.  Normally this returns fixed tables from inffixed.h.
sl@0
   220
   If BUILDFIXED is defined, then instead this routine builds the tables the
sl@0
   221
   first time it's called, and returns those tables the first time and
sl@0
   222
   thereafter.  This reduces the size of the code by about 2K bytes, in
sl@0
   223
   exchange for a little execution time.  However, BUILDFIXED should not be
sl@0
   224
   used for threaded applications, since the rewriting of the tables and virgin
sl@0
   225
   may not be thread-safe.
sl@0
   226
 */
sl@0
   227
 
sl@0
   228
#ifdef __SYMBIAN32__
sl@0
   229
local void fixedtables(struct inflate_state FAR * state)
sl@0
   230
#else
sl@0
   231
local void fixedtables(state)
sl@0
   232
struct inflate_state FAR *state;
sl@0
   233
#endif //__SYMBIAN32__
sl@0
   234
{
sl@0
   235
#ifdef BUILDFIXED
sl@0
   236
    static int virgin = 1;
sl@0
   237
    static code *lenfix, *distfix;
sl@0
   238
    static code fixed[544];
sl@0
   239
sl@0
   240
    /* build fixed huffman tables if first call (may not be thread safe) */
sl@0
   241
    if (virgin) {
sl@0
   242
        unsigned sym, bits;
sl@0
   243
        static code *next;
sl@0
   244
sl@0
   245
        /* literal/length table */
sl@0
   246
        sym = 0;
sl@0
   247
        while (sym < 144) state->lens[sym++] = 8;
sl@0
   248
        while (sym < 256) state->lens[sym++] = 9;
sl@0
   249
        while (sym < 280) state->lens[sym++] = 7;
sl@0
   250
        while (sym < 288) state->lens[sym++] = 8;
sl@0
   251
        next = fixed;
sl@0
   252
        lenfix = next;
sl@0
   253
        bits = 9;
sl@0
   254
        inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
sl@0
   255
sl@0
   256
        /* distance table */
sl@0
   257
        sym = 0;
sl@0
   258
        while (sym < 32) state->lens[sym++] = 5;
sl@0
   259
        distfix = next;
sl@0
   260
        bits = 5;
sl@0
   261
        inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
sl@0
   262
sl@0
   263
        /* do this just once */
sl@0
   264
        virgin = 0;
sl@0
   265
    }
sl@0
   266
#else /* !BUILDFIXED */
sl@0
   267
#   include "inffixed.h"
sl@0
   268
#endif /* BUILDFIXED */
sl@0
   269
    state->lencode = lenfix;
sl@0
   270
    state->lenbits = 9;
sl@0
   271
    state->distcode = distfix;
sl@0
   272
    state->distbits = 5;
sl@0
   273
}
sl@0
   274
sl@0
   275
#ifndef SYMBIAN_EZLIB_DEVICE
sl@0
   276
sl@0
   277
#ifdef MAKEFIXED
sl@0
   278
#include <stdio.h>
sl@0
   279
sl@0
   280
/*
sl@0
   281
   Write out the inffixed.h that is #include'd above.  Defining MAKEFIXED also
sl@0
   282
   defines BUILDFIXED, so the tables are built on the fly.  makefixed() writes
sl@0
   283
   those tables to stdout, which would be piped to inffixed.h.  A small program
sl@0
   284
   can simply call makefixed to do this:
sl@0
   285
sl@0
   286
    void makefixed(void);
sl@0
   287
sl@0
   288
    int main(void)
sl@0
   289
    {
sl@0
   290
        makefixed();
sl@0
   291
        return 0;
sl@0
   292
    }
sl@0
   293
sl@0
   294
   Then that can be linked with zlib built with MAKEFIXED defined and run:
sl@0
   295
sl@0
   296
    a.out > inffixed.h
sl@0
   297
 */
sl@0
   298
void makefixed()
sl@0
   299
{
sl@0
   300
    unsigned low, size;
sl@0
   301
    struct inflate_state state;
sl@0
   302
sl@0
   303
    fixedtables(&state);
sl@0
   304
    puts("    /* inffixed.h -- table for decoding fixed codes");
sl@0
   305
    puts("     * Generated automatically by makefixed().");
sl@0
   306
    puts("     */");
sl@0
   307
    puts("");
sl@0
   308
    puts("    /* WARNING: this file should *not* be used by applications.");
sl@0
   309
    puts("       It is part of the implementation of this library and is");
sl@0
   310
    puts("       subject to change. Applications should only use zlib.h.");
sl@0
   311
    puts("     */");
sl@0
   312
    puts("");
sl@0
   313
    size = 1U << 9;
sl@0
   314
    printf("    static const code lenfix[%u] = {", size);
sl@0
   315
    low = 0;
sl@0
   316
    for (;;) {
sl@0
   317
        if ((low % 7) == 0) printf("\n        ");
sl@0
   318
        printf("{%u,%u,%d}", state.lencode[low].op, state.lencode[low].bits,
sl@0
   319
               state.lencode[low].val);
sl@0
   320
        if (++low == size) break;
sl@0
   321
        putchar(',');
sl@0
   322
    }
sl@0
   323
    puts("\n    };");
sl@0
   324
    size = 1U << 5;
sl@0
   325
    printf("\n    static const code distfix[%u] = {", size);
sl@0
   326
    low = 0;
sl@0
   327
    for (;;) {
sl@0
   328
        if ((low % 6) == 0) printf("\n        ");
sl@0
   329
        printf("{%u,%u,%d}", state.distcode[low].op, state.distcode[low].bits,
sl@0
   330
               state.distcode[low].val);
sl@0
   331
        if (++low == size) break;
sl@0
   332
        putchar(',');
sl@0
   333
    }
sl@0
   334
    puts("\n    };");
sl@0
   335
}
sl@0
   336
#endif /* MAKEFIXED */
sl@0
   337
sl@0
   338
#endif //SYMBIAN_EZLIB_DEVICE
sl@0
   339
sl@0
   340
/*
sl@0
   341
   Update the window with the last wsize (normally 32K) bytes written before
sl@0
   342
   returning.  If window does not exist yet, create it.  This is only called
sl@0
   343
   when a window is already in use, or when output has been written during this
sl@0
   344
   inflate call, but the end of the deflate stream has not been reached yet.
sl@0
   345
   It is also called to create a window for dictionary data when a dictionary
sl@0
   346
   is loaded.
sl@0
   347
sl@0
   348
   Providing output buffers larger than 32K to inflate() should provide a speed
sl@0
   349
   advantage, since only the last 32K of output is copied to the sliding window
sl@0
   350
   upon return from inflate(), and since all distances after the first 32K of
sl@0
   351
   output will fall in the output data, making match copies simpler and faster.
sl@0
   352
   The advantage may be dependent on the size of the processor's data caches.
sl@0
   353
 */
sl@0
   354
 
sl@0
   355
#ifdef __SYMBIAN32__
sl@0
   356
local int updatewindow(z_streamp strm,unsigned  out)
sl@0
   357
#else
sl@0
   358
local int updatewindow(strm, out)
sl@0
   359
z_streamp strm;
sl@0
   360
unsigned out;
sl@0
   361
#endif //__SYMBIAN32__
sl@0
   362
{
sl@0
   363
    struct inflate_state FAR *state;
sl@0
   364
    unsigned copy, dist;
sl@0
   365
sl@0
   366
    state = (struct inflate_state FAR *)strm->state;
sl@0
   367
sl@0
   368
    /* if it hasn't been done already, allocate space for the window */
sl@0
   369
    if (state->window == Z_NULL) {
sl@0
   370
        state->window = (unsigned char FAR *)
sl@0
   371
                        ZALLOC(strm, 1U << state->wbits,
sl@0
   372
                               sizeof(unsigned char));
sl@0
   373
        if (state->window == Z_NULL) return 1;
sl@0
   374
    }
sl@0
   375
sl@0
   376
    /* if window not in use yet, initialize */
sl@0
   377
    if (state->wsize == 0) {
sl@0
   378
        state->wsize = 1U << state->wbits;
sl@0
   379
        state->write = 0;
sl@0
   380
        state->whave = 0;
sl@0
   381
    }
sl@0
   382
sl@0
   383
    /* copy state->wsize or less output bytes into the circular window */
sl@0
   384
    copy = out - strm->avail_out;
sl@0
   385
    if (copy >= state->wsize) {
sl@0
   386
        zmemcpy(state->window, strm->next_out - state->wsize, state->wsize);
sl@0
   387
        state->write = 0;
sl@0
   388
        state->whave = state->wsize;
sl@0
   389
    }
sl@0
   390
    else {
sl@0
   391
        dist = state->wsize - state->write;
sl@0
   392
        if (dist > copy) dist = copy;
sl@0
   393
        zmemcpy(state->window + state->write, strm->next_out - copy, dist);
sl@0
   394
        copy -= dist;
sl@0
   395
        if (copy) {
sl@0
   396
            zmemcpy(state->window, strm->next_out - copy, copy);
sl@0
   397
            state->write = copy;
sl@0
   398
            state->whave = state->wsize;
sl@0
   399
        }
sl@0
   400
        else {
sl@0
   401
            state->write += dist;
sl@0
   402
            if (state->write == state->wsize) state->write = 0;
sl@0
   403
            if (state->whave < state->wsize) state->whave += dist;
sl@0
   404
        }
sl@0
   405
    }
sl@0
   406
    return 0;
sl@0
   407
}
sl@0
   408
sl@0
   409
sl@0
   410
sl@0
   411
/* Macros for inflate(): */
sl@0
   412
sl@0
   413
/* check function to use adler32() for zlib or crc32() for gzip */
sl@0
   414
#ifdef GUNZIP
sl@0
   415
#  define UPDATE(check, buf, len) \
sl@0
   416
    (state->flags ? crc32_r(check, buf, len) : adler32_r(check, buf, len))
sl@0
   417
#else
sl@0
   418
#  define UPDATE(check, buf, len) adler32_r(check, buf, len)
sl@0
   419
#endif
sl@0
   420
sl@0
   421
/* check macros for header crc */
sl@0
   422
#ifdef GUNZIP
sl@0
   423
#  define CRC2(check, word) \
sl@0
   424
    do { \
sl@0
   425
        hbuf[0] = (unsigned char)(word); \
sl@0
   426
        hbuf[1] = (unsigned char)((word) >> 8); \
sl@0
   427
        check = crc32_r(check, hbuf, 2); \
sl@0
   428
    } while (0)
sl@0
   429
sl@0
   430
#  define CRC4(check, word) \
sl@0
   431
    do { \
sl@0
   432
        hbuf[0] = (unsigned char)(word); \
sl@0
   433
        hbuf[1] = (unsigned char)((word) >> 8); \
sl@0
   434
        hbuf[2] = (unsigned char)((word) >> 16); \
sl@0
   435
        hbuf[3] = (unsigned char)((word) >> 24); \
sl@0
   436
        check = crc32_r(check, hbuf, 4); \
sl@0
   437
    } while (0)
sl@0
   438
#endif
sl@0
   439
sl@0
   440
/* Load registers with state in inflate() for speed */
sl@0
   441
#define LOAD() \
sl@0
   442
    do { \
sl@0
   443
        put = strm->next_out; \
sl@0
   444
        left = strm->avail_out; \
sl@0
   445
        next = strm->next_in; \
sl@0
   446
        have = strm->avail_in; \
sl@0
   447
        hold = state->hold; \
sl@0
   448
        bits = state->bits; \
sl@0
   449
    } while (0)
sl@0
   450
sl@0
   451
/* Restore state from registers in inflate() */
sl@0
   452
#define RESTORE() \
sl@0
   453
    do { \
sl@0
   454
        strm->next_out = put; \
sl@0
   455
        strm->avail_out = left; \
sl@0
   456
        strm->next_in = next; \
sl@0
   457
        strm->avail_in = have; \
sl@0
   458
        state->hold = hold; \
sl@0
   459
        state->bits = bits; \
sl@0
   460
    } while (0)
sl@0
   461
sl@0
   462
/* Clear the input bit accumulator */
sl@0
   463
#define INITBITS() \
sl@0
   464
    do { \
sl@0
   465
        hold = 0; \
sl@0
   466
        bits = 0; \
sl@0
   467
    } while (0)
sl@0
   468
sl@0
   469
/* Get a byte of input into the bit accumulator, or return from inflate()
sl@0
   470
   if there is no input available. */
sl@0
   471
#define PULLBYTE() \
sl@0
   472
    do { \
sl@0
   473
        if (have == 0) goto inf_leave; \
sl@0
   474
        have--; \
sl@0
   475
        hold += (unsigned long)(*next++) << bits; \
sl@0
   476
        bits += 8; \
sl@0
   477
    } while (0)
sl@0
   478
sl@0
   479
/* Assure that there are at least n bits in the bit accumulator.  If there is
sl@0
   480
   not enough available input to do that, then return from inflate(). */
sl@0
   481
#define NEEDBITS(n) \
sl@0
   482
    do { \
sl@0
   483
        while (bits < (unsigned)(n)) \
sl@0
   484
            PULLBYTE(); \
sl@0
   485
    } while (0)
sl@0
   486
sl@0
   487
/* Return the low n bits of the bit accumulator (n < 16) */
sl@0
   488
#define BITS(n) \
sl@0
   489
    ((unsigned)hold & ((1U << (n)) - 1))
sl@0
   490
sl@0
   491
/* Remove n bits from the bit accumulator */
sl@0
   492
#define DROPBITS(n) \
sl@0
   493
    do { \
sl@0
   494
        hold >>= (n); \
sl@0
   495
        bits -= (unsigned)(n); \
sl@0
   496
    } while (0)
sl@0
   497
sl@0
   498
/* Remove zero to seven bits as needed to go to a byte boundary */
sl@0
   499
#define BYTEBITS() \
sl@0
   500
    do { \
sl@0
   501
        hold >>= bits & 7; \
sl@0
   502
        bits -= bits & 7; \
sl@0
   503
    } while (0)
sl@0
   504
sl@0
   505
/* Reverse the bytes in a 32-bit value */
sl@0
   506
#define REVERSE(q) \
sl@0
   507
    ((((q) >> 24) & 0xff) + (((q) >> 8) & 0xff00) + \
sl@0
   508
     (((q) & 0xff00) << 8) + (((q) & 0xff) << 24))
sl@0
   509
sl@0
   510
sl@0
   511
/*
sl@0
   512
   inflate() uses a state machine to process as much input data and generate as
sl@0
   513
   much output data as possible before returning.  The state machine is
sl@0
   514
   structured roughly as follows:
sl@0
   515
sl@0
   516
    for (;;) switch (state) {
sl@0
   517
    ...
sl@0
   518
    case STATEn:
sl@0
   519
        if (not enough input data or output space to make progress)
sl@0
   520
            return;
sl@0
   521
        ... make progress ...
sl@0
   522
        state = STATEm;
sl@0
   523
        break;
sl@0
   524
    ...
sl@0
   525
    }
sl@0
   526
sl@0
   527
   so when inflate() is called again, the same case is attempted again, and
sl@0
   528
   if the appropriate resources are provided, the machine proceeds to the
sl@0
   529
   next state.  The NEEDBITS() macro is usually the way the state evaluates
sl@0
   530
   whether it can proceed or should return.  NEEDBITS() does the return if
sl@0
   531
   the requested bits are not available.  The typical use of the BITS macros
sl@0
   532
   is:
sl@0
   533
sl@0
   534
        NEEDBITS(n);
sl@0
   535
        ... do something with BITS(n) ...
sl@0
   536
        DROPBITS(n);
sl@0
   537
sl@0
   538
   where NEEDBITS(n) either returns from inflate() if there isn't enough
sl@0
   539
   input left to load n bits into the accumulator, or it continues.  BITS(n)
sl@0
   540
   gives the low n bits in the accumulator.  When done, DROPBITS(n) drops
sl@0
   541
   the low n bits off the accumulator.  INITBITS() clears the accumulator
sl@0
   542
   and sets the number of available bits to zero.  BYTEBITS() discards just
sl@0
   543
   enough bits to put the accumulator on a byte boundary.  After BYTEBITS()
sl@0
   544
   and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
sl@0
   545
sl@0
   546
   NEEDBITS(n) uses PULLBYTE() to get an available byte of input, or to return
sl@0
   547
   if there is no input available.  The decoding of variable length codes uses
sl@0
   548
   PULLBYTE() directly in order to pull just enough bytes to decode the next
sl@0
   549
   code, and no more.
sl@0
   550
sl@0
   551
   Some states loop until they get enough input, making sure that enough
sl@0
   552
   state information is maintained to continue the loop where it left off
sl@0
   553
   if NEEDBITS() returns in the loop.  For example, want, need, and keep
sl@0
   554
   would all have to actually be part of the saved state in case NEEDBITS()
sl@0
   555
   returns:
sl@0
   556
sl@0
   557
    case STATEw:
sl@0
   558
        while (want < need) {
sl@0
   559
            NEEDBITS(n);
sl@0
   560
            keep[want++] = BITS(n);
sl@0
   561
            DROPBITS(n);
sl@0
   562
        }
sl@0
   563
        state = STATEx;
sl@0
   564
    case STATEx:
sl@0
   565
sl@0
   566
   As shown above, if the next state is also the next case, then the break
sl@0
   567
   is omitted.
sl@0
   568
sl@0
   569
   A state may also return if there is not enough output space available to
sl@0
   570
   complete that state.  Those states are copying stored data, writing a
sl@0
   571
   literal byte, and copying a matching string.
sl@0
   572
sl@0
   573
   When returning, a "goto inf_leave" is used to update the total counters,
sl@0
   574
   update the check value, and determine whether any progress has been made
sl@0
   575
   during that inflate() call in order to return the proper return code.
sl@0
   576
   Progress is defined as a change in either strm->avail_in or strm->avail_out.
sl@0
   577
   When there is a window, goto inf_leave will update the window with the last
sl@0
   578
   output written.  If a goto inf_leave occurs in the middle of decompression
sl@0
   579
   and there is no window currently, goto inf_leave will create one and copy
sl@0
   580
   output to the window for the next call of inflate().
sl@0
   581
sl@0
   582
   In this implementation, the flush parameter of inflate() only affects the
sl@0
   583
   return code (per zlib.h).  inflate() always writes as much as possible to
sl@0
   584
   strm->next_out, given the space available and the provided input--the effect
sl@0
   585
   documented in zlib.h of Z_SYNC_FLUSH.  Furthermore, inflate() always defers
sl@0
   586
   the allocation of and copying into a sliding window until necessary, which
sl@0
   587
   provides the effect documented in zlib.h for Z_FINISH when the entire input
sl@0
   588
   stream available.  So the only thing the flush parameter actually does is:
sl@0
   589
   when flush is set to Z_FINISH, inflate() cannot return Z_OK.  Instead it
sl@0
   590
   will return Z_BUF_ERROR if it has not reached the end of the stream.
sl@0
   591
 */
sl@0
   592
#ifdef __SYMBIAN32__
sl@0
   593
EXPORT_C  int inflate_r (z_streamp strm,int  flush)
sl@0
   594
#else
sl@0
   595
int ZEXPORT inflate(strm, flush)
sl@0
   596
z_streamp strm;
sl@0
   597
int flush;
sl@0
   598
#endif //__SYMBIAN32__
sl@0
   599
{
sl@0
   600
    struct inflate_state FAR *state;
sl@0
   601
    unsigned char FAR *next;    /* next input */
sl@0
   602
    unsigned char FAR *put;     /* next output */
sl@0
   603
    unsigned have, left;        /* available input and output */
sl@0
   604
    unsigned long hold;         /* bit buffer */
sl@0
   605
    unsigned bits;              /* bits in bit buffer */
sl@0
   606
    unsigned in, out;           /* save starting available input and output */
sl@0
   607
    unsigned copy;              /* number of stored or match bytes to copy */
sl@0
   608
    unsigned char FAR *from;    /* where to copy match bytes from */
sl@0
   609
    
sl@0
   610
/*  Need to replace "this" variable with "current" as "this" is a reserved 
sl@0
   611
 *  keyword in C++ which is prefectly fine for a c code. As this file
sl@0
   612
 *  has been changed to C++ "this" needs to be changed.
sl@0
   613
 */ 
sl@0
   614
#   define this current   
sl@0
   615
    code this;                  /* current decoding table entry */
sl@0
   616
    code last;                  /* parent table entry */
sl@0
   617
    unsigned len;               /* length to copy for repeats, bits to drop */
sl@0
   618
    int ret;                    /* return code */
sl@0
   619
#ifdef GUNZIP
sl@0
   620
    unsigned char hbuf[4];      /* buffer for gzip header crc calculation */
sl@0
   621
#endif
sl@0
   622
    static const unsigned short order[19] = /* permutation of code lengths */
sl@0
   623
        {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15};
sl@0
   624
sl@0
   625
    if (strm == Z_NULL || strm->state == Z_NULL || strm->next_out == Z_NULL ||
sl@0
   626
        (strm->next_in == Z_NULL && strm->avail_in != 0))
sl@0
   627
        return Z_STREAM_ERROR;
sl@0
   628
sl@0
   629
    state = (struct inflate_state FAR *)strm->state;
sl@0
   630
    if (state->mode == TYPE) state->mode = TYPEDO;      /* skip check */
sl@0
   631
    LOAD();
sl@0
   632
    in = have;
sl@0
   633
    out = left;
sl@0
   634
    ret = Z_OK;
sl@0
   635
    for (;;)
sl@0
   636
        switch (state->mode) {
sl@0
   637
        case HEAD:
sl@0
   638
            if (state->wrap == 0) {
sl@0
   639
                state->mode = TYPEDO;
sl@0
   640
                break;
sl@0
   641
            }
sl@0
   642
            NEEDBITS(16);
sl@0
   643
#ifdef GUNZIP
sl@0
   644
            if ((state->wrap & 2) && hold == 0x8b1f) {  /* gzip header */
sl@0
   645
                state->check = crc32_r(0L, Z_NULL, 0);
sl@0
   646
                CRC2(state->check, hold);
sl@0
   647
                INITBITS();
sl@0
   648
                state->mode = FLAGS;
sl@0
   649
                break;
sl@0
   650
            }
sl@0
   651
            state->flags = 0;           /* expect zlib header */
sl@0
   652
            if (state->head != Z_NULL)
sl@0
   653
                state->head->done = -1;
sl@0
   654
            if (!(state->wrap & 1) ||   /* check if zlib header allowed */
sl@0
   655
#else
sl@0
   656
            if (
sl@0
   657
#endif
sl@0
   658
                ((BITS(8) << 8) + (hold >> 8)) % 31) {
sl@0
   659
                strm->msg = (char *)"incorrect header check";
sl@0
   660
                state->mode = BAD;
sl@0
   661
                break;
sl@0
   662
            }
sl@0
   663
            if (BITS(4) != Z_DEFLATED) {
sl@0
   664
                strm->msg = (char *)"unknown compression method";
sl@0
   665
                state->mode = BAD;
sl@0
   666
                break;
sl@0
   667
            }
sl@0
   668
            DROPBITS(4);
sl@0
   669
            len = BITS(4) + 8;
sl@0
   670
            if (len > state->wbits) {
sl@0
   671
                strm->msg = (char *)"invalid window size";
sl@0
   672
                state->mode = BAD;
sl@0
   673
                break;
sl@0
   674
            }
sl@0
   675
            state->dmax = 1U << len;
sl@0
   676
            Tracev((stderr, "inflate:   zlib header ok\n"));
sl@0
   677
            strm->adler = state->check = adler32_r(0L, Z_NULL, 0);
sl@0
   678
            state->mode = hold & 0x200 ? DICTID : TYPE;
sl@0
   679
            INITBITS();
sl@0
   680
            break;
sl@0
   681
#ifdef GUNZIP
sl@0
   682
        case FLAGS:
sl@0
   683
            NEEDBITS(16);
sl@0
   684
            state->flags = (int)(hold);
sl@0
   685
            if ((state->flags & 0xff) != Z_DEFLATED) {
sl@0
   686
                strm->msg = (char *)"unknown compression method";
sl@0
   687
                state->mode = BAD;
sl@0
   688
                break;
sl@0
   689
            }
sl@0
   690
            if (state->flags & 0xe000) {
sl@0
   691
                strm->msg = (char *)"unknown header flags set";
sl@0
   692
                state->mode = BAD;
sl@0
   693
                break;
sl@0
   694
            }
sl@0
   695
            if (state->head != Z_NULL)
sl@0
   696
                state->head->text = (int)((hold >> 8) & 1);
sl@0
   697
            if (state->flags & 0x0200) CRC2(state->check, hold);
sl@0
   698
            INITBITS();
sl@0
   699
            state->mode = TIME;
sl@0
   700
        case TIME:
sl@0
   701
            NEEDBITS(32);
sl@0
   702
            if (state->head != Z_NULL)
sl@0
   703
                state->head->time = hold;
sl@0
   704
            if (state->flags & 0x0200) CRC4(state->check, hold);
sl@0
   705
            INITBITS();
sl@0
   706
            state->mode = OS;
sl@0
   707
        case OS:
sl@0
   708
            NEEDBITS(16);
sl@0
   709
            if (state->head != Z_NULL) {
sl@0
   710
                state->head->xflags = (int)(hold & 0xff);
sl@0
   711
                state->head->os = (int)(hold >> 8);
sl@0
   712
            }
sl@0
   713
            if (state->flags & 0x0200) CRC2(state->check, hold);
sl@0
   714
            INITBITS();
sl@0
   715
            state->mode = EXLEN;
sl@0
   716
        case EXLEN:
sl@0
   717
            if (state->flags & 0x0400) {
sl@0
   718
                NEEDBITS(16);
sl@0
   719
                state->length = (unsigned)(hold);
sl@0
   720
                if (state->head != Z_NULL)
sl@0
   721
                    state->head->extra_len = (unsigned)hold;
sl@0
   722
                if (state->flags & 0x0200) CRC2(state->check, hold);
sl@0
   723
                INITBITS();
sl@0
   724
            }
sl@0
   725
            else if (state->head != Z_NULL)
sl@0
   726
                state->head->extra = Z_NULL;
sl@0
   727
            state->mode = EXTRA;
sl@0
   728
        case EXTRA:
sl@0
   729
            if (state->flags & 0x0400) {
sl@0
   730
                copy = state->length;
sl@0
   731
                if (copy > have) copy = have;
sl@0
   732
                if (copy) {
sl@0
   733
                    if (state->head != Z_NULL &&
sl@0
   734
                        state->head->extra != Z_NULL) {
sl@0
   735
                        len = state->head->extra_len - state->length;
sl@0
   736
						// Added ignore here as next cannot be NULL 
sl@0
   737
						// a jump to inf_leave would occur first
sl@0
   738
						// coverity [var_deref_model]
sl@0
   739
                        zmemcpy(state->head->extra + len, next,
sl@0
   740
                                len + copy > state->head->extra_max ?
sl@0
   741
                                state->head->extra_max - len : copy);
sl@0
   742
                    }
sl@0
   743
                    if (state->flags & 0x0200)
sl@0
   744
                        state->check = crc32_r(state->check, next, copy);
sl@0
   745
                    have -= copy;
sl@0
   746
                    next += copy;
sl@0
   747
                    state->length -= copy;
sl@0
   748
                }
sl@0
   749
                if (state->length) goto inf_leave;
sl@0
   750
            }
sl@0
   751
            state->length = 0;
sl@0
   752
            state->mode = NAME;
sl@0
   753
        case NAME:
sl@0
   754
            if (state->flags & 0x0800) {
sl@0
   755
                if (have == 0) goto inf_leave;
sl@0
   756
                copy = 0;
sl@0
   757
                do {
sl@0
   758
                    len = (unsigned)(next[copy++]);
sl@0
   759
                    if (state->head != Z_NULL &&
sl@0
   760
                            state->head->name != Z_NULL &&
sl@0
   761
                            state->length < state->head->name_max)
sl@0
   762
                        state->head->name[state->length++] = len;
sl@0
   763
                } while (len && copy < have);
sl@0
   764
                if (state->flags & 0x0200)
sl@0
   765
                    state->check = crc32_r(state->check, next, copy);
sl@0
   766
                have -= copy;
sl@0
   767
                next += copy;
sl@0
   768
                if (len) goto inf_leave;
sl@0
   769
            }
sl@0
   770
            else if (state->head != Z_NULL)
sl@0
   771
                state->head->name = Z_NULL;
sl@0
   772
            state->length = 0;
sl@0
   773
            state->mode = COMMENT;
sl@0
   774
        case COMMENT:
sl@0
   775
            if (state->flags & 0x1000) {
sl@0
   776
                if (have == 0) goto inf_leave;
sl@0
   777
                copy = 0;
sl@0
   778
                do {
sl@0
   779
                    len = (unsigned)(next[copy++]);
sl@0
   780
                    if (state->head != Z_NULL &&
sl@0
   781
                            state->head->comment != Z_NULL &&
sl@0
   782
                            state->length < state->head->comm_max)
sl@0
   783
                        state->head->comment[state->length++] = len;
sl@0
   784
                } while (len && copy < have);
sl@0
   785
                if (state->flags & 0x0200)
sl@0
   786
                    state->check = crc32_r(state->check, next, copy);
sl@0
   787
                have -= copy;
sl@0
   788
                next += copy;
sl@0
   789
                if (len) goto inf_leave;
sl@0
   790
            }
sl@0
   791
            else if (state->head != Z_NULL)
sl@0
   792
                state->head->comment = Z_NULL;
sl@0
   793
            state->mode = HCRC;
sl@0
   794
        case HCRC:
sl@0
   795
            if (state->flags & 0x0200) {
sl@0
   796
                NEEDBITS(16);
sl@0
   797
                if (hold != (state->check & 0xffff)) {
sl@0
   798
                    strm->msg = (char *)"header crc mismatch";
sl@0
   799
                    state->mode = BAD;
sl@0
   800
                    break;
sl@0
   801
                }
sl@0
   802
                INITBITS();
sl@0
   803
            }
sl@0
   804
            if (state->head != Z_NULL) {
sl@0
   805
                state->head->hcrc = (int)((state->flags >> 9) & 1);
sl@0
   806
                state->head->done = 1;
sl@0
   807
            }
sl@0
   808
            strm->adler = state->check = crc32_r(0L, Z_NULL, 0);
sl@0
   809
            state->mode = TYPE;
sl@0
   810
            break;
sl@0
   811
#endif
sl@0
   812
        case DICTID:
sl@0
   813
            NEEDBITS(32);
sl@0
   814
            strm->adler = state->check = REVERSE(hold);
sl@0
   815
            INITBITS();
sl@0
   816
            state->mode = DICT;
sl@0
   817
        case DICT:
sl@0
   818
            if (state->havedict == 0) {
sl@0
   819
                RESTORE();
sl@0
   820
                return Z_NEED_DICT;
sl@0
   821
            }
sl@0
   822
            strm->adler = state->check = adler32_r(0L, Z_NULL, 0);
sl@0
   823
            state->mode = TYPE;
sl@0
   824
        case TYPE:
sl@0
   825
            if (flush == Z_BLOCK) goto inf_leave;
sl@0
   826
        case TYPEDO:
sl@0
   827
            if (state->last) {
sl@0
   828
                BYTEBITS();
sl@0
   829
                state->mode = CHECK;
sl@0
   830
                break;
sl@0
   831
            }
sl@0
   832
            NEEDBITS(3);
sl@0
   833
            state->last = BITS(1);
sl@0
   834
            DROPBITS(1);
sl@0
   835
            switch (BITS(2)) {
sl@0
   836
            case 0:                             /* stored block */
sl@0
   837
                Tracev((stderr, "inflate:     stored block%s\n",
sl@0
   838
                        state->last ? " (last)" : ""));
sl@0
   839
                state->mode = STORED;
sl@0
   840
                break;
sl@0
   841
            case 1:                             /* fixed block */
sl@0
   842
                fixedtables(state);
sl@0
   843
                Tracev((stderr, "inflate:     fixed codes block%s\n",
sl@0
   844
                        state->last ? " (last)" : ""));
sl@0
   845
                state->mode = LEN;              /* decode codes */
sl@0
   846
                break;
sl@0
   847
            case 2:                             /* dynamic block */
sl@0
   848
                Tracev((stderr, "inflate:     dynamic codes block%s\n",
sl@0
   849
                        state->last ? " (last)" : ""));
sl@0
   850
                state->mode = TABLE;
sl@0
   851
                break;
sl@0
   852
            case 3:
sl@0
   853
                strm->msg = (char *)"invalid block type";
sl@0
   854
                state->mode = BAD;
sl@0
   855
            }
sl@0
   856
            DROPBITS(2);
sl@0
   857
            break;
sl@0
   858
        case STORED:
sl@0
   859
            BYTEBITS();                         /* go to byte boundary */
sl@0
   860
            NEEDBITS(32);
sl@0
   861
            if ((hold & 0xffff) != ((hold >> 16) ^ 0xffff)) {
sl@0
   862
                strm->msg = (char *)"invalid stored block lengths";
sl@0
   863
                state->mode = BAD;
sl@0
   864
                break;
sl@0
   865
            }
sl@0
   866
            state->length = (unsigned)hold & 0xffff;
sl@0
   867
            Tracev((stderr, "inflate:       stored length %u\n",
sl@0
   868
                    state->length));
sl@0
   869
            INITBITS();
sl@0
   870
            state->mode = COPY;
sl@0
   871
        case COPY:
sl@0
   872
            copy = state->length;
sl@0
   873
            if (copy) {
sl@0
   874
                if (copy > have) copy = have;
sl@0
   875
                if (copy > left) copy = left;
sl@0
   876
                if (copy == 0) goto inf_leave;
sl@0
   877
                zmemcpy(put, next, copy);
sl@0
   878
                have -= copy;
sl@0
   879
                next += copy;
sl@0
   880
                left -= copy;
sl@0
   881
                put += copy;
sl@0
   882
                state->length -= copy;
sl@0
   883
                break;
sl@0
   884
            }
sl@0
   885
            Tracev((stderr, "inflate:       stored end\n"));
sl@0
   886
            state->mode = TYPE;
sl@0
   887
            break;
sl@0
   888
        case TABLE:
sl@0
   889
            NEEDBITS(14);
sl@0
   890
            state->nlen = BITS(5) + 257;
sl@0
   891
            DROPBITS(5);
sl@0
   892
            state->ndist = BITS(5) + 1;
sl@0
   893
            DROPBITS(5);
sl@0
   894
            state->ncode = BITS(4) + 4;
sl@0
   895
            DROPBITS(4);
sl@0
   896
#ifndef PKZIP_BUG_WORKAROUND
sl@0
   897
            if (state->nlen > 286 || state->ndist > 30) {
sl@0
   898
                strm->msg = (char *)"too many length or distance symbols";
sl@0
   899
                state->mode = BAD;
sl@0
   900
                break;
sl@0
   901
            }
sl@0
   902
#endif
sl@0
   903
            Tracev((stderr, "inflate:       table sizes ok\n"));
sl@0
   904
            state->have = 0;
sl@0
   905
            state->mode = LENLENS;
sl@0
   906
        case LENLENS:
sl@0
   907
            while (state->have < state->ncode) {
sl@0
   908
                NEEDBITS(3);
sl@0
   909
                state->lens[order[state->have++]] = (unsigned short)BITS(3);
sl@0
   910
                DROPBITS(3);
sl@0
   911
            }
sl@0
   912
            while (state->have < 19)
sl@0
   913
                state->lens[order[state->have++]] = 0;
sl@0
   914
            state->next = state->codes;
sl@0
   915
            state->lencode = (code const FAR *)(state->next);
sl@0
   916
            state->lenbits = 7;
sl@0
   917
            ret = inflate_table(CODES, state->lens, 19, &(state->next),
sl@0
   918
                                &(state->lenbits), state->work);
sl@0
   919
            if (ret) {
sl@0
   920
                strm->msg = (char *)"invalid code lengths set";
sl@0
   921
                state->mode = BAD;
sl@0
   922
                break;
sl@0
   923
            }
sl@0
   924
            Tracev((stderr, "inflate:       code lengths ok\n"));
sl@0
   925
            state->have = 0;
sl@0
   926
            state->mode = CODELENS;
sl@0
   927
        case CODELENS:
sl@0
   928
            while (state->have < state->nlen + state->ndist) {
sl@0
   929
                for (;;) {
sl@0
   930
                    this = state->lencode[BITS(state->lenbits)];
sl@0
   931
                    if ((unsigned)(this.bits) <= bits) break;
sl@0
   932
                    PULLBYTE();
sl@0
   933
                }
sl@0
   934
                if (this.val < 16) {
sl@0
   935
                    NEEDBITS(this.bits);
sl@0
   936
                    DROPBITS(this.bits);
sl@0
   937
                    state->lens[state->have++] = this.val;
sl@0
   938
                }
sl@0
   939
                else {
sl@0
   940
                    if (this.val == 16) {
sl@0
   941
                        NEEDBITS(this.bits + 2);
sl@0
   942
                        DROPBITS(this.bits);
sl@0
   943
                        if (state->have == 0) {
sl@0
   944
                            strm->msg = (char *)"invalid bit length repeat";
sl@0
   945
                            state->mode = BAD;
sl@0
   946
                            break;
sl@0
   947
                        }
sl@0
   948
                        len = state->lens[state->have - 1];
sl@0
   949
                        copy = 3 + BITS(2);
sl@0
   950
                        DROPBITS(2);
sl@0
   951
                    }
sl@0
   952
                    else if (this.val == 17) {
sl@0
   953
                        NEEDBITS(this.bits + 3);
sl@0
   954
                        DROPBITS(this.bits);
sl@0
   955
                        len = 0;
sl@0
   956
                        copy = 3 + BITS(3);
sl@0
   957
                        DROPBITS(3);
sl@0
   958
                    }
sl@0
   959
                    else {
sl@0
   960
                        NEEDBITS(this.bits + 7);
sl@0
   961
                        DROPBITS(this.bits);
sl@0
   962
                        len = 0;
sl@0
   963
                        copy = 11 + BITS(7);
sl@0
   964
                        DROPBITS(7);
sl@0
   965
                    }
sl@0
   966
                    if (state->have + copy > state->nlen + state->ndist) {
sl@0
   967
                        strm->msg = (char *)"invalid bit length repeat";
sl@0
   968
                        state->mode = BAD;
sl@0
   969
                        break;
sl@0
   970
                    }
sl@0
   971
                    while (copy--)
sl@0
   972
                        state->lens[state->have++] = (unsigned short)len;
sl@0
   973
                }
sl@0
   974
            }
sl@0
   975
sl@0
   976
            /* handle error breaks in while */
sl@0
   977
            if (state->mode == BAD) break;
sl@0
   978
sl@0
   979
            /* build code tables */
sl@0
   980
            state->next = state->codes;
sl@0
   981
            state->lencode = (code const FAR *)(state->next);
sl@0
   982
            state->lenbits = 9;
sl@0
   983
            ret = inflate_table(LENS, state->lens, state->nlen, &(state->next),
sl@0
   984
                                &(state->lenbits), state->work);
sl@0
   985
            if (ret) {
sl@0
   986
                strm->msg = (char *)"invalid literal/lengths set";
sl@0
   987
                state->mode = BAD;
sl@0
   988
                break;
sl@0
   989
            }
sl@0
   990
            state->distcode = (code const FAR *)(state->next);
sl@0
   991
            state->distbits = 6;
sl@0
   992
            ret = inflate_table(DISTS, state->lens + state->nlen, state->ndist,
sl@0
   993
                            &(state->next), &(state->distbits), state->work);
sl@0
   994
            if (ret) {
sl@0
   995
                strm->msg = (char *)"invalid distances set";
sl@0
   996
                state->mode = BAD;
sl@0
   997
                break;
sl@0
   998
            }
sl@0
   999
            Tracev((stderr, "inflate:       codes ok\n"));
sl@0
  1000
            state->mode = LEN;
sl@0
  1001
        case LEN:
sl@0
  1002
            if (have >= 6 && left >= 258) {
sl@0
  1003
                RESTORE();
sl@0
  1004
                inflate_fast(strm, out);
sl@0
  1005
                LOAD();
sl@0
  1006
                break;
sl@0
  1007
            }
sl@0
  1008
            for (;;) {
sl@0
  1009
                this = state->lencode[BITS(state->lenbits)];
sl@0
  1010
                if ((unsigned)(this.bits) <= bits) break;
sl@0
  1011
                PULLBYTE();
sl@0
  1012
            }
sl@0
  1013
            if (this.op && (this.op & 0xf0) == 0) {
sl@0
  1014
                last = this;
sl@0
  1015
                for (;;) {
sl@0
  1016
                    this = state->lencode[last.val +
sl@0
  1017
                            (BITS(last.bits + last.op) >> last.bits)];
sl@0
  1018
                    if ((unsigned)(last.bits + this.bits) <= bits) break;
sl@0
  1019
                    PULLBYTE();
sl@0
  1020
                }
sl@0
  1021
                DROPBITS(last.bits);
sl@0
  1022
            }
sl@0
  1023
            DROPBITS(this.bits);
sl@0
  1024
            state->length = (unsigned)this.val;
sl@0
  1025
            if ((int)(this.op) == 0) {
sl@0
  1026
                Tracevv((stderr, this.val >= 0x20 && this.val < 0x7f ?
sl@0
  1027
                        "inflate:         literal '%c'\n" :
sl@0
  1028
                        "inflate:         literal 0x%02x\n", this.val));
sl@0
  1029
                state->mode = LIT;
sl@0
  1030
                break;
sl@0
  1031
            }
sl@0
  1032
            if (this.op & 32) {
sl@0
  1033
                Tracevv((stderr, "inflate:         end of block\n"));
sl@0
  1034
                state->mode = TYPE;
sl@0
  1035
                break;
sl@0
  1036
            }
sl@0
  1037
            if (this.op & 64) {
sl@0
  1038
                strm->msg = (char *)"invalid literal/length code";
sl@0
  1039
                state->mode = BAD;
sl@0
  1040
                break;
sl@0
  1041
            }
sl@0
  1042
            state->extra = (unsigned)(this.op) & 15;
sl@0
  1043
            state->mode = LENEXT;
sl@0
  1044
        case LENEXT:
sl@0
  1045
            if (state->extra) {
sl@0
  1046
                NEEDBITS(state->extra);
sl@0
  1047
                state->length += BITS(state->extra);
sl@0
  1048
                DROPBITS(state->extra);
sl@0
  1049
            }
sl@0
  1050
            Tracevv((stderr, "inflate:         length %u\n", state->length));
sl@0
  1051
            state->mode = DIST;
sl@0
  1052
        case DIST:
sl@0
  1053
            for (;;) {
sl@0
  1054
                this = state->distcode[BITS(state->distbits)];
sl@0
  1055
                if ((unsigned)(this.bits) <= bits) break;
sl@0
  1056
                PULLBYTE();
sl@0
  1057
            }
sl@0
  1058
            if ((this.op & 0xf0) == 0) {
sl@0
  1059
                last = this;
sl@0
  1060
                for (;;) {
sl@0
  1061
                    this = state->distcode[last.val +
sl@0
  1062
                            (BITS(last.bits + last.op) >> last.bits)];
sl@0
  1063
                    if ((unsigned)(last.bits + this.bits) <= bits) break;
sl@0
  1064
                    PULLBYTE();
sl@0
  1065
                }
sl@0
  1066
                DROPBITS(last.bits);
sl@0
  1067
            }
sl@0
  1068
            DROPBITS(this.bits);
sl@0
  1069
            if (this.op & 64) {
sl@0
  1070
                strm->msg = (char *)"invalid distance code";
sl@0
  1071
                state->mode = BAD;
sl@0
  1072
                break;
sl@0
  1073
            }
sl@0
  1074
            state->offset = (unsigned)this.val;
sl@0
  1075
            state->extra = (unsigned)(this.op) & 15;
sl@0
  1076
            state->mode = DISTEXT;
sl@0
  1077
        case DISTEXT:
sl@0
  1078
            if (state->extra) {
sl@0
  1079
                NEEDBITS(state->extra);
sl@0
  1080
                state->offset += BITS(state->extra);
sl@0
  1081
                DROPBITS(state->extra);
sl@0
  1082
            }
sl@0
  1083
#ifdef INFLATE_STRICT
sl@0
  1084
            if (state->offset > state->dmax) {
sl@0
  1085
                strm->msg = (char *)"invalid distance too far back";
sl@0
  1086
                state->mode = BAD;
sl@0
  1087
                break;
sl@0
  1088
            }
sl@0
  1089
#endif
sl@0
  1090
            if (state->offset > state->whave + out - left) {
sl@0
  1091
                strm->msg = (char *)"invalid distance too far back";
sl@0
  1092
                state->mode = BAD;
sl@0
  1093
                break;
sl@0
  1094
            }
sl@0
  1095
            Tracevv((stderr, "inflate:         distance %u\n", state->offset));
sl@0
  1096
            state->mode = MATCH;
sl@0
  1097
        case MATCH:
sl@0
  1098
            if (left == 0) goto inf_leave;
sl@0
  1099
            copy = out - left;
sl@0
  1100
            if (state->offset > copy) {         /* copy from window */
sl@0
  1101
                copy = state->offset - copy;
sl@0
  1102
                if (copy > state->write) {
sl@0
  1103
                    copy -= state->write;
sl@0
  1104
                    from = state->window + (state->wsize - copy);
sl@0
  1105
                }
sl@0
  1106
                else
sl@0
  1107
                    from = state->window + (state->write - copy);
sl@0
  1108
                if (copy > state->length) copy = state->length;
sl@0
  1109
            }
sl@0
  1110
            else {                              /* copy from output */
sl@0
  1111
                from = put - state->offset;
sl@0
  1112
                copy = state->length;
sl@0
  1113
            }
sl@0
  1114
            if (copy > left) copy = left;
sl@0
  1115
            left -= copy;
sl@0
  1116
            state->length -= copy;
sl@0
  1117
            do {
sl@0
  1118
                *put++ = *from++;
sl@0
  1119
            } while (--copy);
sl@0
  1120
            if (state->length == 0) state->mode = LEN;
sl@0
  1121
            break;
sl@0
  1122
        case LIT:
sl@0
  1123
            if (left == 0) goto inf_leave;
sl@0
  1124
            *put++ = (unsigned char)(state->length);
sl@0
  1125
            left--;
sl@0
  1126
            state->mode = LEN;
sl@0
  1127
            break;
sl@0
  1128
        case CHECK:
sl@0
  1129
            if (state->wrap) {
sl@0
  1130
                NEEDBITS(32);
sl@0
  1131
                out -= left;
sl@0
  1132
                strm->total_out += out;
sl@0
  1133
                state->total += out;
sl@0
  1134
                if (out)
sl@0
  1135
                    strm->adler = state->check =
sl@0
  1136
                        UPDATE(state->check, put - out, out);
sl@0
  1137
                out = left;
sl@0
  1138
                if ((
sl@0
  1139
#ifdef GUNZIP
sl@0
  1140
                     state->flags ? hold :
sl@0
  1141
#endif
sl@0
  1142
                     REVERSE(hold)) != state->check) {
sl@0
  1143
                    strm->msg = (char *)"incorrect data check";
sl@0
  1144
                    state->mode = BAD;
sl@0
  1145
                    break;
sl@0
  1146
                }
sl@0
  1147
                INITBITS();
sl@0
  1148
                Tracev((stderr, "inflate:   check matches trailer\n"));
sl@0
  1149
            }
sl@0
  1150
#ifdef GUNZIP
sl@0
  1151
            state->mode = LENGTH;
sl@0
  1152
        case LENGTH:
sl@0
  1153
            if (state->wrap && state->flags) {
sl@0
  1154
                NEEDBITS(32);
sl@0
  1155
                if (hold != (state->total & 0xffffffffUL)) {
sl@0
  1156
                    strm->msg = (char *)"incorrect length check";
sl@0
  1157
                    state->mode = BAD;
sl@0
  1158
                    break;
sl@0
  1159
                }
sl@0
  1160
                INITBITS();
sl@0
  1161
                Tracev((stderr, "inflate:   length matches trailer\n"));
sl@0
  1162
            }
sl@0
  1163
#endif
sl@0
  1164
            state->mode = DONE;
sl@0
  1165
        case DONE:
sl@0
  1166
            ret = Z_STREAM_END;
sl@0
  1167
            goto inf_leave;
sl@0
  1168
        case BAD:
sl@0
  1169
            ret = Z_DATA_ERROR;
sl@0
  1170
            goto inf_leave;
sl@0
  1171
        case MEM:
sl@0
  1172
            return Z_MEM_ERROR;
sl@0
  1173
        case SYNC:
sl@0
  1174
        default:
sl@0
  1175
            return Z_STREAM_ERROR;
sl@0
  1176
        }
sl@0
  1177
sl@0
  1178
    /*
sl@0
  1179
       Return from inflate(), updating the total counts and the check value.
sl@0
  1180
       If there was no progress during the inflate() call, return a buffer
sl@0
  1181
       error.  Call updatewindow() to create and/or update the window state.
sl@0
  1182
       Note: a memory error from inflate() is non-recoverable.
sl@0
  1183
     */
sl@0
  1184
  inf_leave:
sl@0
  1185
    RESTORE();
sl@0
  1186
    if (state->wsize || (state->mode < CHECK && out != strm->avail_out))
sl@0
  1187
        if (updatewindow(strm, out)) {
sl@0
  1188
            state->mode = MEM;
sl@0
  1189
            return Z_MEM_ERROR;
sl@0
  1190
        }
sl@0
  1191
    in -= strm->avail_in;
sl@0
  1192
    out -= strm->avail_out;
sl@0
  1193
    strm->total_in += in;
sl@0
  1194
    strm->total_out += out;
sl@0
  1195
    state->total += out;
sl@0
  1196
    if (state->wrap && out)
sl@0
  1197
        strm->adler = state->check =
sl@0
  1198
            UPDATE(state->check, strm->next_out - out, out);
sl@0
  1199
    strm->data_type = state->bits + (state->last ? 64 : 0) +
sl@0
  1200
                      (state->mode == TYPE ? 128 : 0);
sl@0
  1201
    if (((in == 0 && out == 0) || flush == Z_FINISH) && ret == Z_OK)
sl@0
  1202
        ret = Z_BUF_ERROR;
sl@0
  1203
    return ret;
sl@0
  1204
}
sl@0
  1205
#ifdef __SYMBIAN32__
sl@0
  1206
EXPORT_C  int inflateEnd_r (z_streamp strm)
sl@0
  1207
#else
sl@0
  1208
int ZEXPORT inflateEnd(strm)
sl@0
  1209
z_streamp strm;
sl@0
  1210
#endif //__SYMBIAN32__
sl@0
  1211
{
sl@0
  1212
    struct inflate_state FAR *state;
sl@0
  1213
    if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == (free_func)0)
sl@0
  1214
        return Z_STREAM_ERROR;
sl@0
  1215
    state = (struct inflate_state FAR *)strm->state;
sl@0
  1216
    if (state->window != Z_NULL) ZFREE(strm, state->window);
sl@0
  1217
    ZFREE(strm, strm->state);
sl@0
  1218
    strm->state = Z_NULL;
sl@0
  1219
    Tracev((stderr, "inflate: end\n"));
sl@0
  1220
    return Z_OK;
sl@0
  1221
}
sl@0
  1222
#ifdef __SYMBIAN32__
sl@0
  1223
EXPORT_C int  inflateSetDictionary_r (z_streamp strm,const Bytef *  dictionary,uInt dictLength)
sl@0
  1224
#else
sl@0
  1225
int ZEXPORT inflateSetDictionary(strm, dictionary, dictLength)
sl@0
  1226
z_streamp strm;
sl@0
  1227
const Bytef *dictionary;
sl@0
  1228
uInt dictLength;
sl@0
  1229
#endif //__SYMBIAN32__
sl@0
  1230
{
sl@0
  1231
    struct inflate_state FAR *state;
sl@0
  1232
    unsigned long id;
sl@0
  1233
sl@0
  1234
    /* check state */
sl@0
  1235
    if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
sl@0
  1236
    state = (struct inflate_state FAR *)strm->state;
sl@0
  1237
    if (state->wrap != 0 && state->mode != DICT)
sl@0
  1238
        return Z_STREAM_ERROR;
sl@0
  1239
sl@0
  1240
    /* check for correct dictionary id */
sl@0
  1241
    if (state->mode == DICT) {
sl@0
  1242
        id = adler32_r(0L, Z_NULL, 0);
sl@0
  1243
        id = adler32_r(id, dictionary, dictLength);
sl@0
  1244
        if (id != state->check)
sl@0
  1245
            return Z_DATA_ERROR;
sl@0
  1246
    }
sl@0
  1247
sl@0
  1248
    /* copy dictionary to window */
sl@0
  1249
    if (updatewindow(strm, strm->avail_out)) {
sl@0
  1250
        state->mode = MEM;
sl@0
  1251
        return Z_MEM_ERROR;
sl@0
  1252
    }
sl@0
  1253
    if (dictLength > state->wsize) {
sl@0
  1254
        zmemcpy(state->window, dictionary + dictLength - state->wsize,
sl@0
  1255
                state->wsize);
sl@0
  1256
        state->whave = state->wsize;
sl@0
  1257
    }
sl@0
  1258
    else {
sl@0
  1259
        zmemcpy(state->window + state->wsize - dictLength, dictionary,
sl@0
  1260
                dictLength);
sl@0
  1261
        state->whave = dictLength;
sl@0
  1262
    }
sl@0
  1263
    state->havedict = 1;
sl@0
  1264
    Tracev((stderr, "inflate:   dictionary set\n"));
sl@0
  1265
    return Z_OK;
sl@0
  1266
}
sl@0
  1267
sl@0
  1268
sl@0
  1269
#ifdef __SYMBIAN32__
sl@0
  1270
EXPORT_C int  inflateGetHeader_r(z_streamp strm, gz_headerp head)
sl@0
  1271
#else
sl@0
  1272
int ZEXPORT inflateGetHeader(strm, head)
sl@0
  1273
z_streamp strm;
sl@0
  1274
gz_headerp head;
sl@0
  1275
#endif //__SYMBIAN32__
sl@0
  1276
{
sl@0
  1277
    struct inflate_state FAR *state;
sl@0
  1278
sl@0
  1279
    /* check state */
sl@0
  1280
    if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
sl@0
  1281
    state = (struct inflate_state FAR *)strm->state;
sl@0
  1282
    if ((state->wrap & 2) == 0) return Z_STREAM_ERROR;
sl@0
  1283
sl@0
  1284
    /* save header structure */
sl@0
  1285
    state->head = head;
sl@0
  1286
    head->done = 0;
sl@0
  1287
    return Z_OK;
sl@0
  1288
}
sl@0
  1289
sl@0
  1290
/*
sl@0
  1291
   Search buf[0..len-1] for the pattern: 0, 0, 0xff, 0xff.  Return when found
sl@0
  1292
   or when out of input.  When called, *have is the number of pattern bytes
sl@0
  1293
   found in order so far, in 0..3.  On return *have is updated to the new
sl@0
  1294
   state.  If on return *have equals four, then the pattern was found and the
sl@0
  1295
   return value is how many bytes were read including the last byte of the
sl@0
  1296
   pattern.  If *have is less than four, then the pattern has not been found
sl@0
  1297
   yet and the return value is len.  In the latter case, syncsearch() can be
sl@0
  1298
   called again with more data and the *have state.  *have is initialized to
sl@0
  1299
   zero for the first call.
sl@0
  1300
 */
sl@0
  1301
 
sl@0
  1302
#ifdef __SYMBIAN32__
sl@0
  1303
local unsigned syncsearch(unsigned FAR * have,unsigned char FAR *  buf,unsigned len)
sl@0
  1304
#else
sl@0
  1305
local unsigned syncsearch(have, buf, len)
sl@0
  1306
unsigned FAR *have;
sl@0
  1307
unsigned char FAR *buf;
sl@0
  1308
unsigned len;
sl@0
  1309
#endif //__SYMBIAN32__
sl@0
  1310
{
sl@0
  1311
    unsigned got;
sl@0
  1312
    unsigned next;
sl@0
  1313
sl@0
  1314
    got = *have;
sl@0
  1315
    next = 0;
sl@0
  1316
    while (next < len && got < 4) {
sl@0
  1317
        if ((int)(buf[next]) == (got < 2 ? 0 : 0xff))
sl@0
  1318
            got++;
sl@0
  1319
        else if (buf[next])
sl@0
  1320
            got = 0;
sl@0
  1321
        else
sl@0
  1322
            got = 4 - got;
sl@0
  1323
        next++;
sl@0
  1324
    }
sl@0
  1325
    *have = got;
sl@0
  1326
    return next;
sl@0
  1327
}
sl@0
  1328
sl@0
  1329
sl@0
  1330
#ifdef __SYMBIAN32__
sl@0
  1331
EXPORT_C int  inflateSync_r (z_streamp strm)
sl@0
  1332
#else
sl@0
  1333
int ZEXPORT inflateSync(strm)
sl@0
  1334
z_streamp strm;
sl@0
  1335
#endif //__SYMBIAN32__
sl@0
  1336
{
sl@0
  1337
    unsigned len;               /* number of bytes to look at or looked at */
sl@0
  1338
    unsigned long in, out;      /* temporary to save total_in and total_out */
sl@0
  1339
    unsigned char buf[4];       /* to restore bit buffer to byte string */
sl@0
  1340
    struct inflate_state FAR *state;
sl@0
  1341
sl@0
  1342
    /* check parameters */
sl@0
  1343
    if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
sl@0
  1344
    state = (struct inflate_state FAR *)strm->state;
sl@0
  1345
    if (strm->avail_in == 0 && state->bits < 8) return Z_BUF_ERROR;
sl@0
  1346
sl@0
  1347
    /* if first time, start search in bit buffer */
sl@0
  1348
    if (state->mode != SYNC) {
sl@0
  1349
        state->mode = SYNC;
sl@0
  1350
        state->hold <<= state->bits & 7;
sl@0
  1351
        state->bits -= state->bits & 7;
sl@0
  1352
        len = 0;
sl@0
  1353
        while (state->bits >= 8) {
sl@0
  1354
            buf[len++] = (unsigned char)(state->hold);
sl@0
  1355
            state->hold >>= 8;
sl@0
  1356
            state->bits -= 8;
sl@0
  1357
        }
sl@0
  1358
        state->have = 0;
sl@0
  1359
        syncsearch(&(state->have), buf, len);
sl@0
  1360
    }
sl@0
  1361
sl@0
  1362
    /* search available input */
sl@0
  1363
    len = syncsearch(&(state->have), strm->next_in, strm->avail_in);
sl@0
  1364
    strm->avail_in -= len;
sl@0
  1365
    strm->next_in += len;
sl@0
  1366
    strm->total_in += len;
sl@0
  1367
sl@0
  1368
    /* return no joy or set up to restart inflate() on a new block */
sl@0
  1369
    if (state->have != 4) return Z_DATA_ERROR;
sl@0
  1370
    in = strm->total_in;  out = strm->total_out;
sl@0
  1371
    inflateReset_r(strm);
sl@0
  1372
    strm->total_in = in;  strm->total_out = out;
sl@0
  1373
    state->mode = TYPE;
sl@0
  1374
    return Z_OK;
sl@0
  1375
}
sl@0
  1376
sl@0
  1377
/*
sl@0
  1378
   Returns true if inflate is currently at the end of a block generated by
sl@0
  1379
   Z_SYNC_FLUSH or Z_FULL_FLUSH. This function is used by one PPP
sl@0
  1380
   implementation to provide an additional safety check. PPP uses
sl@0
  1381
   Z_SYNC_FLUSH but removes the length bytes of the resulting empty stored
sl@0
  1382
   block. When decompressing, PPP checks that at the end of input packet,
sl@0
  1383
   inflate is waiting for these length bytes.
sl@0
  1384
 */
sl@0
  1385
#ifdef __SYMBIAN32__
sl@0
  1386
EXPORT_C  int inflateSyncPoint_r (z_streamp strm)
sl@0
  1387
#else
sl@0
  1388
int ZEXPORT inflateSyncPoint(strm)
sl@0
  1389
z_streamp strm;
sl@0
  1390
#endif //__SYMBIAN32__
sl@0
  1391
{
sl@0
  1392
    struct inflate_state FAR *state;
sl@0
  1393
sl@0
  1394
    if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
sl@0
  1395
    state = (struct inflate_state FAR *)strm->state;
sl@0
  1396
    return state->mode == STORED && state->bits == 0;
sl@0
  1397
}
sl@0
  1398
sl@0
  1399
sl@0
  1400
#ifdef __SYMBIAN32__
sl@0
  1401
EXPORT_C int inflateCopy_r(z_streamp dest, z_streamp source)
sl@0
  1402
#else
sl@0
  1403
int ZEXPORT inflateCopy(dest, source)
sl@0
  1404
z_streamp dest;
sl@0
  1405
z_streamp source;
sl@0
  1406
#endif //__SYMBIAN32__
sl@0
  1407
{
sl@0
  1408
    struct inflate_state FAR *state;
sl@0
  1409
    struct inflate_state FAR *copy;
sl@0
  1410
    unsigned char FAR *window;
sl@0
  1411
    unsigned wsize;
sl@0
  1412
sl@0
  1413
    /* check input */
sl@0
  1414
    if (dest == Z_NULL || source == Z_NULL || source->state == Z_NULL ||
sl@0
  1415
        source->zalloc == (alloc_func)0 || source->zfree == (free_func)0)
sl@0
  1416
        return Z_STREAM_ERROR;
sl@0
  1417
    state = (struct inflate_state FAR *)source->state;
sl@0
  1418
sl@0
  1419
    /* allocate space */
sl@0
  1420
    copy = (struct inflate_state FAR *)
sl@0
  1421
           ZALLOC(source, 1, sizeof(struct inflate_state));
sl@0
  1422
    if (copy == Z_NULL) return Z_MEM_ERROR;
sl@0
  1423
    window = Z_NULL;
sl@0
  1424
    if (state->window != Z_NULL) {
sl@0
  1425
        window = (unsigned char FAR *)
sl@0
  1426
                 ZALLOC(source, 1U << state->wbits, sizeof(unsigned char));
sl@0
  1427
        if (window == Z_NULL) {
sl@0
  1428
            ZFREE(source, copy);
sl@0
  1429
            return Z_MEM_ERROR;
sl@0
  1430
        }
sl@0
  1431
    }
sl@0
  1432
sl@0
  1433
    /* copy state */
sl@0
  1434
    zmemcpy(dest, source, sizeof(z_stream));
sl@0
  1435
    zmemcpy(copy, state, sizeof(struct inflate_state));
sl@0
  1436
    if (state->lencode >= state->codes &&
sl@0
  1437
        state->lencode <= state->codes + ENOUGH - 1) {
sl@0
  1438
        copy->lencode = copy->codes + (state->lencode - state->codes);
sl@0
  1439
        copy->distcode = copy->codes + (state->distcode - state->codes);
sl@0
  1440
    }
sl@0
  1441
    copy->next = copy->codes + (state->next - state->codes);
sl@0
  1442
    if (window != Z_NULL) {
sl@0
  1443
        wsize = 1U << state->wbits;
sl@0
  1444
        zmemcpy(window, state->window, wsize);
sl@0
  1445
    }
sl@0
  1446
    copy->window = window;
sl@0
  1447
    dest->state = (struct internal_state FAR *)copy;
sl@0
  1448
    return Z_OK;
sl@0
  1449
}
sl@0
  1450
sl@0
  1451
sl@0
  1452
sl@0
  1453