Home | History | Annotate | Line # | Download | only in zlib
      1  1.8  christos /*	$NetBSD: zutil.h,v 1.8 2024/09/22 19:12:28 christos Exp $	*/
      2  1.1  christos 
      3  1.1  christos /* zutil.h -- internal interface and configuration of the compression library
      4  1.8  christos  * Copyright (C) 1995-2024 Jean-loup Gailly, Mark Adler
      5  1.1  christos  * For conditions of distribution and use, see copyright notice in zlib.h
      6  1.1  christos  */
      7  1.1  christos 
      8  1.1  christos /* WARNING: this file should *not* be used by applications. It is
      9  1.1  christos    part of the implementation of the compression library and is
     10  1.1  christos    subject to change. Applications should only use zlib.h.
     11  1.1  christos  */
     12  1.1  christos 
     13  1.6  christos /* @(#) Id */
     14  1.1  christos 
     15  1.1  christos #ifndef ZUTIL_H
     16  1.1  christos #define ZUTIL_H
     17  1.1  christos 
     18  1.5  christos #ifdef HAVE_HIDDEN
     19  1.5  christos #  define ZLIB_INTERNAL __attribute__((visibility ("hidden")))
     20  1.5  christos #else
     21  1.5  christos #  define ZLIB_INTERNAL
     22  1.5  christos #endif
     23  1.5  christos 
     24  1.1  christos #include "zlib.h"
     25  1.1  christos 
     26  1.5  christos #if defined(STDC) && !defined(Z_SOLO)
     27  1.5  christos #  if defined(_KERNEL) || defined(_STANDALONE)
     28  1.5  christos #    include <lib/libkern/libkern.h>
     29  1.5  christos #  else
     30  1.5  christos #    if !(defined(_WIN32_WCE) && defined(_MSC_VER))
     31  1.5  christos #      include <stddef.h>
     32  1.5  christos #    endif
     33  1.5  christos #    include <string.h>
     34  1.5  christos #    include <stdlib.h>
     35  1.1  christos #  endif
     36  1.1  christos #endif
     37  1.5  christos 
     38  1.1  christos #ifndef local
     39  1.1  christos #  define local static
     40  1.1  christos #endif
     41  1.5  christos /* since "static" is used to mean two completely different things in C, we
     42  1.5  christos    define "local" for the non-static meaning of "static", for readability
     43  1.5  christos    (compile with -Dlocal if your debugger can't find static symbols) */
     44  1.1  christos 
     45  1.1  christos typedef unsigned char  uch;
     46  1.1  christos typedef uch FAR uchf;
     47  1.1  christos typedef unsigned short ush;
     48  1.1  christos typedef ush FAR ushf;
     49  1.1  christos typedef unsigned long  ulg;
     50  1.1  christos 
     51  1.6  christos #if !defined(Z_U8) && !defined(Z_SOLO) && defined(STDC)
     52  1.7  christos # if defined(_KERNEL) || defined(_STANDALONE)
     53  1.7  christos #  ifdef _LP64
     54  1.7  christos #   define Z_U8 unsigned long
     55  1.7  christos #  else
     56  1.7  christos #   define Z_U8 unsigned long long
     57  1.7  christos #  endif
     58  1.7  christos # else
     59  1.6  christos #  include <limits.h>
     60  1.6  christos #  if (ULONG_MAX == 0xffffffffffffffff)
     61  1.6  christos #    define Z_U8 unsigned long
     62  1.6  christos #  elif (ULLONG_MAX == 0xffffffffffffffff)
     63  1.6  christos #    define Z_U8 unsigned long long
     64  1.6  christos #  elif (UINT_MAX == 0xffffffffffffffff)
     65  1.6  christos #    define Z_U8 unsigned
     66  1.6  christos #  endif
     67  1.7  christos # endif
     68  1.6  christos #endif
     69  1.6  christos 
     70  1.5  christos extern z_const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
     71  1.1  christos /* (size given to avoid silly warnings with Visual C++) */
     72  1.1  christos 
     73  1.8  christos #define ERR_MSG(err) z_errmsg[(err) < -6 || (err) > 2 ? 9 : 2 - (err)]
     74  1.1  christos 
     75  1.1  christos #define ERR_RETURN(strm,err) \
     76  1.4  christos   return (strm->msg = __UNCONST(ERR_MSG(err)), (err))
     77  1.1  christos /* To be used only when the state is known to be valid */
     78  1.1  christos 
     79  1.1  christos         /* common constants */
     80  1.1  christos 
     81  1.1  christos #ifndef DEF_WBITS
     82  1.1  christos #  define DEF_WBITS MAX_WBITS
     83  1.1  christos #endif
     84  1.1  christos /* default windowBits for decompression. MAX_WBITS is for compression only */
     85  1.1  christos 
     86  1.1  christos #if MAX_MEM_LEVEL >= 8
     87  1.1  christos #  define DEF_MEM_LEVEL 8
     88  1.1  christos #else
     89  1.1  christos #  define DEF_MEM_LEVEL  MAX_MEM_LEVEL
     90  1.1  christos #endif
     91  1.1  christos /* default memLevel */
     92  1.1  christos 
     93  1.1  christos #define STORED_BLOCK 0
     94  1.1  christos #define STATIC_TREES 1
     95  1.1  christos #define DYN_TREES    2
     96  1.1  christos /* The three kinds of block type */
     97  1.1  christos 
     98  1.1  christos #define MIN_MATCH  3
     99  1.1  christos #define MAX_MATCH  258
    100  1.1  christos /* The minimum and maximum match lengths */
    101  1.1  christos 
    102  1.1  christos #define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
    103  1.1  christos 
    104  1.1  christos         /* target dependencies */
    105  1.1  christos 
    106  1.1  christos #if defined(MSDOS) || (defined(WINDOWS) && !defined(WIN32))
    107  1.1  christos #  define OS_CODE  0x00
    108  1.5  christos #  ifndef Z_SOLO
    109  1.5  christos #    if defined(__TURBOC__) || defined(__BORLANDC__)
    110  1.5  christos #      if (__STDC__ == 1) && (defined(__LARGE__) || defined(__COMPACT__))
    111  1.5  christos          /* Allow compilation with ANSI keywords only enabled */
    112  1.5  christos          void _Cdecl farfree( void *block );
    113  1.5  christos          void *_Cdecl farmalloc( unsigned long nbytes );
    114  1.5  christos #      else
    115  1.5  christos #        include <alloc.h>
    116  1.5  christos #      endif
    117  1.5  christos #    else /* MSC or DJGPP */
    118  1.5  christos #      include <malloc.h>
    119  1.1  christos #    endif
    120  1.1  christos #  endif
    121  1.1  christos #endif
    122  1.1  christos 
    123  1.1  christos #ifdef AMIGA
    124  1.5  christos #  define OS_CODE  1
    125  1.1  christos #endif
    126  1.1  christos 
    127  1.1  christos #if defined(VAXC) || defined(VMS)
    128  1.5  christos #  define OS_CODE  2
    129  1.1  christos #  define F_OPEN(name, mode) \
    130  1.1  christos      fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
    131  1.1  christos #endif
    132  1.1  christos 
    133  1.5  christos #ifdef __370__
    134  1.5  christos #  if __TARGET_LIB__ < 0x20000000
    135  1.5  christos #    define OS_CODE 4
    136  1.5  christos #  elif __TARGET_LIB__ < 0x40000000
    137  1.5  christos #    define OS_CODE 11
    138  1.5  christos #  else
    139  1.5  christos #    define OS_CODE 8
    140  1.5  christos #  endif
    141  1.5  christos #endif
    142  1.5  christos 
    143  1.1  christos #if defined(ATARI) || defined(atarist)
    144  1.5  christos #  define OS_CODE  5
    145  1.1  christos #endif
    146  1.1  christos 
    147  1.1  christos #ifdef OS2
    148  1.5  christos #  define OS_CODE  6
    149  1.5  christos #  if defined(M_I86) && !defined(Z_SOLO)
    150  1.5  christos #    include <malloc.h>
    151  1.1  christos #  endif
    152  1.1  christos #endif
    153  1.1  christos 
    154  1.8  christos #if defined(MACOS)
    155  1.5  christos #  define OS_CODE  7
    156  1.1  christos #endif
    157  1.1  christos 
    158  1.5  christos #ifdef __acorn
    159  1.5  christos #  define OS_CODE 13
    160  1.5  christos #endif
    161  1.5  christos 
    162  1.5  christos #if defined(WIN32) && !defined(__CYGWIN__)
    163  1.5  christos #  define OS_CODE  10
    164  1.1  christos #endif
    165  1.1  christos 
    166  1.5  christos #ifdef _BEOS_
    167  1.5  christos #  define OS_CODE  16
    168  1.5  christos #endif
    169  1.5  christos 
    170  1.5  christos #ifdef __TOS_OS400__
    171  1.5  christos #  define OS_CODE 18
    172  1.1  christos #endif
    173  1.1  christos 
    174  1.5  christos #ifdef __APPLE__
    175  1.5  christos #  define OS_CODE 19
    176  1.1  christos #endif
    177  1.1  christos 
    178  1.5  christos #if defined(__BORLANDC__) && !defined(MSDOS)
    179  1.5  christos   #pragma warn -8004
    180  1.5  christos   #pragma warn -8008
    181  1.5  christos   #pragma warn -8066
    182  1.5  christos #endif
    183  1.5  christos 
    184  1.5  christos /* provide prototypes for these when building zlib without LFS */
    185  1.5  christos #if !defined(_WIN32) && \
    186  1.5  christos     (!defined(_LARGEFILE64_SOURCE) || _LFS64_LARGEFILE-0 == 0)
    187  1.8  christos     ZEXTERN uLong ZEXPORT adler32_combine64(uLong, uLong, z_off_t);
    188  1.8  christos     ZEXTERN uLong ZEXPORT crc32_combine64(uLong, uLong, z_off_t);
    189  1.8  christos     ZEXTERN uLong ZEXPORT crc32_combine_gen64(z_off_t);
    190  1.5  christos #endif
    191  1.5  christos 
    192  1.1  christos         /* common defaults */
    193  1.1  christos 
    194  1.1  christos #ifndef OS_CODE
    195  1.5  christos #  define OS_CODE  3     /* assume Unix */
    196  1.1  christos #endif
    197  1.1  christos 
    198  1.1  christos #ifndef F_OPEN
    199  1.1  christos #  define F_OPEN(name, mode) fopen((name), (mode))
    200  1.1  christos #endif
    201  1.1  christos 
    202  1.1  christos          /* functions */
    203  1.1  christos 
    204  1.5  christos #if defined(pyr) || defined(Z_SOLO)
    205  1.1  christos #  define NO_MEMCPY
    206  1.1  christos #endif
    207  1.1  christos #if defined(SMALL_MEDIUM) && !defined(_MSC_VER) && !defined(__SC__)
    208  1.1  christos  /* Use our own functions for small and medium model with MSC <= 5.0.
    209  1.1  christos   * You may have to use the same strategy for Borland C (untested).
    210  1.1  christos   * The __SC__ check is for Symantec.
    211  1.1  christos   */
    212  1.1  christos #  define NO_MEMCPY
    213  1.1  christos #endif
    214  1.1  christos #if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY)
    215  1.1  christos #  define HAVE_MEMCPY
    216  1.1  christos #endif
    217  1.1  christos #ifdef HAVE_MEMCPY
    218  1.1  christos #  ifdef SMALL_MEDIUM /* MSDOS small or medium model */
    219  1.1  christos #    define zmemcpy _fmemcpy
    220  1.1  christos #    define zmemcmp _fmemcmp
    221  1.1  christos #    define zmemzero(dest, len) _fmemset(dest, 0, len)
    222  1.1  christos #  else
    223  1.1  christos #    define zmemcpy memcpy
    224  1.1  christos #    define zmemcmp memcmp
    225  1.1  christos #    define zmemzero(dest, len) memset(dest, 0, len)
    226  1.1  christos #  endif
    227  1.1  christos #else
    228  1.8  christos    void ZLIB_INTERNAL zmemcpy(Bytef* dest, const Bytef* source, uInt len);
    229  1.8  christos    int ZLIB_INTERNAL zmemcmp(const Bytef* s1, const Bytef* s2, uInt len);
    230  1.8  christos    void ZLIB_INTERNAL zmemzero(Bytef* dest, uInt len);
    231  1.1  christos #endif
    232  1.1  christos 
    233  1.1  christos /* Diagnostic functions */
    234  1.5  christos #ifdef ZLIB_DEBUG
    235  1.1  christos #  include <stdio.h>
    236  1.5  christos    extern int ZLIB_INTERNAL z_verbose;
    237  1.8  christos    extern void ZLIB_INTERNAL z_error(char *m);
    238  1.1  christos #  define Assert(cond,msg) {if(!(cond)) z_error(msg);}
    239  1.1  christos #  define Trace(x) {if (z_verbose>=0) fprintf x ;}
    240  1.1  christos #  define Tracev(x) {if (z_verbose>0) fprintf x ;}
    241  1.1  christos #  define Tracevv(x) {if (z_verbose>1) fprintf x ;}
    242  1.1  christos #  define Tracec(c,x) {if (z_verbose>0 && (c)) fprintf x ;}
    243  1.1  christos #  define Tracecv(c,x) {if (z_verbose>1 && (c)) fprintf x ;}
    244  1.1  christos #else
    245  1.1  christos #  define Assert(cond,msg)
    246  1.1  christos #  define Trace(x)
    247  1.1  christos #  define Tracev(x)
    248  1.1  christos #  define Tracevv(x)
    249  1.1  christos #  define Tracec(c,x)
    250  1.1  christos #  define Tracecv(c,x)
    251  1.1  christos #endif
    252  1.1  christos 
    253  1.5  christos #ifndef Z_SOLO
    254  1.8  christos    voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, unsigned items,
    255  1.8  christos                                 unsigned size);
    256  1.8  christos    void ZLIB_INTERNAL zcfree(voidpf opaque, voidpf ptr);
    257  1.5  christos #endif
    258  1.1  christos 
    259  1.1  christos #define ZALLOC(strm, items, size) \
    260  1.1  christos            (*((strm)->zalloc))((strm)->opaque, (items), (size))
    261  1.1  christos #define ZFREE(strm, addr)  (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
    262  1.1  christos #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
    263  1.1  christos 
    264  1.5  christos /* Reverse the bytes in a 32-bit value */
    265  1.5  christos #define ZSWAP32(q) ((((q) >> 24) & 0xff) + (((q) >> 8) & 0xff00) + \
    266  1.5  christos                     (((q) & 0xff00) << 8) + (((q) & 0xff) << 24))
    267  1.5  christos 
    268  1.1  christos #endif /* ZUTIL_H */
    269