17c478bd9Sstevel@tonic-gate /*
2*c9431fa1Sahl  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
37c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
47c478bd9Sstevel@tonic-gate  */
57c478bd9Sstevel@tonic-gate 
67c478bd9Sstevel@tonic-gate /*
77c478bd9Sstevel@tonic-gate  * Updated from zlib-1.0.4 to zlib-1.1.3 by James Carlson.
87c478bd9Sstevel@tonic-gate  *
97c478bd9Sstevel@tonic-gate  * This file is derived from various .h and .c files from the zlib-1.0.4
107c478bd9Sstevel@tonic-gate  * distribution by Jean-loup Gailly and Mark Adler, with some additions
117c478bd9Sstevel@tonic-gate  * by Paul Mackerras to aid in implementing Deflate compression and
127c478bd9Sstevel@tonic-gate  * decompression for PPP packets.  See zlib.h for conditions of
137c478bd9Sstevel@tonic-gate  * distribution and use.
147c478bd9Sstevel@tonic-gate  *
157c478bd9Sstevel@tonic-gate  * Changes that have been made include:
167c478bd9Sstevel@tonic-gate  * - added Z_PACKET_FLUSH (see zlib.h for details)
177c478bd9Sstevel@tonic-gate  * - added inflateIncomp and deflateOutputPending
187c478bd9Sstevel@tonic-gate  * - allow strm->next_out to be NULL, meaning discard the output
197c478bd9Sstevel@tonic-gate  *
207c478bd9Sstevel@tonic-gate  * $Id: zlib.c,v 1.11 1998/09/13 23:37:12 paulus Exp $
217c478bd9Sstevel@tonic-gate  */
227c478bd9Sstevel@tonic-gate 
237c478bd9Sstevel@tonic-gate /*
247c478bd9Sstevel@tonic-gate  *  ==FILEVERSION 971210==
257c478bd9Sstevel@tonic-gate  *
267c478bd9Sstevel@tonic-gate  * This marker is used by the Linux installation script to determine
277c478bd9Sstevel@tonic-gate  * whether an up-to-date version of this file is already installed.
287c478bd9Sstevel@tonic-gate  */
297c478bd9Sstevel@tonic-gate 
307c478bd9Sstevel@tonic-gate #define	NO_DUMMY_DECL
317c478bd9Sstevel@tonic-gate #define	NO_ZCFUNCS
327c478bd9Sstevel@tonic-gate #define	MY_ZCALLOC
337c478bd9Sstevel@tonic-gate 
347c478bd9Sstevel@tonic-gate #if defined(__FreeBSD__) && (defined(KERNEL) || defined(_KERNEL))
357c478bd9Sstevel@tonic-gate #define	inflate	inflate_ppp	/* FreeBSD already has an inflate :-( */
367c478bd9Sstevel@tonic-gate #endif
377c478bd9Sstevel@tonic-gate 
387c478bd9Sstevel@tonic-gate 
397c478bd9Sstevel@tonic-gate /* +++ zutil.h */
407c478bd9Sstevel@tonic-gate /*
417c478bd9Sstevel@tonic-gate  *
427c478bd9Sstevel@tonic-gate  * zutil.h -- internal interface and configuration of the compression library
437c478bd9Sstevel@tonic-gate  * Copyright (C) 1995-1998 Jean-loup Gailly.
447c478bd9Sstevel@tonic-gate  * For conditions of distribution and use, see copyright notice in zlib.h
457c478bd9Sstevel@tonic-gate  */
467c478bd9Sstevel@tonic-gate 
477c478bd9Sstevel@tonic-gate /*
487c478bd9Sstevel@tonic-gate  * WARNING: this file should *not* be used by applications. It is part
497c478bd9Sstevel@tonic-gate  * of the implementation of the compression library and is subject to
507c478bd9Sstevel@tonic-gate  * change. Applications should only use zlib.h.
517c478bd9Sstevel@tonic-gate  */
527c478bd9Sstevel@tonic-gate 
537c478bd9Sstevel@tonic-gate /* From: zutil.h,v 1.16 1996/07/24 13:41:13 me Exp $ */
547c478bd9Sstevel@tonic-gate 
557c478bd9Sstevel@tonic-gate #ifndef _Z_UTIL_H
567c478bd9Sstevel@tonic-gate #define	_Z_UTIL_H
577c478bd9Sstevel@tonic-gate 
587c478bd9Sstevel@tonic-gate #include "zlib.h"
597c478bd9Sstevel@tonic-gate 
607c478bd9Sstevel@tonic-gate #if defined(KERNEL) || defined(_KERNEL)
617c478bd9Sstevel@tonic-gate /* Assume this is a *BSD or SVR4 kernel */
627c478bd9Sstevel@tonic-gate #include <sys/types.h>
637c478bd9Sstevel@tonic-gate #include <sys/time.h>
647c478bd9Sstevel@tonic-gate #include <sys/systm.h>
657c478bd9Sstevel@tonic-gate #ifdef SOL2
667c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h>
677c478bd9Sstevel@tonic-gate #endif
687c478bd9Sstevel@tonic-gate #define	HAVE_MEMCPY
697c478bd9Sstevel@tonic-gate #define	memcmp		bcmp
707c478bd9Sstevel@tonic-gate 
717c478bd9Sstevel@tonic-gate #else
727c478bd9Sstevel@tonic-gate #if defined(__KERNEL__)
737c478bd9Sstevel@tonic-gate /* Assume this is a Linux kernel */
747c478bd9Sstevel@tonic-gate #include <linux/string.h>
757c478bd9Sstevel@tonic-gate #define	HAVE_MEMCPY
767c478bd9Sstevel@tonic-gate 
777c478bd9Sstevel@tonic-gate #else /* not kernel */
787c478bd9Sstevel@tonic-gate 
797c478bd9Sstevel@tonic-gate #include <stddef.h>
807c478bd9Sstevel@tonic-gate #ifdef NO_ERRNO_H
817c478bd9Sstevel@tonic-gate extern int errno;
827c478bd9Sstevel@tonic-gate #else
837c478bd9Sstevel@tonic-gate #include <errno.h>
847c478bd9Sstevel@tonic-gate #endif
857c478bd9Sstevel@tonic-gate #ifdef STDC
867c478bd9Sstevel@tonic-gate #include <string.h>
877c478bd9Sstevel@tonic-gate #include <stdlib.h>
887c478bd9Sstevel@tonic-gate #endif
897c478bd9Sstevel@tonic-gate #endif /* __KERNEL__ */
907c478bd9Sstevel@tonic-gate #endif /* _KERNEL || KERNEL */
917c478bd9Sstevel@tonic-gate 
927c478bd9Sstevel@tonic-gate #ifndef local
937c478bd9Sstevel@tonic-gate #define	local static
947c478bd9Sstevel@tonic-gate #endif
957c478bd9Sstevel@tonic-gate /* compile with -Dlocal if your debugger can't find static symbols */
967c478bd9Sstevel@tonic-gate 
977c478bd9Sstevel@tonic-gate typedef unsigned char  uch;
987c478bd9Sstevel@tonic-gate typedef uch FAR uchf;
997c478bd9Sstevel@tonic-gate typedef unsigned short ush;
1007c478bd9Sstevel@tonic-gate typedef ush FAR ushf;
1017c478bd9Sstevel@tonic-gate typedef unsigned long  ulg;
1027c478bd9Sstevel@tonic-gate 
103*c9431fa1Sahl static const char *z_errmsg[10]; /* indexed by 2-zlib_error */
1047c478bd9Sstevel@tonic-gate /* (size given to avoid silly warnings with Visual C++) */
1057c478bd9Sstevel@tonic-gate 
1067c478bd9Sstevel@tonic-gate #define	ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)]
1077c478bd9Sstevel@tonic-gate 
1087c478bd9Sstevel@tonic-gate #define	ERR_RETURN(strm, err) \
1097c478bd9Sstevel@tonic-gate 	return (strm->msg = ERR_MSG(err), (err))
1107c478bd9Sstevel@tonic-gate /* To be used only when the state is known to be valid */
1117c478bd9Sstevel@tonic-gate 
1127c478bd9Sstevel@tonic-gate 	/* common constants */
1137c478bd9Sstevel@tonic-gate 
1147c478bd9Sstevel@tonic-gate #ifndef DEF_WBITS
1157c478bd9Sstevel@tonic-gate #define	DEF_WBITS MAX_WBITS
1167c478bd9Sstevel@tonic-gate #endif
1177c478bd9Sstevel@tonic-gate /* default windowBits for decompression. MAX_WBITS is for compression only */
1187c478bd9Sstevel@tonic-gate 
1197c478bd9Sstevel@tonic-gate #if MAX_MEM_LEVEL >= 8
1207c478bd9Sstevel@tonic-gate #define	DEF_MEM_LEVEL 8
1217c478bd9Sstevel@tonic-gate #else
1227c478bd9Sstevel@tonic-gate #define	DEF_MEM_LEVEL  MAX_MEM_LEVEL
1237c478bd9Sstevel@tonic-gate #endif
1247c478bd9Sstevel@tonic-gate /* default memLevel */
1257c478bd9Sstevel@tonic-gate 
1267c478bd9Sstevel@tonic-gate #define	STORED_BLOCK 0
1277c478bd9Sstevel@tonic-gate #define	STATIC_TREES 1
1287c478bd9Sstevel@tonic-gate #define	DYN_TREES    2
1297c478bd9Sstevel@tonic-gate /* The three kinds of block type */
1307c478bd9Sstevel@tonic-gate 
1317c478bd9Sstevel@tonic-gate #define	MIN_MATCH  3
1327c478bd9Sstevel@tonic-gate #define	MAX_MATCH  258
1337c478bd9Sstevel@tonic-gate /* The minimum and maximum match lengths */
1347c478bd9Sstevel@tonic-gate 
1357c478bd9Sstevel@tonic-gate #define	PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
1367c478bd9Sstevel@tonic-gate 
1377c478bd9Sstevel@tonic-gate 	/* target dependencies */
1387c478bd9Sstevel@tonic-gate 
1397c478bd9Sstevel@tonic-gate #ifdef MSDOS
1407c478bd9Sstevel@tonic-gate #define	OS_CODE  0x00
1417c478bd9Sstevel@tonic-gate #ifdef __TURBOC__
1427c478bd9Sstevel@tonic-gate #include <alloc.h>
1437c478bd9Sstevel@tonic-gate #else /* MSC or DJGPP */
1447c478bd9Sstevel@tonic-gate #include <malloc.h>
1457c478bd9Sstevel@tonic-gate #endif
1467c478bd9Sstevel@tonic-gate #endif
1477c478bd9Sstevel@tonic-gate 
1487c478bd9Sstevel@tonic-gate #ifdef OS2
1497c478bd9Sstevel@tonic-gate #define	OS_CODE  0x06
1507c478bd9Sstevel@tonic-gate #endif
1517c478bd9Sstevel@tonic-gate 
1527c478bd9Sstevel@tonic-gate #ifdef WIN32 /* Window 95 & Windows NT */
1537c478bd9Sstevel@tonic-gate #define	OS_CODE  0x0b
1547c478bd9Sstevel@tonic-gate #endif
1557c478bd9Sstevel@tonic-gate 
1567c478bd9Sstevel@tonic-gate #if defined(VAXC) || defined(VMS)
1577c478bd9Sstevel@tonic-gate #define	OS_CODE  0x02
1587c478bd9Sstevel@tonic-gate #define	F_OPEN(name, mode) \
1597c478bd9Sstevel@tonic-gate 	fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
1607c478bd9Sstevel@tonic-gate #endif
1617c478bd9Sstevel@tonic-gate 
1627c478bd9Sstevel@tonic-gate #ifdef AMIGA
1637c478bd9Sstevel@tonic-gate #define	OS_CODE  0x01
1647c478bd9Sstevel@tonic-gate #endif
1657c478bd9Sstevel@tonic-gate 
1667c478bd9Sstevel@tonic-gate #if defined(ATARI) || defined(atarist)
1677c478bd9Sstevel@tonic-gate #define	OS_CODE  0x05
1687c478bd9Sstevel@tonic-gate #endif
1697c478bd9Sstevel@tonic-gate 
1707c478bd9Sstevel@tonic-gate #ifdef MACOS
1717c478bd9Sstevel@tonic-gate #define	OS_CODE  0x07
1727c478bd9Sstevel@tonic-gate #endif
1737c478bd9Sstevel@tonic-gate 
1747c478bd9Sstevel@tonic-gate #ifdef __50SERIES /* Prime/PRIMOS */
1757c478bd9Sstevel@tonic-gate #define	OS_CODE  0x0F
1767c478bd9Sstevel@tonic-gate #endif
1777c478bd9Sstevel@tonic-gate 
1787c478bd9Sstevel@tonic-gate #ifdef TOPS20
1797c478bd9Sstevel@tonic-gate #define	OS_CODE  0x0a
1807c478bd9Sstevel@tonic-gate #endif
1817c478bd9Sstevel@tonic-gate 
1827c478bd9Sstevel@tonic-gate #if defined(_BEOS_) || defined(RISCOS)
1837c478bd9Sstevel@tonic-gate #define	fdopen(fd, mode) NULL /* No fdopen() */
1847c478bd9Sstevel@tonic-gate #endif
1857c478bd9Sstevel@tonic-gate 
1867c478bd9Sstevel@tonic-gate 	/* Common defaults */
1877c478bd9Sstevel@tonic-gate 
1887c478bd9Sstevel@tonic-gate #ifndef OS_CODE
1897c478bd9Sstevel@tonic-gate #define	OS_CODE  0x03  /* assume Unix */
1907c478bd9Sstevel@tonic-gate #endif
1917c478bd9Sstevel@tonic-gate 
1927c478bd9Sstevel@tonic-gate #ifndef F_OPEN
1937c478bd9Sstevel@tonic-gate #define	F_OPEN(name, mode) fopen((name), (mode))
1947c478bd9Sstevel@tonic-gate #endif
1957c478bd9Sstevel@tonic-gate 
1967c478bd9Sstevel@tonic-gate 	/* functions */
1977c478bd9Sstevel@tonic-gate 
1987c478bd9Sstevel@tonic-gate #ifdef HAVE_STRERROR
1997c478bd9Sstevel@tonic-gate extern char *strerror OF((int));
2007c478bd9Sstevel@tonic-gate #define	zstrerror(errnum) strerror(errnum)
2017c478bd9Sstevel@tonic-gate #else
2027c478bd9Sstevel@tonic-gate #define	zstrerror(errnum) ""
2037c478bd9Sstevel@tonic-gate #endif
2047c478bd9Sstevel@tonic-gate 
2057c478bd9Sstevel@tonic-gate #if defined(pyr)
2067c478bd9Sstevel@tonic-gate #define	NO_MEMCPY
2077c478bd9Sstevel@tonic-gate #endif
2087c478bd9Sstevel@tonic-gate #if (defined(M_I86SM) || defined(M_I86MM)) && !defined(_MSC_VER)
2097c478bd9Sstevel@tonic-gate /*
2107c478bd9Sstevel@tonic-gate  * Use our own functions for small and medium model with MSC <= 5.0.
2117c478bd9Sstevel@tonic-gate  * You may have to use the same strategy for Borland C (untested).
2127c478bd9Sstevel@tonic-gate  */
2137c478bd9Sstevel@tonic-gate #define	NO_MEMCPY
2147c478bd9Sstevel@tonic-gate #endif
2157c478bd9Sstevel@tonic-gate #if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY)
2167c478bd9Sstevel@tonic-gate #define	HAVE_MEMCPY
2177c478bd9Sstevel@tonic-gate #endif
2187c478bd9Sstevel@tonic-gate #ifdef HAVE_MEMCPY
2197c478bd9Sstevel@tonic-gate #ifdef SMALL_MEDIUM /* MSDOS small or medium model */
2207c478bd9Sstevel@tonic-gate #define	zmemcpy _fmemcpy
2217c478bd9Sstevel@tonic-gate #define	zmemcmp _fmemcmp
2227c478bd9Sstevel@tonic-gate #define	zmemzero(dest, len) _fmemset(dest, 0, len)
2237c478bd9Sstevel@tonic-gate #else
2247c478bd9Sstevel@tonic-gate #define	zmemcpy (void) memcpy
2257c478bd9Sstevel@tonic-gate #define	zmemcmp memcmp
2267c478bd9Sstevel@tonic-gate #define	zmemzero(dest, len) (void) memset(dest, 0, len)
2277c478bd9Sstevel@tonic-gate #endif
2287c478bd9Sstevel@tonic-gate #else
2297c478bd9Sstevel@tonic-gate extern void zmemcpy  OF((Bytef* dest, const Bytef* source, uInt len));
2307c478bd9Sstevel@tonic-gate extern int  zmemcmp  OF((const Bytef* s1, const Bytef* s2, uInt len));
2317c478bd9Sstevel@tonic-gate extern void zmemzero OF((Bytef* dest, uInt len));
2327c478bd9Sstevel@tonic-gate #endif
2337c478bd9Sstevel@tonic-gate 
2347c478bd9Sstevel@tonic-gate /* Diagnostic functions */
2357c478bd9Sstevel@tonic-gate #ifdef DEBUG_ZLIB
2367c478bd9Sstevel@tonic-gate #include <stdio.h>
2377c478bd9Sstevel@tonic-gate #ifndef verbose
2387c478bd9Sstevel@tonic-gate #define	verbose 0
2397c478bd9Sstevel@tonic-gate #endif
2407c478bd9Sstevel@tonic-gate extern void z_error    OF((char *m));
2417c478bd9Sstevel@tonic-gate #define	Assert(cond, msg) { if (!(cond)) z_error(msg); }
2427c478bd9Sstevel@tonic-gate #define	Trace(x) {if (z_verbose >= 0) fprintf x; }
2437c478bd9Sstevel@tonic-gate #define	Tracev(x) {if (z_verbose > 0) fprintf x; }
2447c478bd9Sstevel@tonic-gate #define	Tracevv(x) {if (z_verbose > 1) fprintf x; }
2457c478bd9Sstevel@tonic-gate #define	Tracec(c, x) {if (z_verbose > 0 && (c)) fprintf x; }
2467c478bd9Sstevel@tonic-gate #define	Tracecv(c, x) {if (z_verbose > 1 && (c)) fprintf x; }
2477c478bd9Sstevel@tonic-gate #else
2487c478bd9Sstevel@tonic-gate #if defined(SOL2) && defined(DEBUG)
2497c478bd9Sstevel@tonic-gate #define	Assert(cond, msg)	((cond) ? ((void)0) : panic(msg))
2507c478bd9Sstevel@tonic-gate #else
2517c478bd9Sstevel@tonic-gate #define	Assert(cond, msg)	((void)0)
2527c478bd9Sstevel@tonic-gate #endif
2537c478bd9Sstevel@tonic-gate #define	Trace(x)	((void)0)
2547c478bd9Sstevel@tonic-gate #define	Tracev(x)	((void)0)
2557c478bd9Sstevel@tonic-gate #define	Tracevv(x)	((void)0)
2567c478bd9Sstevel@tonic-gate #define	Tracec(c, x)	((void)0)
2577c478bd9Sstevel@tonic-gate #define	Tracecv(c, x)	((void)0)
2587c478bd9Sstevel@tonic-gate #endif
2597c478bd9Sstevel@tonic-gate 
2607c478bd9Sstevel@tonic-gate 
2617c478bd9Sstevel@tonic-gate typedef uLong (*check_func) OF((uLong check, const Bytef *buf, uInt len));
2627c478bd9Sstevel@tonic-gate 
2637c478bd9Sstevel@tonic-gate /* voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size)); */
2647c478bd9Sstevel@tonic-gate /* void   zcfree  OF((voidpf opaque, voidpf ptr)); */
2657c478bd9Sstevel@tonic-gate 
2667c478bd9Sstevel@tonic-gate #define	ZALLOC(strm, items, size) \
2677c478bd9Sstevel@tonic-gate 	(*((strm)->zalloc))((strm)->opaque, (items), (size))
2687c478bd9Sstevel@tonic-gate #define	ZFREE(strm, addr)  (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
2697c478bd9Sstevel@tonic-gate #define	TRY_FREE(s, p) {if (p) ZFREE(s, p); }
2707c478bd9Sstevel@tonic-gate 
2717c478bd9Sstevel@tonic-gate #endif /* _Z_UTIL_H */
2727c478bd9Sstevel@tonic-gate /* --- zutil.h */
2737c478bd9Sstevel@tonic-gate 
2747c478bd9Sstevel@tonic-gate /* +++ deflate.h */
2757c478bd9Sstevel@tonic-gate /*
2767c478bd9Sstevel@tonic-gate  * deflate.h -- internal compression state
2777c478bd9Sstevel@tonic-gate  * Copyright (C) 1995-1998 Jean-loup Gailly
2787c478bd9Sstevel@tonic-gate  * For conditions of distribution and use, see copyright notice in zlib.h
2797c478bd9Sstevel@tonic-gate  */
2807c478bd9Sstevel@tonic-gate 
2817c478bd9Sstevel@tonic-gate /*
2827c478bd9Sstevel@tonic-gate  * WARNING: this file should *not* be used by applications. It is part
2837c478bd9Sstevel@tonic-gate  * of the implementation of the compression library and is subject to
2847c478bd9Sstevel@tonic-gate  * change. Applications should only use zlib.h.
2857c478bd9Sstevel@tonic-gate  */
2867c478bd9Sstevel@tonic-gate 
2877c478bd9Sstevel@tonic-gate /* From: deflate.h,v 1.10 1996/07/02 12:41:00 me Exp $ */
2887c478bd9Sstevel@tonic-gate 
2897c478bd9Sstevel@tonic-gate #ifndef _DEFLATE_H
2907c478bd9Sstevel@tonic-gate #define	_DEFLATE_H
2917c478bd9Sstevel@tonic-gate 
2927c478bd9Sstevel@tonic-gate /* #include "zutil.h" */
2937c478bd9Sstevel@tonic-gate 
2947c478bd9Sstevel@tonic-gate /*
2957c478bd9Sstevel@tonic-gate  * ===========================================================================
2967c478bd9Sstevel@tonic-gate  * Internal compression state.
2977c478bd9Sstevel@tonic-gate  */
2987c478bd9Sstevel@tonic-gate 
2997c478bd9Sstevel@tonic-gate #define	LENGTH_CODES 29
3007c478bd9Sstevel@tonic-gate /* number of length codes, not counting the special END_BLOCK code */
3017c478bd9Sstevel@tonic-gate 
3027c478bd9Sstevel@tonic-gate #define	LITERALS  256
3037c478bd9Sstevel@tonic-gate /* number of literal bytes 0..255 */
3047c478bd9Sstevel@tonic-gate 
3057c478bd9Sstevel@tonic-gate #define	L_CODES (LITERALS+1+LENGTH_CODES)
3067c478bd9Sstevel@tonic-gate /* number of Literal or Length codes, including the END_BLOCK code */
3077c478bd9Sstevel@tonic-gate 
3087c478bd9Sstevel@tonic-gate #define	D_CODES   30
3097c478bd9Sstevel@tonic-gate /* number of distance codes */
3107c478bd9Sstevel@tonic-gate 
3117c478bd9Sstevel@tonic-gate #define	BL_CODES  19
3127c478bd9Sstevel@tonic-gate /* number of codes used to transfer the bit lengths */
3137c478bd9Sstevel@tonic-gate 
3147c478bd9Sstevel@tonic-gate #define	HEAP_SIZE (2*L_CODES+1)
3157c478bd9Sstevel@tonic-gate /* maximum heap size */
3167c478bd9Sstevel@tonic-gate 
3177c478bd9Sstevel@tonic-gate #define	MAX_BITS 15
3187c478bd9Sstevel@tonic-gate /* All codes must not exceed MAX_BITS bits */
3197c478bd9Sstevel@tonic-gate 
3207c478bd9Sstevel@tonic-gate #define	INIT_STATE    42
3217c478bd9Sstevel@tonic-gate #define	BUSY_STATE   113
3227c478bd9Sstevel@tonic-gate #define	FINISH_STATE 666
3237c478bd9Sstevel@tonic-gate /* Stream status */
3247c478bd9Sstevel@tonic-gate 
3257c478bd9Sstevel@tonic-gate 
3267c478bd9Sstevel@tonic-gate /* Data structure describing a single value and its code string. */
3277c478bd9Sstevel@tonic-gate typedef struct ct_data_s {
3287c478bd9Sstevel@tonic-gate 	union {
3297c478bd9Sstevel@tonic-gate 		ush freq;	/* frequency count */
3307c478bd9Sstevel@tonic-gate 		ush code;	/* bit string */
3317c478bd9Sstevel@tonic-gate 	} fc;
3327c478bd9Sstevel@tonic-gate 	union {
3337c478bd9Sstevel@tonic-gate 		ush dad;	/* father node in Huffman tree */
3347c478bd9Sstevel@tonic-gate 		ush len;	/* length of bit string */
3357c478bd9Sstevel@tonic-gate 	} dl;
3367c478bd9Sstevel@tonic-gate } FAR ct_data;
3377c478bd9Sstevel@tonic-gate 
3387c478bd9Sstevel@tonic-gate #define	Freq fc.freq
3397c478bd9Sstevel@tonic-gate #define	Code fc.code
3407c478bd9Sstevel@tonic-gate #define	Dad  dl.dad
3417c478bd9Sstevel@tonic-gate #define	Len  dl.len
3427c478bd9Sstevel@tonic-gate 
3437c478bd9Sstevel@tonic-gate typedef struct static_tree_desc_s  static_tree_desc;
3447c478bd9Sstevel@tonic-gate 
3457c478bd9Sstevel@tonic-gate typedef struct tree_desc_s {
3467c478bd9Sstevel@tonic-gate 	ct_data *dyn_tree;	/* the dynamic tree */
3477c478bd9Sstevel@tonic-gate 	int	max_code;	/* largest code with non zero frequency */
3487c478bd9Sstevel@tonic-gate 	static_tree_desc *stat_desc;	/* the corresponding static tree */
3497c478bd9Sstevel@tonic-gate } FAR tree_desc;
3507c478bd9Sstevel@tonic-gate 
3517c478bd9Sstevel@tonic-gate typedef ush Pos;
3527c478bd9Sstevel@tonic-gate typedef Pos FAR Posf;
3537c478bd9Sstevel@tonic-gate typedef unsigned IPos;
3547c478bd9Sstevel@tonic-gate 
3557c478bd9Sstevel@tonic-gate /*
3567c478bd9Sstevel@tonic-gate  * A Pos is an index in the character window. We use short instead of
3577c478bd9Sstevel@tonic-gate  * int to save space in the various tables. IPos is used only for
3587c478bd9Sstevel@tonic-gate  * parameter passing.
3597c478bd9Sstevel@tonic-gate  */
3607c478bd9Sstevel@tonic-gate 
3617c478bd9Sstevel@tonic-gate typedef struct deflate_state {
3627c478bd9Sstevel@tonic-gate 	z_streamp strm;	/* pointer back to this zlib stream */
3637c478bd9Sstevel@tonic-gate 	int   status;	/* as the name implies */
3647c478bd9Sstevel@tonic-gate 	Bytef *pending_buf;	/* output still pending */
3657c478bd9Sstevel@tonic-gate 	ulg   pending_buf_size;	/* size of pending_buf */
3667c478bd9Sstevel@tonic-gate 	Bytef *pending_out;	/* next pending byte to output to the stream */
3677c478bd9Sstevel@tonic-gate 	int   pending;	/* nb of bytes in the pending buffer */
3687c478bd9Sstevel@tonic-gate 	int   noheader;	/* suppress zlib header and adler32 */
3697c478bd9Sstevel@tonic-gate 	Byte  data_type;	/* UNKNOWN, BINARY or ASCII */
3707c478bd9Sstevel@tonic-gate 	Byte  method;	/* STORED (for zip only) or DEFLATED */
3717c478bd9Sstevel@tonic-gate 	/* value of flush param for previous deflate call */
3727c478bd9Sstevel@tonic-gate 	int   last_flush;
3737c478bd9Sstevel@tonic-gate 
3747c478bd9Sstevel@tonic-gate 	/* used by deflate.c: */
3757c478bd9Sstevel@tonic-gate 
3767c478bd9Sstevel@tonic-gate 	uInt  w_size;	/* LZ77 window size (32K by default) */
3777c478bd9Sstevel@tonic-gate 	uInt  w_bits;	/* log2(w_size)  (8..16) */
3787c478bd9Sstevel@tonic-gate 	uInt  w_mask;	/* w_size - 1 */
3797c478bd9Sstevel@tonic-gate 
3807c478bd9Sstevel@tonic-gate 	Bytef *window;
3817c478bd9Sstevel@tonic-gate 	/*
3827c478bd9Sstevel@tonic-gate 	 * Sliding window. Input bytes are read into the second half
3837c478bd9Sstevel@tonic-gate 	 * of the window, and move to the first half later to keep a
3847c478bd9Sstevel@tonic-gate 	 * dictionary of at least wSize bytes. With this organization,
3857c478bd9Sstevel@tonic-gate 	 * matches are limited to a distance of wSize-MAX_MATCH bytes,
3867c478bd9Sstevel@tonic-gate 	 * but this ensures that IO is always performed with a length
3877c478bd9Sstevel@tonic-gate 	 * multiple of the block size. Also, it limits the window size
3887c478bd9Sstevel@tonic-gate 	 * to 64K, which is quite useful on MSDOS.  To do: use the
3897c478bd9Sstevel@tonic-gate 	 * user input buffer as sliding window.
3907c478bd9Sstevel@tonic-gate 	 */
3917c478bd9Sstevel@tonic-gate 
3927c478bd9Sstevel@tonic-gate 	ulg window_size;
3937c478bd9Sstevel@tonic-gate 	/*
3947c478bd9Sstevel@tonic-gate 	 * Actual size of window: 2*wSize, except when the user input
3957c478bd9Sstevel@tonic-gate 	 * buffer is directly used as sliding window.
3967c478bd9Sstevel@tonic-gate 	 */
3977c478bd9Sstevel@tonic-gate 
3987c478bd9Sstevel@tonic-gate 	Posf *prev;
3997c478bd9Sstevel@tonic-gate 	/*
4007c478bd9Sstevel@tonic-gate 	 * Link to older string with same hash index. To limit the
4017c478bd9Sstevel@tonic-gate 	 * size of this array to 64K, this link is maintained only for
4027c478bd9Sstevel@tonic-gate 	 * the last 32K strings.  An index in this array is thus a
4037c478bd9Sstevel@tonic-gate 	 * window index modulo 32K.
4047c478bd9Sstevel@tonic-gate 	 */
4057c478bd9Sstevel@tonic-gate 
4067c478bd9Sstevel@tonic-gate 	Posf *head;	/* Heads of the hash chains or NIL. */
4077c478bd9Sstevel@tonic-gate 
4087c478bd9Sstevel@tonic-gate 	uInt  ins_h;	/* hash index of string to be inserted */
4097c478bd9Sstevel@tonic-gate 	uInt  hash_size;	/* number of elements in hash table */
4107c478bd9Sstevel@tonic-gate 	uInt  hash_bits;	/* log2(hash_size) */
4117c478bd9Sstevel@tonic-gate 	uInt  hash_mask;	/* hash_size-1 */
4127c478bd9Sstevel@tonic-gate 
4137c478bd9Sstevel@tonic-gate 	uInt  hash_shift;
4147c478bd9Sstevel@tonic-gate 	/*
4157c478bd9Sstevel@tonic-gate 	 * Number of bits by which ins_h must be shifted at each input
4167c478bd9Sstevel@tonic-gate 	 * step. It must be such that after MIN_MATCH steps, the
4177c478bd9Sstevel@tonic-gate 	 * oldest byte no longer takes part in the hash key, that is:
4187c478bd9Sstevel@tonic-gate 	 * hash_shift * MIN_MATCH >= hash_bits
4197c478bd9Sstevel@tonic-gate 	 */
4207c478bd9Sstevel@tonic-gate 
4217c478bd9Sstevel@tonic-gate 	long block_start;
4227c478bd9Sstevel@tonic-gate 	/*
4237c478bd9Sstevel@tonic-gate 	 * Window position at the beginning of the current output
4247c478bd9Sstevel@tonic-gate 	 * block. Gets negative when the window is moved backwards.
4257c478bd9Sstevel@tonic-gate 	 */
4267c478bd9Sstevel@tonic-gate 
4277c478bd9Sstevel@tonic-gate 	uInt match_length;	/* length of best match */
4287c478bd9Sstevel@tonic-gate 	IPos prev_match;	/* previous match */
4297c478bd9Sstevel@tonic-gate 	int match_available;	/* set if previous match exists */
4307c478bd9Sstevel@tonic-gate 	uInt strstart;	/* start of string to insert */
4317c478bd9Sstevel@tonic-gate 	uInt match_start;	/* start of matching string */
4327c478bd9Sstevel@tonic-gate 	uInt lookahead;	/* number of valid bytes ahead in window */
4337c478bd9Sstevel@tonic-gate 
4347c478bd9Sstevel@tonic-gate 	uInt prev_length;
4357c478bd9Sstevel@tonic-gate 	/*
4367c478bd9Sstevel@tonic-gate 	 * Length of the best match at previous step. Matches not
4377c478bd9Sstevel@tonic-gate 	 * greater than this are discarded. This is used in the lazy
4387c478bd9Sstevel@tonic-gate 	 * match evaluation.
4397c478bd9Sstevel@tonic-gate 	 */
4407c478bd9Sstevel@tonic-gate 
4417c478bd9Sstevel@tonic-gate 	uInt max_chain_length;
4427c478bd9Sstevel@tonic-gate 	/*
4437c478bd9Sstevel@tonic-gate 	 * To speed up deflation, hash chains are never searched
4447c478bd9Sstevel@tonic-gate 	 * beyond *this length.  A higher limit improves compression
4457c478bd9Sstevel@tonic-gate 	 * ratio but *degrades the speed.
4467c478bd9Sstevel@tonic-gate 	 */
4477c478bd9Sstevel@tonic-gate 
4487c478bd9Sstevel@tonic-gate 	uInt max_lazy_match;
4497c478bd9Sstevel@tonic-gate 	/*
4507c478bd9Sstevel@tonic-gate 	 * Attempt to find a better match only when the current match
4517c478bd9Sstevel@tonic-gate 	 * is strictly smaller than this value. This mechanism is used
4527c478bd9Sstevel@tonic-gate 	 * only for compression levels >= 4.
4537c478bd9Sstevel@tonic-gate 	 */
4547c478bd9Sstevel@tonic-gate #define	max_insert_length  max_lazy_match
4557c478bd9Sstevel@tonic-gate 	/*
4567c478bd9Sstevel@tonic-gate 	 * Insert new strings in the hash table only if the match
4577c478bd9Sstevel@tonic-gate 	 * length is not greater than this length. This saves time but
4587c478bd9Sstevel@tonic-gate 	 * degrades compression.  max_insert_length is used only for
4597c478bd9Sstevel@tonic-gate 	 * compression levels <= 3.
4607c478bd9Sstevel@tonic-gate 	 */
4617c478bd9Sstevel@tonic-gate 
4627c478bd9Sstevel@tonic-gate 	int level;	/* compression level (1..9) */
4637c478bd9Sstevel@tonic-gate 	int strategy;	/* favor or force Huffman coding */
4647c478bd9Sstevel@tonic-gate 
4657c478bd9Sstevel@tonic-gate 	uInt good_match;
4667c478bd9Sstevel@tonic-gate 	/* Use a faster search when the previous match is longer than this */
4677c478bd9Sstevel@tonic-gate 
4687c478bd9Sstevel@tonic-gate 	int nice_match;	/* Stop searching when current match exceeds this */
4697c478bd9Sstevel@tonic-gate 
4707c478bd9Sstevel@tonic-gate 	/* used by trees.c: */
4717c478bd9Sstevel@tonic-gate 	/* Didn't use ct_data typedef below to supress compiler warning */
4727c478bd9Sstevel@tonic-gate 	struct ct_data_s dyn_ltree[HEAP_SIZE];	/* literal and length tree */
4737c478bd9Sstevel@tonic-gate 	struct ct_data_s dyn_dtree[2*D_CODES+1];	/* distance tree */
4747c478bd9Sstevel@tonic-gate 	/* Huffman tree for bit lengths */
4757c478bd9Sstevel@tonic-gate 	struct ct_data_s bl_tree[2*BL_CODES+1];
4767c478bd9Sstevel@tonic-gate 
4777c478bd9Sstevel@tonic-gate 	struct tree_desc_s l_desc;	/* desc. for literal tree */
4787c478bd9Sstevel@tonic-gate 	struct tree_desc_s d_desc;	/* desc. for distance tree */
4797c478bd9Sstevel@tonic-gate 	struct tree_desc_s bl_desc;	/* desc. for bit length tree */
4807c478bd9Sstevel@tonic-gate 
4817c478bd9Sstevel@tonic-gate 	ush bl_count[MAX_BITS+1];
4827c478bd9Sstevel@tonic-gate 	/* number of codes at each bit length for an optimal tree */
4837c478bd9Sstevel@tonic-gate 
4847c478bd9Sstevel@tonic-gate 	int heap[2*L_CODES+1];	/* heap used to build the Huffman trees */
4857c478bd9Sstevel@tonic-gate 	int heap_len;	/* number of elements in the heap */
4867c478bd9Sstevel@tonic-gate 	int heap_max;	/* element of largest frequency */
4877c478bd9Sstevel@tonic-gate 	/*
4887c478bd9Sstevel@tonic-gate 	 * The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0]
4897c478bd9Sstevel@tonic-gate 	 * is not used.  The same heap array is used to build all
4907c478bd9Sstevel@tonic-gate 	 * trees.
4917c478bd9Sstevel@tonic-gate 	 */
4927c478bd9Sstevel@tonic-gate 
4937c478bd9Sstevel@tonic-gate 	uch depth[2*L_CODES+1];
4947c478bd9Sstevel@tonic-gate 	/*
4957c478bd9Sstevel@tonic-gate 	 * Depth of each subtree used as tie breaker for trees of
4967c478bd9Sstevel@tonic-gate 	 * equal frequency
4977c478bd9Sstevel@tonic-gate 	 */
4987c478bd9Sstevel@tonic-gate 
4997c478bd9Sstevel@tonic-gate 	uchf *l_buf;	/* buffer for literals or lengths */
5007c478bd9Sstevel@tonic-gate 
5017c478bd9Sstevel@tonic-gate 	uInt lit_bufsize;
5027c478bd9Sstevel@tonic-gate 	/*
5037c478bd9Sstevel@tonic-gate 	 * Size of match buffer for literals/lengths.  There are 4
5047c478bd9Sstevel@tonic-gate 	 * reasons for limiting lit_bufsize to 64K:
5057c478bd9Sstevel@tonic-gate 	 *
5067c478bd9Sstevel@tonic-gate 	 *   - frequencies can be kept in 16 bit counters
5077c478bd9Sstevel@tonic-gate 	 *
5087c478bd9Sstevel@tonic-gate 	 *   - if compression is not successful for the first block,
5097c478bd9Sstevel@tonic-gate 	 *   all input data is still in the window so we can still
5107c478bd9Sstevel@tonic-gate 	 *   emit a stored block even when input comes from standard
5117c478bd9Sstevel@tonic-gate 	 *   input.  (This can also be done for all blocks if
5127c478bd9Sstevel@tonic-gate 	 *   lit_bufsize is not greater than 32K.)
5137c478bd9Sstevel@tonic-gate 	 *
5147c478bd9Sstevel@tonic-gate 	 *   - if compression is not successful for a file smaller
5157c478bd9Sstevel@tonic-gate 	 *   than 64K, we can even emit a stored file instead of a
5167c478bd9Sstevel@tonic-gate 	 *   stored block (saving 5 bytes).  This is applicable only
5177c478bd9Sstevel@tonic-gate 	 *   for zip (not gzip or zlib).
5187c478bd9Sstevel@tonic-gate 	 *
5197c478bd9Sstevel@tonic-gate 	 *   - creating new Huffman trees less frequently may not
5207c478bd9Sstevel@tonic-gate 	 *   provide fast adaptation to changes in the input data
5217c478bd9Sstevel@tonic-gate 	 *   statistics. (Take for example a binary file with poorly
5227c478bd9Sstevel@tonic-gate 	 *   compressible code followed by a highly compressible
5237c478bd9Sstevel@tonic-gate 	 *   string table.) Smaller buffer sizes give fast adaptation
5247c478bd9Sstevel@tonic-gate 	 *   but have of course the overhead of transmitting trees
5257c478bd9Sstevel@tonic-gate 	 *   more frequently.
5267c478bd9Sstevel@tonic-gate 	 *
5277c478bd9Sstevel@tonic-gate 	 *   - I can't count above 4
5287c478bd9Sstevel@tonic-gate 	 */
5297c478bd9Sstevel@tonic-gate 
5307c478bd9Sstevel@tonic-gate 	uInt last_lit;	/* running index in l_buf */
5317c478bd9Sstevel@tonic-gate 
5327c478bd9Sstevel@tonic-gate 	ushf *d_buf;
5337c478bd9Sstevel@tonic-gate 	/*
5347c478bd9Sstevel@tonic-gate 	 * Buffer for distances. To simplify the code, d_buf and l_buf
5357c478bd9Sstevel@tonic-gate 	 * have the same number of elements. To use different lengths,
5367c478bd9Sstevel@tonic-gate 	 * an extra flag array would be necessary.
5377c478bd9Sstevel@tonic-gate 	 */
5387c478bd9Sstevel@tonic-gate 
5397c478bd9Sstevel@tonic-gate 	ulg opt_len;	/* bit length of current block with optimal trees */
5407c478bd9Sstevel@tonic-gate 	ulg static_len;	/* bit length of current block with static trees */
5417c478bd9Sstevel@tonic-gate 	uInt matches;	/* number of string matches in current block */
5427c478bd9Sstevel@tonic-gate 	int last_eob_len;	/* bit length of EOB code for last block */
5437c478bd9Sstevel@tonic-gate 
5447c478bd9Sstevel@tonic-gate 	ulg compressed_len;	/* total bit length of compressed file PPP */
5457c478bd9Sstevel@tonic-gate #ifdef DEBUG_ZLIB
5467c478bd9Sstevel@tonic-gate 	ulg bits_sent;	/* bit length of the compressed data */
5477c478bd9Sstevel@tonic-gate #endif
5487c478bd9Sstevel@tonic-gate 
5497c478bd9Sstevel@tonic-gate 	ush bi_buf;
5507c478bd9Sstevel@tonic-gate 	/*
5517c478bd9Sstevel@tonic-gate 	 * Output buffer. bits are inserted starting at the bottom
5527c478bd9Sstevel@tonic-gate 	 * (least significant bits).
5537c478bd9Sstevel@tonic-gate 	 */
5547c478bd9Sstevel@tonic-gate 	int bi_valid;
5557c478bd9Sstevel@tonic-gate 	/*
5567c478bd9Sstevel@tonic-gate 	 * Number of valid bits in bi_buf.  All bits above the last
5577c478bd9Sstevel@tonic-gate 	 * valid bit are always zero.
5587c478bd9Sstevel@tonic-gate 	 */
5597c478bd9Sstevel@tonic-gate 
5607c478bd9Sstevel@tonic-gate } FAR deflate_state;
5617c478bd9Sstevel@tonic-gate 
5627c478bd9Sstevel@tonic-gate /*
5637c478bd9Sstevel@tonic-gate  * Output a byte on the stream.  IN assertion: there is enough room in
5647c478bd9Sstevel@tonic-gate  * pending_buf.
5657c478bd9Sstevel@tonic-gate  */
5667c478bd9Sstevel@tonic-gate #define	put_byte(s, c) {s->pending_buf[s->pending++] = (c); }
5677c478bd9Sstevel@tonic-gate 
5687c478bd9Sstevel@tonic-gate 
5697c478bd9Sstevel@tonic-gate #define	MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
5707c478bd9Sstevel@tonic-gate /*
5717c478bd9Sstevel@tonic-gate  * Minimum amount of lookahead, except at the end of the input file.
5727c478bd9Sstevel@tonic-gate  * See deflate.c for comments about the MIN_MATCH+1.
5737c478bd9Sstevel@tonic-gate  */
5747c478bd9Sstevel@tonic-gate 
5757c478bd9Sstevel@tonic-gate #define	MAX_DIST(s)  ((s)->w_size-MIN_LOOKAHEAD)
5767c478bd9Sstevel@tonic-gate /*
5777c478bd9Sstevel@tonic-gate  * In order to simplify the code, particularly on 16 bit machines,
5787c478bd9Sstevel@tonic-gate  * match distances are limited to MAX_DIST instead of WSIZE.
5797c478bd9Sstevel@tonic-gate  */
5807c478bd9Sstevel@tonic-gate 
5817c478bd9Sstevel@tonic-gate 	/* in trees.c */
5827c478bd9Sstevel@tonic-gate void _tr_init		OF((deflate_state *s));
5837c478bd9Sstevel@tonic-gate int  _tr_tally		OF((deflate_state *s, unsigned dist, unsigned lc));
5847c478bd9Sstevel@tonic-gate void  _tr_flush_block	OF((deflate_state *s, charf *buf, ulg stored_len,
5857c478bd9Sstevel@tonic-gate     int eof));
5867c478bd9Sstevel@tonic-gate void _tr_align		OF((deflate_state *s));
5877c478bd9Sstevel@tonic-gate void _tr_stored_block	OF((deflate_state *s, charf *buf, ulg stored_len,
5887c478bd9Sstevel@tonic-gate     int eof));
5897c478bd9Sstevel@tonic-gate void _tr_stored_type_only OF((deflate_state *));	/* PPP */
5907c478bd9Sstevel@tonic-gate 
5917c478bd9Sstevel@tonic-gate #define	d_code(dist) \
5927c478bd9Sstevel@tonic-gate 	((dist) < 256 ? _dist_code[dist] : _dist_code[256+((dist)>>7)])
5937c478bd9Sstevel@tonic-gate /*
5947c478bd9Sstevel@tonic-gate  * Mapping from a distance to a distance code. dist is the distance - 1 and
5957c478bd9Sstevel@tonic-gate  * must not have side effects. _dist_code[256] and _dist_code[257] are never
5967c478bd9Sstevel@tonic-gate  * used.
5977c478bd9Sstevel@tonic-gate  */
5987c478bd9Sstevel@tonic-gate 
5997c478bd9Sstevel@tonic-gate #ifndef DEBUG_ZLIB
6007c478bd9Sstevel@tonic-gate /* Inline versions of _tr_tally for speed: */
6017c478bd9Sstevel@tonic-gate 
6027c478bd9Sstevel@tonic-gate local uch _length_code[];
6037c478bd9Sstevel@tonic-gate local uch _dist_code[];
6047c478bd9Sstevel@tonic-gate 
6057c478bd9Sstevel@tonic-gate #define	_tr_tally_lit(s, c, flush) \
6067c478bd9Sstevel@tonic-gate 	{	uch cc = (c); \
6077c478bd9Sstevel@tonic-gate 		s->d_buf[s->last_lit] = 0; \
6087c478bd9Sstevel@tonic-gate 		s->l_buf[s->last_lit++] = cc; \
6097c478bd9Sstevel@tonic-gate 		s->dyn_ltree[cc].Freq++; \
6107c478bd9Sstevel@tonic-gate 		flush = (s->last_lit == s->lit_bufsize-1); \
6117c478bd9Sstevel@tonic-gate 	}
6127c478bd9Sstevel@tonic-gate #define	_tr_tally_dist(s, distance, length, flush) \
6137c478bd9Sstevel@tonic-gate 	{	uch len = (length); \
6147c478bd9Sstevel@tonic-gate 		ush dist = (distance); \
6157c478bd9Sstevel@tonic-gate 		s->d_buf[s->last_lit] = dist; \
6167c478bd9Sstevel@tonic-gate 		s->l_buf[s->last_lit++] = len; \
6177c478bd9Sstevel@tonic-gate 		dist--; \
6187c478bd9Sstevel@tonic-gate 		s->dyn_ltree[_length_code[len]+LITERALS+1].Freq++; \
6197c478bd9Sstevel@tonic-gate 		s->dyn_dtree[d_code(dist)].Freq++; \
6207c478bd9Sstevel@tonic-gate 		flush = (s->last_lit == s->lit_bufsize-1); \
6217c478bd9Sstevel@tonic-gate 	}
6227c478bd9Sstevel@tonic-gate #else
6237c478bd9Sstevel@tonic-gate #define	_tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c)
6247c478bd9Sstevel@tonic-gate #define	_tr_tally_dist(s, distance, length, flush) \
6257c478bd9Sstevel@tonic-gate 		flush = _tr_tally(s, distance, length)
6267c478bd9Sstevel@tonic-gate #endif
6277c478bd9Sstevel@tonic-gate 
6287c478bd9Sstevel@tonic-gate #endif
6297c478bd9Sstevel@tonic-gate /* --- deflate.h */
6307c478bd9Sstevel@tonic-gate 
6317c478bd9Sstevel@tonic-gate /* +++ deflate.c */
6327c478bd9Sstevel@tonic-gate /*
6337c478bd9Sstevel@tonic-gate  * deflate.c -- compress data using the deflation algorithm
6347c478bd9Sstevel@tonic-gate  * Copyright (C) 1995-1998 Jean-loup Gailly.
6357c478bd9Sstevel@tonic-gate  * For conditions of distribution and use, see copyright notice in zlib.h
6367c478bd9Sstevel@tonic-gate  */
6377c478bd9Sstevel@tonic-gate 
6387c478bd9Sstevel@tonic-gate /*
6397c478bd9Sstevel@tonic-gate  *  ALGORITHM
6407c478bd9Sstevel@tonic-gate  *
6417c478bd9Sstevel@tonic-gate  *      The "deflation" process depends on being able to identify portions
6427c478bd9Sstevel@tonic-gate  *      of the input text which are identical to earlier input (within a
6437c478bd9Sstevel@tonic-gate  *      sliding window trailing behind the input currently being processed).
6447c478bd9Sstevel@tonic-gate  *
6457c478bd9Sstevel@tonic-gate  *      The most straightforward technique turns out to be the fastest for
6467c478bd9Sstevel@tonic-gate  *      most input files: try all possible matches and select the longest.
6477c478bd9Sstevel@tonic-gate  *      The key feature of this algorithm is that insertions into the string
6487c478bd9Sstevel@tonic-gate  *      dictionary are very simple and thus fast, and deletions are avoided
6497c478bd9Sstevel@tonic-gate  *      completely. Insertions are performed at each input character, whereas
6507c478bd9Sstevel@tonic-gate  *      string matches are performed only when the previous match ends. So it
6517c478bd9Sstevel@tonic-gate  *      is preferable to spend more time in matches to allow very fast string
6527c478bd9Sstevel@tonic-gate  *      insertions and avoid deletions. The matching algorithm for small
6537c478bd9Sstevel@tonic-gate  *      strings is inspired from that of Rabin & Karp. A brute force approach
6547c478bd9Sstevel@tonic-gate  *      is used to find longer strings when a small match has been found.
6557c478bd9Sstevel@tonic-gate  *      A similar algorithm is used in comic (by Jan-Mark Wams) and freeze
6567c478bd9Sstevel@tonic-gate  *      (by Leonid Broukhis).
6577c478bd9Sstevel@tonic-gate  *         A previous version of this file used a more sophisticated algorithm
6587c478bd9Sstevel@tonic-gate  *      (by Fiala and Greene) which is guaranteed to run in linear amortized
6597c478bd9Sstevel@tonic-gate  *      time, but has a larger average cost, uses more memory and is patented.
6607c478bd9Sstevel@tonic-gate  *      However the F&G algorithm may be faster for some highly redundant
6617c478bd9Sstevel@tonic-gate  *      files if the parameter max_chain_length (described below) is too large.
6627c478bd9Sstevel@tonic-gate  *
6637c478bd9Sstevel@tonic-gate  *  ACKNOWLEDGEMENTS
6647c478bd9Sstevel@tonic-gate  *
6657c478bd9Sstevel@tonic-gate  *      The idea of lazy evaluation of matches is due to Jan-Mark Wams, and
6667c478bd9Sstevel@tonic-gate  *      I found it in 'freeze' written by Leonid Broukhis.
6677c478bd9Sstevel@tonic-gate  *      Thanks to many people for bug reports and testing.
6687c478bd9Sstevel@tonic-gate  *
6697c478bd9Sstevel@tonic-gate  *  REFERENCES
6707c478bd9Sstevel@tonic-gate  *
6717c478bd9Sstevel@tonic-gate  *      Deutsch, L.P.,"DEFLATE Compressed Data Format Specification".
6727c478bd9Sstevel@tonic-gate  *      Available in ftp://ds.internic.net/rfc/rfc1951.txt
6737c478bd9Sstevel@tonic-gate  *
6747c478bd9Sstevel@tonic-gate  *      A description of the Rabin and Karp algorithm is given in the book
6757c478bd9Sstevel@tonic-gate  *         "Algorithms" by R. Sedgewick, Addison-Wesley, p252.
6767c478bd9Sstevel@tonic-gate  *
6777c478bd9Sstevel@tonic-gate  *      Fiala,E.R., and Greene,D.H.
6787c478bd9Sstevel@tonic-gate  *         Data Compression with Finite Windows, Comm.ACM, 32,4 (1989) 490-595
6797c478bd9Sstevel@tonic-gate  *
6807c478bd9Sstevel@tonic-gate  */
6817c478bd9Sstevel@tonic-gate 
6827c478bd9Sstevel@tonic-gate /* From: deflate.c,v 1.15 1996/07/24 13:40:58 me Exp $ */
6837c478bd9Sstevel@tonic-gate 
6847c478bd9Sstevel@tonic-gate /* #include "deflate.h" */
6857c478bd9Sstevel@tonic-gate 
6867c478bd9Sstevel@tonic-gate const char deflate_copyright[] =
6877c478bd9Sstevel@tonic-gate " deflate 1.1.3 Copyright 1995-1998 Jean-loup Gailly ";
6887c478bd9Sstevel@tonic-gate /*
6897c478bd9Sstevel@tonic-gate  * If you use the zlib library in a product, an acknowledgment is
6907c478bd9Sstevel@tonic-gate  * welcome in the documentation of your product. If for some reason
6917c478bd9Sstevel@tonic-gate  * you cannot include such an acknowledgment, I would appreciate that
6927c478bd9Sstevel@tonic-gate  * you keep this copyright string in the executable of your product.
6937c478bd9Sstevel@tonic-gate  */
6947c478bd9Sstevel@tonic-gate 
6957c478bd9Sstevel@tonic-gate /*
6967c478bd9Sstevel@tonic-gate  * ===========================================================================
6977c478bd9Sstevel@tonic-gate  *  Function prototypes.
6987c478bd9Sstevel@tonic-gate  */
6997c478bd9Sstevel@tonic-gate typedef enum {
7007c478bd9Sstevel@tonic-gate 	/* block not completed, need more input or more output */
7017c478bd9Sstevel@tonic-gate 	need_more,
7027c478bd9Sstevel@tonic-gate 	block_done,	/* block flush performed */
7037c478bd9Sstevel@tonic-gate 	/* finish started, need only more output at next deflate */
7047c478bd9Sstevel@tonic-gate 	finish_started,
7057c478bd9Sstevel@tonic-gate 	finish_done	/* finish done, accept no more input or output */
7067c478bd9Sstevel@tonic-gate } block_state;
7077c478bd9Sstevel@tonic-gate 
7087c478bd9Sstevel@tonic-gate typedef block_state (*compress_func) OF((deflate_state *s, int flush));
7097c478bd9Sstevel@tonic-gate /* Compression function. Returns the block state after the call. */
7107c478bd9Sstevel@tonic-gate 
7117c478bd9Sstevel@tonic-gate local void fill_window	OF((deflate_state *s));
7127c478bd9Sstevel@tonic-gate local block_state deflate_stored OF((deflate_state *s, int flush));
7137c478bd9Sstevel@tonic-gate local block_state deflate_fast	OF((deflate_state *s, int flush));
7147c478bd9Sstevel@tonic-gate local block_state deflate_slow	OF((deflate_state *s, int flush));
7157c478bd9Sstevel@tonic-gate local void lm_init	OF((deflate_state *s));
7167c478bd9Sstevel@tonic-gate local void putShortMSB	OF((deflate_state *s, uInt b));
7177c478bd9Sstevel@tonic-gate local void flush_pending	OF((z_streamp strm));
7187c478bd9Sstevel@tonic-gate local int read_buf	OF((z_streamp strm, Bytef *buf, unsigned size));
7197c478bd9Sstevel@tonic-gate #ifdef ASMV
7207c478bd9Sstevel@tonic-gate void match_init	OF((void));	/* asm code initialization */
7217c478bd9Sstevel@tonic-gate uInt longest_match	OF((deflate_state *s, IPos cur_match));
7227c478bd9Sstevel@tonic-gate #else
7237c478bd9Sstevel@tonic-gate local uInt longest_match	OF((deflate_state *s, IPos cur_match));
7247c478bd9Sstevel@tonic-gate #endif
7257c478bd9Sstevel@tonic-gate 
7267c478bd9Sstevel@tonic-gate #ifdef DEBUG_ZLIB
7277c478bd9Sstevel@tonic-gate local void check_match OF((deflate_state *s, IPos start, IPos match,
7287c478bd9Sstevel@tonic-gate     int length));
7297c478bd9Sstevel@tonic-gate #endif
7307c478bd9Sstevel@tonic-gate 
7317c478bd9Sstevel@tonic-gate /*
7327c478bd9Sstevel@tonic-gate  * ===========================================================================
7337c478bd9Sstevel@tonic-gate  * Local data
7347c478bd9Sstevel@tonic-gate  */
7357c478bd9Sstevel@tonic-gate 
7367c478bd9Sstevel@tonic-gate #define	NIL 0
7377c478bd9Sstevel@tonic-gate /* Tail of hash chains */
7387c478bd9Sstevel@tonic-gate 
7397c478bd9Sstevel@tonic-gate #ifndef TOO_FAR
7407c478bd9Sstevel@tonic-gate #define	TOO_FAR 4096
7417c478bd9Sstevel@tonic-gate #endif
7427c478bd9Sstevel@tonic-gate /* Matches of length 3 are discarded if their distance exceeds TOO_FAR */
7437c478bd9Sstevel@tonic-gate 
7447c478bd9Sstevel@tonic-gate #define	MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
7457c478bd9Sstevel@tonic-gate /*
7467c478bd9Sstevel@tonic-gate  * Minimum amount of lookahead, except at the end of the input file.
7477c478bd9Sstevel@tonic-gate  * See deflate.c for comments about the MIN_MATCH+1.
7487c478bd9Sstevel@tonic-gate  */
7497c478bd9Sstevel@tonic-gate 
7507c478bd9Sstevel@tonic-gate /*
7517c478bd9Sstevel@tonic-gate  * Values for max_lazy_match, good_match and max_chain_length,
7527c478bd9Sstevel@tonic-gate  * depending on the desired pack level (0..9). The values given below
7537c478bd9Sstevel@tonic-gate  * have been tuned to exclude worst case performance for pathological
7547c478bd9Sstevel@tonic-gate  * files. Better values may be found for specific files.
7557c478bd9Sstevel@tonic-gate  */
7567c478bd9Sstevel@tonic-gate typedef struct config_s {
7577c478bd9Sstevel@tonic-gate 	ush good_length;	/* reduce lazy search above this match length */
7587c478bd9Sstevel@tonic-gate 	ush max_lazy;	/* do not perform lazy search above this match length */
7597c478bd9Sstevel@tonic-gate 	ush nice_length;	/* quit search above this match length */
7607c478bd9Sstevel@tonic-gate 	ush max_chain;
7617c478bd9Sstevel@tonic-gate 	compress_func func;
7627c478bd9Sstevel@tonic-gate } config;
7637c478bd9Sstevel@tonic-gate 
7647c478bd9Sstevel@tonic-gate local const config configuration_table[10] = {
7657c478bd9Sstevel@tonic-gate /*	good lazy nice chain */
7667c478bd9Sstevel@tonic-gate /* 0 */ {0,    0,  0,    0, deflate_stored},  /* store only */
7677c478bd9Sstevel@tonic-gate /* 1 */ {4,    4,  8,    4, deflate_fast}, /* maximum speed, no lazy matches */
7687c478bd9Sstevel@tonic-gate /* 2 */ {4,    5, 16,    8, deflate_fast},
7697c478bd9Sstevel@tonic-gate /* 3 */ {4,    6, 32,   32, deflate_fast},
7707c478bd9Sstevel@tonic-gate 
7717c478bd9Sstevel@tonic-gate /* 4 */ {4,    4, 16,   16, deflate_slow},  /* lazy matches */
7727c478bd9Sstevel@tonic-gate /* 5 */ {8,   16, 32,   32, deflate_slow},
7737c478bd9Sstevel@tonic-gate /* 6 */ {8,   16, 128, 128, deflate_slow},
7747c478bd9Sstevel@tonic-gate /* 7 */ {8,   32, 128, 256, deflate_slow},
7757c478bd9Sstevel@tonic-gate /* 8 */ {32, 128, 258, 1024, deflate_slow},
7767c478bd9Sstevel@tonic-gate /* 9 */ {32, 258, 258, 4096, deflate_slow}};	/* maximum compression */
7777c478bd9Sstevel@tonic-gate 
7787c478bd9Sstevel@tonic-gate /*
7797c478bd9Sstevel@tonic-gate  * Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
7807c478bd9Sstevel@tonic-gate  * For deflate_fast() (levels <= 3) good is ignored and lazy has a different
7817c478bd9Sstevel@tonic-gate  * meaning.
7827c478bd9Sstevel@tonic-gate  */
7837c478bd9Sstevel@tonic-gate 
7847c478bd9Sstevel@tonic-gate #define	EQUAL 0
7857c478bd9Sstevel@tonic-gate /* result of memcmp for equal strings */
7867c478bd9Sstevel@tonic-gate 
7877c478bd9Sstevel@tonic-gate #ifndef NO_DUMMY_DECL
7887c478bd9Sstevel@tonic-gate struct static_tree_desc_s {int dummy; };	/* for buggy compilers */
7897c478bd9Sstevel@tonic-gate #endif
7907c478bd9Sstevel@tonic-gate 
7917c478bd9Sstevel@tonic-gate /*
7927c478bd9Sstevel@tonic-gate  * ===========================================================================
7937c478bd9Sstevel@tonic-gate  * Update a hash value with the given input byte
7947c478bd9Sstevel@tonic-gate  * IN  assertion: all calls to to UPDATE_HASH are made with consecutive
7957c478bd9Sstevel@tonic-gate  *    input characters, so that a running hash key can be computed from the
7967c478bd9Sstevel@tonic-gate  *    previous key instead of complete recalculation each time.
7977c478bd9Sstevel@tonic-gate  */
7987c478bd9Sstevel@tonic-gate #define	UPDATE_HASH(s, h, c) (h = (((h)<<s->hash_shift) ^ (c)) & s->hash_mask)
7997c478bd9Sstevel@tonic-gate 
8007c478bd9Sstevel@tonic-gate 
8017c478bd9Sstevel@tonic-gate /*
8027c478bd9Sstevel@tonic-gate  * ===========================================================================
8037c478bd9Sstevel@tonic-gate  * Insert string str in the dictionary and set match_head to the previous head
8047c478bd9Sstevel@tonic-gate  * of the hash chain (the most recent string with same hash key). Return
8057c478bd9Sstevel@tonic-gate  * the previous length of the hash chain.
8067c478bd9Sstevel@tonic-gate  * If this file is compiled with -DFASTEST, the compression level is forced
8077c478bd9Sstevel@tonic-gate  * to 1, and no hash chains are maintained.
8087c478bd9Sstevel@tonic-gate  * IN  assertion: all calls to to INSERT_STRING are made with consecutive
8097c478bd9Sstevel@tonic-gate  *    input characters and the first MIN_MATCH bytes of str are valid
8107c478bd9Sstevel@tonic-gate  *    (except for the last MIN_MATCH-1 bytes of the input file).
8117c478bd9Sstevel@tonic-gate  */
8127c478bd9Sstevel@tonic-gate #ifdef FASTEST
8137c478bd9Sstevel@tonic-gate #define	INSERT_STRING(s, str, match_head) \
8147c478bd9Sstevel@tonic-gate 	(UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
8157c478bd9Sstevel@tonic-gate 	match_head = s->head[s->ins_h], \
8167c478bd9Sstevel@tonic-gate 	s->head[s->ins_h] = (Pos)(str))
8177c478bd9Sstevel@tonic-gate #else
8187c478bd9Sstevel@tonic-gate #define	INSERT_STRING(s, str, match_head) \
8197c478bd9Sstevel@tonic-gate 	(UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
8207c478bd9Sstevel@tonic-gate 	s->prev[(str) & s->w_mask] = match_head = s->head[s->ins_h], \
8217c478bd9Sstevel@tonic-gate 	s->head[s->ins_h] = (Pos)(str))
8227c478bd9Sstevel@tonic-gate #endif
8237c478bd9Sstevel@tonic-gate 
8247c478bd9Sstevel@tonic-gate /*
8257c478bd9Sstevel@tonic-gate  * ===========================================================================
8267c478bd9Sstevel@tonic-gate  * Initialize the hash table (avoiding 64K overflow for 16 bit systems).
8277c478bd9Sstevel@tonic-gate  * prev[] will be initialized on the fly.
8287c478bd9Sstevel@tonic-gate  */
8297c478bd9Sstevel@tonic-gate #define	CLEAR_HASH(s) \
8307c478bd9Sstevel@tonic-gate     s->head[s->hash_size-1] = NIL; \
8317c478bd9Sstevel@tonic-gate     zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof (*s->head));
8327c478bd9Sstevel@tonic-gate 
8337c478bd9Sstevel@tonic-gate /* ========================================================================= */
8347c478bd9Sstevel@tonic-gate int
deflateInit_(strm,level,version,stream_size)8357c478bd9Sstevel@tonic-gate deflateInit_(strm, level, version, stream_size)
8367c478bd9Sstevel@tonic-gate     z_streamp strm;
8377c478bd9Sstevel@tonic-gate     int level;
8387c478bd9Sstevel@tonic-gate     const char *version;
8397c478bd9Sstevel@tonic-gate     int stream_size;
8407c478bd9Sstevel@tonic-gate {
8417c478bd9Sstevel@tonic-gate 	(void) deflate_copyright;
8427c478bd9Sstevel@tonic-gate 	return deflateInit2_(strm, level, Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL,
8437c478bd9Sstevel@tonic-gate 	    Z_DEFAULT_STRATEGY, version, stream_size);
8447c478bd9Sstevel@tonic-gate 	/* To do: ignore strm->next_in if we use it as window */
8457c478bd9Sstevel@tonic-gate }
8467c478bd9Sstevel@tonic-gate 
8477c478bd9Sstevel@tonic-gate /* ========================================================================= */
deflateInit2_(strm,level,method,windowBits,memLevel,strategy,version,stream_size)8487c478bd9Sstevel@tonic-gate int deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
8497c478bd9Sstevel@tonic-gate     version, stream_size)
8507c478bd9Sstevel@tonic-gate     z_streamp strm;
8517c478bd9Sstevel@tonic-gate     int  level;
8527c478bd9Sstevel@tonic-gate     int  method;
8537c478bd9Sstevel@tonic-gate     int  windowBits;
8547c478bd9Sstevel@tonic-gate     int  memLevel;
8557c478bd9Sstevel@tonic-gate     int  strategy;
8567c478bd9Sstevel@tonic-gate     const char *version;
8577c478bd9Sstevel@tonic-gate     int stream_size;
8587c478bd9Sstevel@tonic-gate {
8597c478bd9Sstevel@tonic-gate 	deflate_state *s;
8607c478bd9Sstevel@tonic-gate 	int noheader = 0;
8617c478bd9Sstevel@tonic-gate 	static const char *my_version = ZLIB_VERSION;
8627c478bd9Sstevel@tonic-gate 
8637c478bd9Sstevel@tonic-gate 	ushf *overlay;
8647c478bd9Sstevel@tonic-gate 	/*
8657c478bd9Sstevel@tonic-gate 	 * We overlay pending_buf and d_buf+l_buf. This works since
8667c478bd9Sstevel@tonic-gate 	 * the average output size for (length, distance) codes is <=
8677c478bd9Sstevel@tonic-gate 	 * 24 bits.
8687c478bd9Sstevel@tonic-gate 	 */
8697c478bd9Sstevel@tonic-gate 
8707c478bd9Sstevel@tonic-gate 	if (version == Z_NULL || version[0] != my_version[0] ||
8717c478bd9Sstevel@tonic-gate 	    stream_size != sizeof (z_stream)) {
8727c478bd9Sstevel@tonic-gate 		return (Z_VERSION_ERROR);
8737c478bd9Sstevel@tonic-gate 	}
8747c478bd9Sstevel@tonic-gate 	if (strm == Z_NULL)
8757c478bd9Sstevel@tonic-gate 		return (Z_STREAM_ERROR);
8767c478bd9Sstevel@tonic-gate 
8777c478bd9Sstevel@tonic-gate 	strm->msg = Z_NULL;
8787c478bd9Sstevel@tonic-gate #ifndef NO_ZCFUNCS
8797c478bd9Sstevel@tonic-gate 	if (strm->zalloc == Z_NULL) {
8807c478bd9Sstevel@tonic-gate 		strm->zalloc = zcalloc;
8817c478bd9Sstevel@tonic-gate 		strm->opaque = (voidpf)0;
8827c478bd9Sstevel@tonic-gate 	}
8837c478bd9Sstevel@tonic-gate 	if (strm->zfree == Z_NULL) strm->zfree = zcfree;
8847c478bd9Sstevel@tonic-gate #endif
8857c478bd9Sstevel@tonic-gate 
8867c478bd9Sstevel@tonic-gate 	if (level == Z_DEFAULT_COMPRESSION) level = 6;
8877c478bd9Sstevel@tonic-gate #ifdef FASTEST
8887c478bd9Sstevel@tonic-gate 	level = 1;
8897c478bd9Sstevel@tonic-gate #endif
8907c478bd9Sstevel@tonic-gate 
8917c478bd9Sstevel@tonic-gate 	if (windowBits < 0) { /* undocumented feature: suppress zlib header */
8927c478bd9Sstevel@tonic-gate 		noheader = 1;
8937c478bd9Sstevel@tonic-gate 		windowBits = -windowBits;
8947c478bd9Sstevel@tonic-gate 	}
8957c478bd9Sstevel@tonic-gate 	if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method != Z_DEFLATED ||
8967c478bd9Sstevel@tonic-gate 	    windowBits <= 8 || windowBits > 15 || level < 0 || level > 9 ||
8977c478bd9Sstevel@tonic-gate 	    strategy < 0 || strategy > Z_HUFFMAN_ONLY) {
8987c478bd9Sstevel@tonic-gate 		return (Z_STREAM_ERROR);
8997c478bd9Sstevel@tonic-gate 	}
9007c478bd9Sstevel@tonic-gate 	s = (deflate_state *) ZALLOC(strm, 1, sizeof (deflate_state));
9017c478bd9Sstevel@tonic-gate 	if (s == Z_NULL)
9027c478bd9Sstevel@tonic-gate 		return (Z_MEM_ERROR);
9037c478bd9Sstevel@tonic-gate 	strm->state = (struct internal_state FAR *)s;
9047c478bd9Sstevel@tonic-gate 	s->strm = strm;
9057c478bd9Sstevel@tonic-gate 
9067c478bd9Sstevel@tonic-gate 	s->noheader = noheader;
9077c478bd9Sstevel@tonic-gate 	s->w_bits = windowBits;
9087c478bd9Sstevel@tonic-gate 	s->w_size = 1 << s->w_bits;
9097c478bd9Sstevel@tonic-gate 	s->w_mask = s->w_size - 1;
9107c478bd9Sstevel@tonic-gate 
9117c478bd9Sstevel@tonic-gate 	s->hash_bits = memLevel + 7;
9127c478bd9Sstevel@tonic-gate 	s->hash_size = 1 << s->hash_bits;
9137c478bd9Sstevel@tonic-gate 	s->hash_mask = s->hash_size - 1;
9147c478bd9Sstevel@tonic-gate 	s->hash_shift =  ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH);
9157c478bd9Sstevel@tonic-gate 
9167c478bd9Sstevel@tonic-gate 	s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof (Byte));
9177c478bd9Sstevel@tonic-gate 	s->prev   = (Posf *)  ZALLOC(strm, s->w_size, sizeof (Pos));
9187c478bd9Sstevel@tonic-gate 	s->head   = (Posf *)  ZALLOC(strm, s->hash_size, sizeof (Pos));
9197c478bd9Sstevel@tonic-gate 
9207c478bd9Sstevel@tonic-gate 	s->lit_bufsize = 1 << (memLevel + 6);	/* 16K elements by default */
9217c478bd9Sstevel@tonic-gate 
9227c478bd9Sstevel@tonic-gate 	overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof (ush)+2);
9237c478bd9Sstevel@tonic-gate 	s->pending_buf = (uchf *) overlay;
9247c478bd9Sstevel@tonic-gate 	s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof (ush)+2L);
9257c478bd9Sstevel@tonic-gate 
9267c478bd9Sstevel@tonic-gate 	if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
9277c478bd9Sstevel@tonic-gate 	    s->pending_buf == Z_NULL) {
9287c478bd9Sstevel@tonic-gate 		strm->msg = ERR_MSG(Z_MEM_ERROR);
9297c478bd9Sstevel@tonic-gate 		s->status = INIT_STATE;
9307c478bd9Sstevel@tonic-gate 		(void) deflateEnd(strm);
9317c478bd9Sstevel@tonic-gate 		return (Z_MEM_ERROR);
9327c478bd9Sstevel@tonic-gate 	}
9337c478bd9Sstevel@tonic-gate 	s->d_buf = overlay + s->lit_bufsize/sizeof (ush);
9347c478bd9Sstevel@tonic-gate 	s->l_buf = s->pending_buf + (1+sizeof (ush))*s->lit_bufsize;
9357c478bd9Sstevel@tonic-gate 
9367c478bd9Sstevel@tonic-gate 	s->level = level;
9377c478bd9Sstevel@tonic-gate 	s->strategy = strategy;
9387c478bd9Sstevel@tonic-gate 	s->method = (Byte)method;
9397c478bd9Sstevel@tonic-gate 
9407c478bd9Sstevel@tonic-gate 	return (deflateReset(strm));
9417c478bd9Sstevel@tonic-gate }
9427c478bd9Sstevel@tonic-gate 
9437c478bd9Sstevel@tonic-gate /* ========================================================================= */
9447c478bd9Sstevel@tonic-gate int
deflateSetDictionary(strm,dictionary,dictLength)9457c478bd9Sstevel@tonic-gate deflateSetDictionary(strm, dictionary, dictLength)
9467c478bd9Sstevel@tonic-gate     z_streamp strm;
9477c478bd9Sstevel@tonic-gate     const Bytef *dictionary;
9487c478bd9Sstevel@tonic-gate     uInt  dictLength;
9497c478bd9Sstevel@tonic-gate {
9507c478bd9Sstevel@tonic-gate 	deflate_state *s;
9517c478bd9Sstevel@tonic-gate 	uInt length = dictLength;
9527c478bd9Sstevel@tonic-gate 	uInt n;
9537c478bd9Sstevel@tonic-gate 	IPos hash_head = 0;
9547c478bd9Sstevel@tonic-gate 
9557c478bd9Sstevel@tonic-gate 	if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL)
9567c478bd9Sstevel@tonic-gate 		return (Z_STREAM_ERROR);
9577c478bd9Sstevel@tonic-gate 
9587c478bd9Sstevel@tonic-gate 	s = (deflate_state *) strm->state;
9597c478bd9Sstevel@tonic-gate 	if (s->status != INIT_STATE)
9607c478bd9Sstevel@tonic-gate 		return (Z_STREAM_ERROR);
9617c478bd9Sstevel@tonic-gate 
9627c478bd9Sstevel@tonic-gate 	strm->adler = adler32(strm->adler, dictionary, dictLength);
9637c478bd9Sstevel@tonic-gate 
9647c478bd9Sstevel@tonic-gate 	if (length < MIN_MATCH)
9657c478bd9Sstevel@tonic-gate 		return (Z_OK);
9667c478bd9Sstevel@tonic-gate 	if (length > MAX_DIST(s)) {
9677c478bd9Sstevel@tonic-gate 		length = MAX_DIST(s);
9687c478bd9Sstevel@tonic-gate #ifndef USE_DICT_HEAD
9697c478bd9Sstevel@tonic-gate 		/* use the tail of the dictionary */
9707c478bd9Sstevel@tonic-gate 		dictionary += dictLength - length;
9717c478bd9Sstevel@tonic-gate #endif
9727c478bd9Sstevel@tonic-gate 	}
9737c478bd9Sstevel@tonic-gate 	Assert(length <= s->window_size, "dict copy");
9747c478bd9Sstevel@tonic-gate 	zmemcpy(s->window, dictionary, length);
9757c478bd9Sstevel@tonic-gate 	s->strstart = length;
9767c478bd9Sstevel@tonic-gate 	s->block_start = (long)length;
9777c478bd9Sstevel@tonic-gate 
9787c478bd9Sstevel@tonic-gate 	/*
9797c478bd9Sstevel@tonic-gate 	 * Insert all strings in the hash table (except for the last
9807c478bd9Sstevel@tonic-gate 	 * two bytes).  s->lookahead stays null, so s->ins_h will be
9817c478bd9Sstevel@tonic-gate 	 * recomputed at the next call of fill_window.
9827c478bd9Sstevel@tonic-gate 	 */
9837c478bd9Sstevel@tonic-gate 	s->ins_h = s->window[0];
9847c478bd9Sstevel@tonic-gate 	UPDATE_HASH(s, s->ins_h, s->window[1]);
9857c478bd9Sstevel@tonic-gate 	for (n = 0; n <= length - MIN_MATCH; n++) {
9867c478bd9Sstevel@tonic-gate 		INSERT_STRING(s, n, hash_head);
9877c478bd9Sstevel@tonic-gate 	}
9887c478bd9Sstevel@tonic-gate 	if (hash_head) hash_head = 0;	/* to make compiler happy */
9897c478bd9Sstevel@tonic-gate 	return (Z_OK);
9907c478bd9Sstevel@tonic-gate }
9917c478bd9Sstevel@tonic-gate 
9927c478bd9Sstevel@tonic-gate /* ========================================================================= */
9937c478bd9Sstevel@tonic-gate int
deflateReset(strm)9947c478bd9Sstevel@tonic-gate deflateReset(strm)
9957c478bd9Sstevel@tonic-gate     z_streamp strm;
9967c478bd9Sstevel@tonic-gate {
9977c478bd9Sstevel@tonic-gate 	deflate_state *s;
9987c478bd9Sstevel@tonic-gate 
9997c478bd9Sstevel@tonic-gate 	if (strm == Z_NULL || strm->state == Z_NULL ||
10007c478bd9Sstevel@tonic-gate 	    strm->zalloc == Z_NULL || strm->zfree == Z_NULL)
10017c478bd9Sstevel@tonic-gate 		return (Z_STREAM_ERROR);
10027c478bd9Sstevel@tonic-gate 
10037c478bd9Sstevel@tonic-gate 	strm->total_in = strm->total_out = 0;
10047c478bd9Sstevel@tonic-gate 	/* use zfree if we ever allocate msg dynamically */
10057c478bd9Sstevel@tonic-gate 	strm->msg = Z_NULL;
10067c478bd9Sstevel@tonic-gate 	strm->data_type = Z_UNKNOWN;
10077c478bd9Sstevel@tonic-gate 
10087c478bd9Sstevel@tonic-gate 	s = (deflate_state *)strm->state;
10097c478bd9Sstevel@tonic-gate 	s->pending = 0;
10107c478bd9Sstevel@tonic-gate 	s->pending_out = s->pending_buf;
10117c478bd9Sstevel@tonic-gate 
10127c478bd9Sstevel@tonic-gate 	if (s->noheader < 0) {
10137c478bd9Sstevel@tonic-gate 		/* was set to -1 by deflate(..., Z_FINISH); */
10147c478bd9Sstevel@tonic-gate 		s->noheader = 0;
10157c478bd9Sstevel@tonic-gate 	}
10167c478bd9Sstevel@tonic-gate 	s->status = s->noheader ? BUSY_STATE : INIT_STATE;
10177c478bd9Sstevel@tonic-gate 	strm->adler = 1;
10187c478bd9Sstevel@tonic-gate 	s->last_flush = Z_NO_FLUSH;
10197c478bd9Sstevel@tonic-gate 
10207c478bd9Sstevel@tonic-gate 	_tr_init(s);
10217c478bd9Sstevel@tonic-gate 	lm_init(s);
10227c478bd9Sstevel@tonic-gate 
10237c478bd9Sstevel@tonic-gate 	return (Z_OK);
10247c478bd9Sstevel@tonic-gate }
10257c478bd9Sstevel@tonic-gate 
10267c478bd9Sstevel@tonic-gate /* ========================================================================= */
10277c478bd9Sstevel@tonic-gate int
deflateParams(strm,level,strategy)10287c478bd9Sstevel@tonic-gate deflateParams(strm, level, strategy)
10297c478bd9Sstevel@tonic-gate     z_streamp strm;
10307c478bd9Sstevel@tonic-gate     int level;
10317c478bd9Sstevel@tonic-gate     int strategy;
10327c478bd9Sstevel@tonic-gate {
10337c478bd9Sstevel@tonic-gate 	deflate_state *s;
10347c478bd9Sstevel@tonic-gate 	compress_func func;
10357c478bd9Sstevel@tonic-gate 	int err = Z_OK;
10367c478bd9Sstevel@tonic-gate 
10377c478bd9Sstevel@tonic-gate 	if (strm == Z_NULL || strm->state == Z_NULL)
10387c478bd9Sstevel@tonic-gate 		return (Z_STREAM_ERROR);
10397c478bd9Sstevel@tonic-gate 	s = (deflate_state *) strm->state;
10407c478bd9Sstevel@tonic-gate 
10417c478bd9Sstevel@tonic-gate 	if (level == Z_DEFAULT_COMPRESSION) {
10427c478bd9Sstevel@tonic-gate 		level = 6;
10437c478bd9Sstevel@tonic-gate 	}
10447c478bd9Sstevel@tonic-gate 	if (level < 0 || level > 9 || strategy < 0 ||
10457c478bd9Sstevel@tonic-gate 	    strategy > Z_HUFFMAN_ONLY) {
10467c478bd9Sstevel@tonic-gate 		return (Z_STREAM_ERROR);
10477c478bd9Sstevel@tonic-gate 	}
10487c478bd9Sstevel@tonic-gate 	func = configuration_table[s->level].func;
10497c478bd9Sstevel@tonic-gate 
10507c478bd9Sstevel@tonic-gate 	if (func != configuration_table[level].func && strm->total_in != 0) {
10517c478bd9Sstevel@tonic-gate 		/* Flush the last buffer: */
10527c478bd9Sstevel@tonic-gate 		err = deflate(strm, Z_PARTIAL_FLUSH);
10537c478bd9Sstevel@tonic-gate 	}
10547c478bd9Sstevel@tonic-gate 	if (s->level != level) {
10557c478bd9Sstevel@tonic-gate 		s->level = level;
10567c478bd9Sstevel@tonic-gate 		s->max_lazy_match   = configuration_table[level].max_lazy;
10577c478bd9Sstevel@tonic-gate 		s->good_match	= configuration_table[level].good_length;
10587c478bd9Sstevel@tonic-gate 		s->nice_match	= configuration_table[level].nice_length;
10597c478bd9Sstevel@tonic-gate 		s->max_chain_length = configuration_table[level].max_chain;
10607c478bd9Sstevel@tonic-gate 	}
10617c478bd9Sstevel@tonic-gate 	s->strategy = strategy;
10627c478bd9Sstevel@tonic-gate 	return (err);
10637c478bd9Sstevel@tonic-gate }
10647c478bd9Sstevel@tonic-gate 
10657c478bd9Sstevel@tonic-gate /*
10667c478bd9Sstevel@tonic-gate  * =========================================================================
10677c478bd9Sstevel@tonic-gate  * Put a short in the pending buffer. The 16-bit value is put in MSB order.
10687c478bd9Sstevel@tonic-gate  * IN assertion: the stream state is correct and there is enough room in
10697c478bd9Sstevel@tonic-gate  * pending_buf.
10707c478bd9Sstevel@tonic-gate  */
10717c478bd9Sstevel@tonic-gate local void
putShortMSB(s,b)10727c478bd9Sstevel@tonic-gate putShortMSB(s, b)
10737c478bd9Sstevel@tonic-gate     deflate_state *s;
10747c478bd9Sstevel@tonic-gate     uInt b;
10757c478bd9Sstevel@tonic-gate {
10767c478bd9Sstevel@tonic-gate 	put_byte(s, (Byte)(b >> 8));
10777c478bd9Sstevel@tonic-gate 	put_byte(s, (Byte)(b & 0xff));
10787c478bd9Sstevel@tonic-gate }
10797c478bd9Sstevel@tonic-gate 
10807c478bd9Sstevel@tonic-gate /*
10817c478bd9Sstevel@tonic-gate  * =========================================================================
10827c478bd9Sstevel@tonic-gate  * Flush as much pending output as possible. All deflate() output goes
10837c478bd9Sstevel@tonic-gate  * through this function so some applications may wish to modify it
10847c478bd9Sstevel@tonic-gate  * to avoid allocating a large strm->next_out buffer and copying into it.
10857c478bd9Sstevel@tonic-gate  * (See also read_buf()).
10867c478bd9Sstevel@tonic-gate  */
10877c478bd9Sstevel@tonic-gate local void
flush_pending(strm)10887c478bd9Sstevel@tonic-gate flush_pending(strm)
10897c478bd9Sstevel@tonic-gate     z_streamp strm;
10907c478bd9Sstevel@tonic-gate {
10917c478bd9Sstevel@tonic-gate 	deflate_state *s = (deflate_state *) strm->state;
10927c478bd9Sstevel@tonic-gate 	unsigned len = s->pending;
10937c478bd9Sstevel@tonic-gate 
10947c478bd9Sstevel@tonic-gate 	if (len > strm->avail_out) len = strm->avail_out;
10957c478bd9Sstevel@tonic-gate 	if (len == 0)
10967c478bd9Sstevel@tonic-gate 		return;
10977c478bd9Sstevel@tonic-gate 
10987c478bd9Sstevel@tonic-gate 	if (strm->next_out != Z_NULL) {		/* PPP */
10997c478bd9Sstevel@tonic-gate 		zmemcpy(strm->next_out, s->pending_out, len);
11007c478bd9Sstevel@tonic-gate 		strm->next_out += len;
11017c478bd9Sstevel@tonic-gate 	}					/* PPP */
11027c478bd9Sstevel@tonic-gate 	s->pending_out += len;
11037c478bd9Sstevel@tonic-gate 	strm->total_out += len;
11047c478bd9Sstevel@tonic-gate 	strm->avail_out  -= len;
11057c478bd9Sstevel@tonic-gate 	s->pending -= len;
11067c478bd9Sstevel@tonic-gate 	if (s->pending == 0) {
11077c478bd9Sstevel@tonic-gate 		s->pending_out = s->pending_buf;
11087c478bd9Sstevel@tonic-gate 	}
11097c478bd9Sstevel@tonic-gate }
11107c478bd9Sstevel@tonic-gate 
11117c478bd9Sstevel@tonic-gate /* ========================================================================= */
11127c478bd9Sstevel@tonic-gate int
deflate(strm,flush)11137c478bd9Sstevel@tonic-gate deflate(strm, flush)
11147c478bd9Sstevel@tonic-gate     z_streamp strm;
11157c478bd9Sstevel@tonic-gate     int flush;
11167c478bd9Sstevel@tonic-gate {
11177c478bd9Sstevel@tonic-gate 	int old_flush;	/* value of flush param for previous deflate call */
11187c478bd9Sstevel@tonic-gate 	deflate_state *s;
11197c478bd9Sstevel@tonic-gate 
11207c478bd9Sstevel@tonic-gate 	if (strm == Z_NULL || strm->state == Z_NULL ||
11217c478bd9Sstevel@tonic-gate 	    flush > Z_FINISH || flush < 0) {
11227c478bd9Sstevel@tonic-gate 		return (Z_STREAM_ERROR);
11237c478bd9Sstevel@tonic-gate 	}
11247c478bd9Sstevel@tonic-gate 	s = (deflate_state *) strm->state;
11257c478bd9Sstevel@tonic-gate 
11267c478bd9Sstevel@tonic-gate 	if (/* strm->next_out == Z_NULL || --- we allow null --- PPP */
11277c478bd9Sstevel@tonic-gate 		(strm->next_in == Z_NULL && strm->avail_in != 0) ||
11287c478bd9Sstevel@tonic-gate 	    (s->status == FINISH_STATE && flush != Z_FINISH)) {
11297c478bd9Sstevel@tonic-gate 		ERR_RETURN(strm, Z_STREAM_ERROR);
11307c478bd9Sstevel@tonic-gate 	}
11317c478bd9Sstevel@tonic-gate 	if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR);
11327c478bd9Sstevel@tonic-gate 
11337c478bd9Sstevel@tonic-gate 	s->strm = strm;	/* just in case */
11347c478bd9Sstevel@tonic-gate 	old_flush = s->last_flush;
11357c478bd9Sstevel@tonic-gate 	s->last_flush = flush;
11367c478bd9Sstevel@tonic-gate 
11377c478bd9Sstevel@tonic-gate 	/* Write the zlib header */
11387c478bd9Sstevel@tonic-gate 	if (s->status == INIT_STATE) {
11397c478bd9Sstevel@tonic-gate 
11407c478bd9Sstevel@tonic-gate 		uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8;
11417c478bd9Sstevel@tonic-gate 		uInt level_flags = (s->level-1) >> 1;
11427c478bd9Sstevel@tonic-gate 
11437c478bd9Sstevel@tonic-gate 		if (level_flags > 3) level_flags = 3;
11447c478bd9Sstevel@tonic-gate 		header |= (level_flags << 6);
11457c478bd9Sstevel@tonic-gate 		if (s->strstart != 0) header |= PRESET_DICT;
11467c478bd9Sstevel@tonic-gate 		header += 31 - (header % 31);
11477c478bd9Sstevel@tonic-gate 
11487c478bd9Sstevel@tonic-gate 		s->status = BUSY_STATE;
11497c478bd9Sstevel@tonic-gate 		putShortMSB(s, header);
11507c478bd9Sstevel@tonic-gate 
11517c478bd9Sstevel@tonic-gate 		/* Save the adler32 of the preset dictionary: */
11527c478bd9Sstevel@tonic-gate 		if (s->strstart != 0) {
11537c478bd9Sstevel@tonic-gate 			putShortMSB(s, (uInt)(strm->adler >> 16));
11547c478bd9Sstevel@tonic-gate 			putShortMSB(s, (uInt)(strm->adler & 0xffff));
11557c478bd9Sstevel@tonic-gate 		}
11567c478bd9Sstevel@tonic-gate 		strm->adler = 1L;
11577c478bd9Sstevel@tonic-gate 	}
11587c478bd9Sstevel@tonic-gate 
11597c478bd9Sstevel@tonic-gate 	/* Flush as much pending output as possible */
11607c478bd9Sstevel@tonic-gate 	if (s->pending != 0) {
11617c478bd9Sstevel@tonic-gate 		flush_pending(strm);
11627c478bd9Sstevel@tonic-gate 		if (strm->avail_out == 0) {
11637c478bd9Sstevel@tonic-gate 			/*
11647c478bd9Sstevel@tonic-gate 			 * Since avail_out is 0, deflate will be
11657c478bd9Sstevel@tonic-gate 			 * called again with more output space, but
11667c478bd9Sstevel@tonic-gate 			 * possibly with both pending and avail_in
11677c478bd9Sstevel@tonic-gate 			 * equal to zero. There won't be anything to
11687c478bd9Sstevel@tonic-gate 			 * do, but this is not an error situation so
11697c478bd9Sstevel@tonic-gate 			 * make sure we return OK instead of BUF_ERROR
11707c478bd9Sstevel@tonic-gate 			 * at next call of deflate:
11717c478bd9Sstevel@tonic-gate 			 */
11727c478bd9Sstevel@tonic-gate 			s->last_flush = -1;
11737c478bd9Sstevel@tonic-gate 			return (Z_OK);
11747c478bd9Sstevel@tonic-gate 		}
11757c478bd9Sstevel@tonic-gate 
11767c478bd9Sstevel@tonic-gate 		/*
11777c478bd9Sstevel@tonic-gate 		 * Make sure there is something to do and avoid
11787c478bd9Sstevel@tonic-gate 		 * duplicate consecutive flushes. For repeated and
11797c478bd9Sstevel@tonic-gate 		 * useless calls with Z_FINISH, we keep returning
11807c478bd9Sstevel@tonic-gate 		 * Z_STREAM_END instead of Z_BUFF_ERROR.
11817c478bd9Sstevel@tonic-gate 		 */
11827c478bd9Sstevel@tonic-gate 	} else if (strm->avail_in == 0 && flush <= old_flush &&
11837c478bd9Sstevel@tonic-gate 	    flush != Z_FINISH) {
11847c478bd9Sstevel@tonic-gate 		ERR_RETURN(strm, Z_BUF_ERROR);
11857c478bd9Sstevel@tonic-gate 	}
11867c478bd9Sstevel@tonic-gate 
11877c478bd9Sstevel@tonic-gate 	/* User must not provide more input after the first FINISH: */
11887c478bd9Sstevel@tonic-gate 	if (s->status == FINISH_STATE && strm->avail_in != 0) {
11897c478bd9Sstevel@tonic-gate 		ERR_RETURN(strm, Z_BUF_ERROR);
11907c478bd9Sstevel@tonic-gate 	}
11917c478bd9Sstevel@tonic-gate 
11927c478bd9Sstevel@tonic-gate 	/* Start a new block or continue the current one. */
11937c478bd9Sstevel@tonic-gate 	if (strm->avail_in != 0 || s->lookahead != 0 ||
11947c478bd9Sstevel@tonic-gate 	    (flush != Z_NO_FLUSH && s->status != FINISH_STATE)) {
11957c478bd9Sstevel@tonic-gate 		block_state bstate;
11967c478bd9Sstevel@tonic-gate 
11977c478bd9Sstevel@tonic-gate 		bstate = (*(configuration_table[s->level].func))(s, flush);
11987c478bd9Sstevel@tonic-gate 
11997c478bd9Sstevel@tonic-gate 		if (bstate == finish_started || bstate == finish_done) {
12007c478bd9Sstevel@tonic-gate 			s->status = FINISH_STATE;
12017c478bd9Sstevel@tonic-gate 		}
12027c478bd9Sstevel@tonic-gate 		if (bstate == need_more || bstate == finish_started) {
12037c478bd9Sstevel@tonic-gate 			if (strm->avail_out == 0) {
12047c478bd9Sstevel@tonic-gate 				/* avoid BUF_ERROR next call, see above */
12057c478bd9Sstevel@tonic-gate 				s->last_flush = -1;
12067c478bd9Sstevel@tonic-gate 			}
12077c478bd9Sstevel@tonic-gate 			return (Z_OK);
12087c478bd9Sstevel@tonic-gate 			/*
12097c478bd9Sstevel@tonic-gate 			 * If flush != Z_NO_FLUSH && avail_out == 0,
12107c478bd9Sstevel@tonic-gate 			 * the next call of deflate should use the
12117c478bd9Sstevel@tonic-gate 			 * same flush parameter to make sure that the
12127c478bd9Sstevel@tonic-gate 			 * flush is complete. So we don't have to
12137c478bd9Sstevel@tonic-gate 			 * output an empty block here, this will be
12147c478bd9Sstevel@tonic-gate 			 * done at next call. This also ensures that
12157c478bd9Sstevel@tonic-gate 			 * for a very small output buffer, we emit at
12167c478bd9Sstevel@tonic-gate 			 * most one empty block.
12177c478bd9Sstevel@tonic-gate 			 */
12187c478bd9Sstevel@tonic-gate 		}
12197c478bd9Sstevel@tonic-gate 		if (bstate == block_done) {
12207c478bd9Sstevel@tonic-gate 			if (flush == Z_PARTIAL_FLUSH) {
12217c478bd9Sstevel@tonic-gate 				_tr_align(s);
12227c478bd9Sstevel@tonic-gate 			} else if (flush == Z_PACKET_FLUSH) {	/* PPP */
12237c478bd9Sstevel@tonic-gate 				/*
12247c478bd9Sstevel@tonic-gate 				 * Output just the 3-bit `stored'
12257c478bd9Sstevel@tonic-gate 				 * block type value, but not a zero
12267c478bd9Sstevel@tonic-gate 				 * length.  Added for PPP.
12277c478bd9Sstevel@tonic-gate 				 */
12287c478bd9Sstevel@tonic-gate 				_tr_stored_type_only(s);	/* PPP */
12297c478bd9Sstevel@tonic-gate 			} else { /* FULL_FLUSH or SYNC_FLUSH */
12307c478bd9Sstevel@tonic-gate 				_tr_stored_block(s, (char *)0, 0L, 0);
12317c478bd9Sstevel@tonic-gate 				/*
12327c478bd9Sstevel@tonic-gate 				 * For a full flush, this empty block
12337c478bd9Sstevel@tonic-gate 				 * will be recognized as a special
12347c478bd9Sstevel@tonic-gate 				 * marker by inflate_sync().
12357c478bd9Sstevel@tonic-gate 				 */
12367c478bd9Sstevel@tonic-gate 				if (flush == Z_FULL_FLUSH) {
12377c478bd9Sstevel@tonic-gate 					CLEAR_HASH(s);	/* forget history */
12387c478bd9Sstevel@tonic-gate 				}
12397c478bd9Sstevel@tonic-gate 			}
12407c478bd9Sstevel@tonic-gate 			flush_pending(strm);
12417c478bd9Sstevel@tonic-gate 			if (strm->avail_out == 0) {
12427c478bd9Sstevel@tonic-gate 				/* avoid BUF_ERROR at next call, see above */
12437c478bd9Sstevel@tonic-gate 				s->last_flush = -1;
12447c478bd9Sstevel@tonic-gate 				return (Z_OK);
12457c478bd9Sstevel@tonic-gate 			}
12467c478bd9Sstevel@tonic-gate 		}
12477c478bd9Sstevel@tonic-gate 	}
12487c478bd9Sstevel@tonic-gate 	Assert(strm->avail_out > 0, "bug2");
12497c478bd9Sstevel@tonic-gate 
12507c478bd9Sstevel@tonic-gate 	if (flush != Z_FINISH)
12517c478bd9Sstevel@tonic-gate 		return (Z_OK);
12527c478bd9Sstevel@tonic-gate 	if (s->noheader)
12537c478bd9Sstevel@tonic-gate 		return (Z_STREAM_END);
12547c478bd9Sstevel@tonic-gate 
12557c478bd9Sstevel@tonic-gate 	/* Write the zlib trailer (adler32) */
12567c478bd9Sstevel@tonic-gate 	putShortMSB(s, (uInt)(strm->adler >> 16));
12577c478bd9Sstevel@tonic-gate 	putShortMSB(s, (uInt)(strm->adler & 0xffff));
12587c478bd9Sstevel@tonic-gate 	flush_pending(strm);
12597c478bd9Sstevel@tonic-gate 	/*
12607c478bd9Sstevel@tonic-gate 	 * If avail_out is zero, the application will call deflate
12617c478bd9Sstevel@tonic-gate 	 * again to flush the rest.
12627c478bd9Sstevel@tonic-gate 	 */
12637c478bd9Sstevel@tonic-gate 	s->noheader = -1;	/* write the trailer only once! */
12647c478bd9Sstevel@tonic-gate 	return (s->pending != 0 ? Z_OK : Z_STREAM_END);
12657c478bd9Sstevel@tonic-gate }
12667c478bd9Sstevel@tonic-gate 
12677c478bd9Sstevel@tonic-gate /* ========================================================================= */
12687c478bd9Sstevel@tonic-gate int
deflateEnd(strm)12697c478bd9Sstevel@tonic-gate deflateEnd(strm)
12707c478bd9Sstevel@tonic-gate     z_streamp strm;
12717c478bd9Sstevel@tonic-gate {
12727c478bd9Sstevel@tonic-gate 	int status;
12737c478bd9Sstevel@tonic-gate 	deflate_state *s;
12747c478bd9Sstevel@tonic-gate 
12757c478bd9Sstevel@tonic-gate 	if (strm == Z_NULL || strm->state == Z_NULL)
12767c478bd9Sstevel@tonic-gate 		return (Z_STREAM_ERROR);
12777c478bd9Sstevel@tonic-gate 	s = (deflate_state *) strm->state;
12787c478bd9Sstevel@tonic-gate 
12797c478bd9Sstevel@tonic-gate 	status = s->status;
12807c478bd9Sstevel@tonic-gate 	if (status != INIT_STATE && status != BUSY_STATE &&
12817c478bd9Sstevel@tonic-gate 	    status != FINISH_STATE) {
12827c478bd9Sstevel@tonic-gate 		return (Z_STREAM_ERROR);
12837c478bd9Sstevel@tonic-gate 	}
12847c478bd9Sstevel@tonic-gate 
12857c478bd9Sstevel@tonic-gate 	/* Deallocate in reverse order of allocations: */
12867c478bd9Sstevel@tonic-gate 	TRY_FREE(strm, s->pending_buf);
12877c478bd9Sstevel@tonic-gate 	TRY_FREE(strm, s->head);
12887c478bd9Sstevel@tonic-gate 	TRY_FREE(strm, s->prev);
12897c478bd9Sstevel@tonic-gate 	TRY_FREE(strm, s->window);
12907c478bd9Sstevel@tonic-gate 
12917c478bd9Sstevel@tonic-gate 	ZFREE(strm, s);
12927c478bd9Sstevel@tonic-gate 	strm->state = Z_NULL;
12937c478bd9Sstevel@tonic-gate 
12947c478bd9Sstevel@tonic-gate 	return (status == BUSY_STATE ? Z_DATA_ERROR : Z_OK);
12957c478bd9Sstevel@tonic-gate }
12967c478bd9Sstevel@tonic-gate 
12977c478bd9Sstevel@tonic-gate /*
12987c478bd9Sstevel@tonic-gate  * =========================================================================
12997c478bd9Sstevel@tonic-gate  * Copy the source state to the destination state.
13007c478bd9Sstevel@tonic-gate  * To simplify the source, this is not supported for 16-bit MSDOS (which
13017c478bd9Sstevel@tonic-gate  * doesn't have enough memory anyway to duplicate compression states).
13027c478bd9Sstevel@tonic-gate  */
13037c478bd9Sstevel@tonic-gate int
deflateCopy(dest,source)13047c478bd9Sstevel@tonic-gate deflateCopy(dest, source)
13057c478bd9Sstevel@tonic-gate     z_streamp dest;
13067c478bd9Sstevel@tonic-gate     z_streamp source;
13077c478bd9Sstevel@tonic-gate {
13087c478bd9Sstevel@tonic-gate #ifdef MAXSEG_64K
13097c478bd9Sstevel@tonic-gate 	return (Z_STREAM_ERROR);
13107c478bd9Sstevel@tonic-gate #else
13117c478bd9Sstevel@tonic-gate 	deflate_state *ds;
13127c478bd9Sstevel@tonic-gate 	deflate_state *ss;
13137c478bd9Sstevel@tonic-gate 	ushf *overlay;
13147c478bd9Sstevel@tonic-gate 
13157c478bd9Sstevel@tonic-gate 	if (source == Z_NULL || dest == Z_NULL || source->state == Z_NULL)
13167c478bd9Sstevel@tonic-gate 		return (Z_STREAM_ERROR);
13177c478bd9Sstevel@tonic-gate 	ss = (deflate_state *) source->state;
13187c478bd9Sstevel@tonic-gate 
13197c478bd9Sstevel@tonic-gate 	zmemcpy(dest, source, sizeof (*dest));
13207c478bd9Sstevel@tonic-gate 
13217c478bd9Sstevel@tonic-gate 	ds = (deflate_state *) ZALLOC(dest, 1, sizeof (deflate_state));
13227c478bd9Sstevel@tonic-gate 	if (ds == Z_NULL)
13237c478bd9Sstevel@tonic-gate 		return (Z_MEM_ERROR);
13247c478bd9Sstevel@tonic-gate 	dest->state = (struct internal_state FAR *) ds;
13257c478bd9Sstevel@tonic-gate 	zmemcpy(ds, ss, sizeof (*ds));
13267c478bd9Sstevel@tonic-gate 	ds->strm = dest;
13277c478bd9Sstevel@tonic-gate 
13287c478bd9Sstevel@tonic-gate 	ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof (Byte));
13297c478bd9Sstevel@tonic-gate 	ds->prev   = (Posf *)  ZALLOC(dest, ds->w_size, sizeof (Pos));
13307c478bd9Sstevel@tonic-gate 	ds->head   = (Posf *)  ZALLOC(dest, ds->hash_size, sizeof (Pos));
13317c478bd9Sstevel@tonic-gate 	overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof (ush)+2);
13327c478bd9Sstevel@tonic-gate 	ds->pending_buf = (uchf *) overlay;
13337c478bd9Sstevel@tonic-gate 
13347c478bd9Sstevel@tonic-gate 	if (ds->window == Z_NULL || ds->prev == Z_NULL || ds->head == Z_NULL ||
13357c478bd9Sstevel@tonic-gate 	    ds->pending_buf == Z_NULL) {
13367c478bd9Sstevel@tonic-gate 		ds->status = INIT_STATE;
13377c478bd9Sstevel@tonic-gate 		(void) deflateEnd(dest);
13387c478bd9Sstevel@tonic-gate 		return (Z_MEM_ERROR);
13397c478bd9Sstevel@tonic-gate 	}
13407c478bd9Sstevel@tonic-gate 	/* following zmemcpy doesn't work for 16-bit MSDOS */
13417c478bd9Sstevel@tonic-gate 	zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof (Byte));
13427c478bd9Sstevel@tonic-gate 	zmemcpy(ds->prev, ss->prev, ds->w_size * sizeof (Pos));
13437c478bd9Sstevel@tonic-gate 	zmemcpy(ds->head, ss->head, ds->hash_size * sizeof (Pos));
13447c478bd9Sstevel@tonic-gate 	zmemcpy(ds->pending_buf, ss->pending_buf, (uInt)ds->pending_buf_size);
13457c478bd9Sstevel@tonic-gate 
13467c478bd9Sstevel@tonic-gate 	ds->pending_out = ds->pending_buf + (ss->pending_out - ss->pending_buf);
13477c478bd9Sstevel@tonic-gate 	ds->d_buf = overlay + ds->lit_bufsize/sizeof (ush);
13487c478bd9Sstevel@tonic-gate 	ds->l_buf = ds->pending_buf + (1+sizeof (ush))*ds->lit_bufsize;
13497c478bd9Sstevel@tonic-gate 
13507c478bd9Sstevel@tonic-gate 	ds->l_desc.dyn_tree = ds->dyn_ltree;
13517c478bd9Sstevel@tonic-gate 	ds->d_desc.dyn_tree = ds->dyn_dtree;
13527c478bd9Sstevel@tonic-gate 	ds->bl_desc.dyn_tree = ds->bl_tree;
13537c478bd9Sstevel@tonic-gate 
13547c478bd9Sstevel@tonic-gate 	return (Z_OK);
13557c478bd9Sstevel@tonic-gate #endif
13567c478bd9Sstevel@tonic-gate }
13577c478bd9Sstevel@tonic-gate 
13587c478bd9Sstevel@tonic-gate /*
13597c478bd9Sstevel@tonic-gate  * ===========================================================================
13607c478bd9Sstevel@tonic-gate  * Return the number of bytes of output which are immediately available
13617c478bd9Sstevel@tonic-gate  * for output from the decompressor.		---PPP---
13627c478bd9Sstevel@tonic-gate  */
13637c478bd9Sstevel@tonic-gate int
deflateOutputPending(strm)13647c478bd9Sstevel@tonic-gate deflateOutputPending(strm)
13657c478bd9Sstevel@tonic-gate     z_streamp strm;
13667c478bd9Sstevel@tonic-gate {
13677c478bd9Sstevel@tonic-gate 	if (strm == Z_NULL || strm->state == Z_NULL)
13687c478bd9Sstevel@tonic-gate 		return (0);
13697c478bd9Sstevel@tonic-gate 
13707c478bd9Sstevel@tonic-gate 	return (((deflate_state *)(strm->state))->pending);
13717c478bd9Sstevel@tonic-gate }
13727c478bd9Sstevel@tonic-gate 
13737c478bd9Sstevel@tonic-gate /*
13747c478bd9Sstevel@tonic-gate  * ===========================================================================
13757c478bd9Sstevel@tonic-gate  * Read a new buffer from the current input stream, update the adler32
13767c478bd9Sstevel@tonic-gate  * and total number of bytes read.  All deflate() input goes through
13777c478bd9Sstevel@tonic-gate  * this function so some applications may wish to modify it to avoid
13787c478bd9Sstevel@tonic-gate  * allocating a large strm->next_in buffer and copying from it.
13797c478bd9Sstevel@tonic-gate  * (See also flush_pending()).
13807c478bd9Sstevel@tonic-gate  */
13817c478bd9Sstevel@tonic-gate local int
read_buf(strm,buf,size)13827c478bd9Sstevel@tonic-gate read_buf(strm, buf, size)
13837c478bd9Sstevel@tonic-gate     z_streamp strm;
13847c478bd9Sstevel@tonic-gate     Bytef *buf;
13857c478bd9Sstevel@tonic-gate     unsigned size;
13867c478bd9Sstevel@tonic-gate {
13877c478bd9Sstevel@tonic-gate 	unsigned len = strm->avail_in;
13887c478bd9Sstevel@tonic-gate 
13897c478bd9Sstevel@tonic-gate 	if (len > size) len = size;
13907c478bd9Sstevel@tonic-gate 	if (len == 0)
13917c478bd9Sstevel@tonic-gate 		return (0);
13927c478bd9Sstevel@tonic-gate 
13937c478bd9Sstevel@tonic-gate 	strm->avail_in  -= len;
13947c478bd9Sstevel@tonic-gate 
13957c478bd9Sstevel@tonic-gate 	if (!((deflate_state *)(strm->state))->noheader) {
13967c478bd9Sstevel@tonic-gate 		strm->adler = adler32(strm->adler, strm->next_in, len);
13977c478bd9Sstevel@tonic-gate 	}
13987c478bd9Sstevel@tonic-gate 	zmemcpy(buf, strm->next_in, len);
13997c478bd9Sstevel@tonic-gate 	strm->next_in  += len;
14007c478bd9Sstevel@tonic-gate 	strm->total_in += len;
14017c478bd9Sstevel@tonic-gate 
14027c478bd9Sstevel@tonic-gate 	return ((int)len);
14037c478bd9Sstevel@tonic-gate }
14047c478bd9Sstevel@tonic-gate 
14057c478bd9Sstevel@tonic-gate /*
14067c478bd9Sstevel@tonic-gate  * ===========================================================================
14077c478bd9Sstevel@tonic-gate  * Initialize the "longest match" routines for a new zlib stream
14087c478bd9Sstevel@tonic-gate  */
14097c478bd9Sstevel@tonic-gate local void
lm_init(s)14107c478bd9Sstevel@tonic-gate lm_init(s)
14117c478bd9Sstevel@tonic-gate     deflate_state *s;
14127c478bd9Sstevel@tonic-gate {
14137c478bd9Sstevel@tonic-gate 	s->window_size = (ulg)2L*s->w_size;
14147c478bd9Sstevel@tonic-gate 
14157c478bd9Sstevel@tonic-gate 	CLEAR_HASH(s);
14167c478bd9Sstevel@tonic-gate 
14177c478bd9Sstevel@tonic-gate 	/* Set the default configuration parameters: */
14187c478bd9Sstevel@tonic-gate 	s->max_lazy_match   = configuration_table[s->level].max_lazy;
14197c478bd9Sstevel@tonic-gate 	s->good_match	= configuration_table[s->level].good_length;
14207c478bd9Sstevel@tonic-gate 	s->nice_match	= configuration_table[s->level].nice_length;
14217c478bd9Sstevel@tonic-gate 	s->max_chain_length = configuration_table[s->level].max_chain;
14227c478bd9Sstevel@tonic-gate 
14237c478bd9Sstevel@tonic-gate 	s->strstart = 0;
14247c478bd9Sstevel@tonic-gate 	s->block_start = 0L;
14257c478bd9Sstevel@tonic-gate 	s->lookahead = 0;
14267c478bd9Sstevel@tonic-gate 	s->match_length = s->prev_length = MIN_MATCH-1;
14277c478bd9Sstevel@tonic-gate 	s->match_available = 0;
14287c478bd9Sstevel@tonic-gate 	s->ins_h = 0;
14297c478bd9Sstevel@tonic-gate #ifdef ASMV
14307c478bd9Sstevel@tonic-gate 	match_init();	/* initialize the asm code */
14317c478bd9Sstevel@tonic-gate #endif
14327c478bd9Sstevel@tonic-gate }
14337c478bd9Sstevel@tonic-gate 
14347c478bd9Sstevel@tonic-gate /*
14357c478bd9Sstevel@tonic-gate  * ===========================================================================
14367c478bd9Sstevel@tonic-gate  * Set match_start to the longest match starting at the given string and
14377c478bd9Sstevel@tonic-gate  * return its length. Matches shorter or equal to prev_length are discarded,
14387c478bd9Sstevel@tonic-gate  * in which case the result is equal to prev_length and match_start is
14397c478bd9Sstevel@tonic-gate  * garbage.
14407c478bd9Sstevel@tonic-gate  * IN assertions: cur_match is the head of the hash chain for the current
14417c478bd9Sstevel@tonic-gate  *   string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
14427c478bd9Sstevel@tonic-gate  * OUT assertion: the match length is not greater than s->lookahead.
14437c478bd9Sstevel@tonic-gate  */
14447c478bd9Sstevel@tonic-gate #ifndef ASMV
14457c478bd9Sstevel@tonic-gate /*
14467c478bd9Sstevel@tonic-gate  * For 80x86 and 680x0, an optimized version will be provided in
14477c478bd9Sstevel@tonic-gate  * match.asm or match.S. The code will be functionally equivalent.
14487c478bd9Sstevel@tonic-gate  */
14497c478bd9Sstevel@tonic-gate #ifndef FASTEST
14507c478bd9Sstevel@tonic-gate local uInt
longest_match(s,cur_match)14517c478bd9Sstevel@tonic-gate longest_match(s, cur_match)
14527c478bd9Sstevel@tonic-gate     deflate_state *s;
14537c478bd9Sstevel@tonic-gate     IPos cur_match;	/* current match */
14547c478bd9Sstevel@tonic-gate {
14557c478bd9Sstevel@tonic-gate 	/* max hash chain length */
14567c478bd9Sstevel@tonic-gate 	unsigned chain_length = s->max_chain_length;
14577c478bd9Sstevel@tonic-gate 	register Bytef *scan = s->window + s->strstart;	/* current string */
14587c478bd9Sstevel@tonic-gate 	register Bytef *match;	/* matched string */
14597c478bd9Sstevel@tonic-gate 	register int len;	/* length of current match */
14607c478bd9Sstevel@tonic-gate 	int best_len = s->prev_length;	/* best match length so far */
14617c478bd9Sstevel@tonic-gate 	int nice_match = s->nice_match;	/* stop if match long enough */
14627c478bd9Sstevel@tonic-gate 	IPos limit = s->strstart > (IPos)MAX_DIST(s) ?
14637c478bd9Sstevel@tonic-gate 	    s->strstart - (IPos)MAX_DIST(s) : NIL;
14647c478bd9Sstevel@tonic-gate 	/*
14657c478bd9Sstevel@tonic-gate 	 * Stop when cur_match becomes <= limit. To simplify the code,
14667c478bd9Sstevel@tonic-gate 	 * we prevent matches with the string of window index 0.
14677c478bd9Sstevel@tonic-gate 	 */
14687c478bd9Sstevel@tonic-gate 	Posf *prev = s->prev;
14697c478bd9Sstevel@tonic-gate 	uInt wmask = s->w_mask;
14707c478bd9Sstevel@tonic-gate 
14717c478bd9Sstevel@tonic-gate #ifdef UNALIGNED_OK
14727c478bd9Sstevel@tonic-gate 	/*
14737c478bd9Sstevel@tonic-gate 	 * Compare two bytes at a time. Note: this is not always
14747c478bd9Sstevel@tonic-gate 	 * beneficial.  Try with and without -DUNALIGNED_OK to check.
14757c478bd9Sstevel@tonic-gate 	 */
14767c478bd9Sstevel@tonic-gate 	register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
14777c478bd9Sstevel@tonic-gate 	register ush scan_start = *(ushf*)scan;
14787c478bd9Sstevel@tonic-gate 	register ush scan_end   = *(ushf*)(scan+best_len-1);
14797c478bd9Sstevel@tonic-gate #else
14807c478bd9Sstevel@tonic-gate 	register Bytef *strend = s->window + s->strstart + MAX_MATCH;
14817c478bd9Sstevel@tonic-gate 	register Byte scan_end1  = scan[best_len-1];
14827c478bd9Sstevel@tonic-gate 	register Byte scan_end   = scan[best_len];
14837c478bd9Sstevel@tonic-gate #endif
14847c478bd9Sstevel@tonic-gate 
14857c478bd9Sstevel@tonic-gate 	/*
14867c478bd9Sstevel@tonic-gate 	 * The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2
14877c478bd9Sstevel@tonic-gate 	 * multiple of 16.  It is easy to get rid of this optimization
14887c478bd9Sstevel@tonic-gate 	 * if necessary.
14897c478bd9Sstevel@tonic-gate 	 */
14907c478bd9Sstevel@tonic-gate 	Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
14917c478bd9Sstevel@tonic-gate 
14927c478bd9Sstevel@tonic-gate 	/* Do not waste too much time if we already have a good match: */
14937c478bd9Sstevel@tonic-gate 	if (s->prev_length >= s->good_match) {
14947c478bd9Sstevel@tonic-gate 		chain_length >>= 2;
14957c478bd9Sstevel@tonic-gate 	}
14967c478bd9Sstevel@tonic-gate 	/*
14977c478bd9Sstevel@tonic-gate 	 * Do not look for matches beyond the end of the input. This
14987c478bd9Sstevel@tonic-gate 	 * is necessary to make deflate deterministic.
14997c478bd9Sstevel@tonic-gate 	 */
15007c478bd9Sstevel@tonic-gate 	if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
15017c478bd9Sstevel@tonic-gate 
15027c478bd9Sstevel@tonic-gate 	Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD,
15037c478bd9Sstevel@tonic-gate 	    "need lookahead");
15047c478bd9Sstevel@tonic-gate 
15057c478bd9Sstevel@tonic-gate 	do {
15067c478bd9Sstevel@tonic-gate 		Assert(cur_match <= s->strstart, "no future");
15077c478bd9Sstevel@tonic-gate 		match = s->window + cur_match;
15087c478bd9Sstevel@tonic-gate 
15097c478bd9Sstevel@tonic-gate 		/*
15107c478bd9Sstevel@tonic-gate 		 * Skip to next match if the match length cannot
15117c478bd9Sstevel@tonic-gate 		 * increase or if the match length is less than 2:
15127c478bd9Sstevel@tonic-gate 		 */
15137c478bd9Sstevel@tonic-gate #if (defined(UNALIGNED_OK) && MAX_MATCH == 258)
15147c478bd9Sstevel@tonic-gate 		/*
15157c478bd9Sstevel@tonic-gate 		 * This code assumes sizeof (unsigned short) == 2. Do
15167c478bd9Sstevel@tonic-gate 		 * not use UNALIGNED_OK if your compiler uses a
15177c478bd9Sstevel@tonic-gate 		 * different size.
15187c478bd9Sstevel@tonic-gate 		 */
15197c478bd9Sstevel@tonic-gate 		if (*(ushf*)(match+best_len-1) != scan_end ||
15207c478bd9Sstevel@tonic-gate 		    *(ushf*)match != scan_start) continue;
15217c478bd9Sstevel@tonic-gate 
15227c478bd9Sstevel@tonic-gate 		/*
15237c478bd9Sstevel@tonic-gate 		 * It is not necessary to compare scan[2] and match[2]
15247c478bd9Sstevel@tonic-gate 		 * since they are always equal when the other bytes
15257c478bd9Sstevel@tonic-gate 		 * match, given that the hash keys are equal and that
15267c478bd9Sstevel@tonic-gate 		 * HASH_BITS >= 8. Compare 2 bytes at a time at
15277c478bd9Sstevel@tonic-gate 		 * strstart+3, +5, ... up to strstart+257. We check
15287c478bd9Sstevel@tonic-gate 		 * for insufficient lookahead only every 4th
15297c478bd9Sstevel@tonic-gate 		 * comparison; the 128th check will be made at
15307c478bd9Sstevel@tonic-gate 		 * strstart+257. If MAX_MATCH-2 is not a multiple of
15317c478bd9Sstevel@tonic-gate 		 * 8, it is necessary to put more guard bytes at the
15327c478bd9Sstevel@tonic-gate 		 * end of the window, or to check more often for
15337c478bd9Sstevel@tonic-gate 		 * insufficient lookahead.
15347c478bd9Sstevel@tonic-gate 		 */
15357c478bd9Sstevel@tonic-gate 		Assert(scan[2] == match[2], "scan[2]?");
15367c478bd9Sstevel@tonic-gate 		scan++, match++;
15377c478bd9Sstevel@tonic-gate 		do {
15387c478bd9Sstevel@tonic-gate 		} while (*(ushf *)(scan += 2) == *(ushf *)(match += 2) &&
15397c478bd9Sstevel@tonic-gate 		    *(ushf *)(scan += 2) == *(ushf *)(match += 2) &&
15407c478bd9Sstevel@tonic-gate 		    *(ushf *)(scan += 2) == *(ushf *)(match += 2) &&
15417c478bd9Sstevel@tonic-gate 		    *(ushf *)(scan += 2) == *(ushf *)(match += 2) &&
15427c478bd9Sstevel@tonic-gate 		    scan < strend);
15437c478bd9Sstevel@tonic-gate 		/* The funny "do {}" generates better code on most compilers */
15447c478bd9Sstevel@tonic-gate 
15457c478bd9Sstevel@tonic-gate 		/* Here, scan <= window+strstart+257 */
15467c478bd9Sstevel@tonic-gate 		Assert(scan <= s->window+(unsigned)(s->window_size-1),
15477c478bd9Sstevel@tonic-gate 		    "wild scan");
15487c478bd9Sstevel@tonic-gate 		if (*scan == *match) scan++;
15497c478bd9Sstevel@tonic-gate 
15507c478bd9Sstevel@tonic-gate 		len = (MAX_MATCH - 1) - (int)(strend-scan);
15517c478bd9Sstevel@tonic-gate 		scan = strend - (MAX_MATCH-1);
15527c478bd9Sstevel@tonic-gate 
15537c478bd9Sstevel@tonic-gate #else /* UNALIGNED_OK */
15547c478bd9Sstevel@tonic-gate 
15557c478bd9Sstevel@tonic-gate 		if (match[best_len]	!= scan_end	||
15567c478bd9Sstevel@tonic-gate 		    match[best_len-1]	!= scan_end1	||
15577c478bd9Sstevel@tonic-gate 		    *match		!= *scan	||
15587c478bd9Sstevel@tonic-gate 		    *++match		!= scan[1])
15597c478bd9Sstevel@tonic-gate 			continue;
15607c478bd9Sstevel@tonic-gate 
15617c478bd9Sstevel@tonic-gate 		/*
15627c478bd9Sstevel@tonic-gate 		 * The check at best_len-1 can be removed because it
15637c478bd9Sstevel@tonic-gate 		 * will be made again later. (This heuristic is not
15647c478bd9Sstevel@tonic-gate 		 * always a win.)  It is not necessary to compare
15657c478bd9Sstevel@tonic-gate 		 * scan[2] and match[2] since they are always equal
15667c478bd9Sstevel@tonic-gate 		 * when the other bytes match, given that the hash
15677c478bd9Sstevel@tonic-gate 		 * keys are equal and that HASH_BITS >= 8.
15687c478bd9Sstevel@tonic-gate 		 */
15697c478bd9Sstevel@tonic-gate 		scan += 2, match++;
15707c478bd9Sstevel@tonic-gate 		Assert(*scan == *match, "match[2]?");
15717c478bd9Sstevel@tonic-gate 
15727c478bd9Sstevel@tonic-gate 		/*
15737c478bd9Sstevel@tonic-gate 		 * We check for insufficient lookahead only every 8th
15747c478bd9Sstevel@tonic-gate 		 * comparison; the 256th check will be made at
15757c478bd9Sstevel@tonic-gate 		 * strstart+258.
15767c478bd9Sstevel@tonic-gate 		 */
15777c478bd9Sstevel@tonic-gate 		do {
15787c478bd9Sstevel@tonic-gate 		} while (*++scan == *++match && *++scan == *++match &&
15797c478bd9Sstevel@tonic-gate 		    *++scan == *++match && *++scan == *++match &&
15807c478bd9Sstevel@tonic-gate 		    *++scan == *++match && *++scan == *++match &&
15817c478bd9Sstevel@tonic-gate 		    *++scan == *++match && *++scan == *++match &&
15827c478bd9Sstevel@tonic-gate 		    scan < strend);
15837c478bd9Sstevel@tonic-gate 
15847c478bd9Sstevel@tonic-gate 		Assert(scan <= s->window+(unsigned)(s->window_size-1),
15857c478bd9Sstevel@tonic-gate 		    "wild scan");
15867c478bd9Sstevel@tonic-gate 
15877c478bd9Sstevel@tonic-gate 		len = MAX_MATCH - (int)(strend - scan);
15887c478bd9Sstevel@tonic-gate 		scan = strend - MAX_MATCH;
15897c478bd9Sstevel@tonic-gate 
15907c478bd9Sstevel@tonic-gate #endif /* UNALIGNED_OK */
15917c478bd9Sstevel@tonic-gate 
15927c478bd9Sstevel@tonic-gate 		if (len > best_len) {
15937c478bd9Sstevel@tonic-gate 			s->match_start = cur_match;
15947c478bd9Sstevel@tonic-gate 			best_len = len;
15957c478bd9Sstevel@tonic-gate 			if (len >= nice_match) break;
15967c478bd9Sstevel@tonic-gate #ifdef UNALIGNED_OK
15977c478bd9Sstevel@tonic-gate 			scan_end = *(ushf*)(scan+best_len-1);
15987c478bd9Sstevel@tonic-gate #else
15997c478bd9Sstevel@tonic-gate 			scan_end1  = scan[best_len-1];
16007c478bd9Sstevel@tonic-gate 			scan_end   = scan[best_len];
16017c478bd9Sstevel@tonic-gate #endif
16027c478bd9Sstevel@tonic-gate 		}
16037c478bd9Sstevel@tonic-gate 	} while ((cur_match = prev[cur_match & wmask]) > limit &&
16047c478bd9Sstevel@tonic-gate 	    --chain_length != 0);
16057c478bd9Sstevel@tonic-gate 
16067c478bd9Sstevel@tonic-gate 	if ((uInt)best_len <= s->lookahead)
16077c478bd9Sstevel@tonic-gate 		return (best_len);
16087c478bd9Sstevel@tonic-gate 	return (s->lookahead);
16097c478bd9Sstevel@tonic-gate }
16107c478bd9Sstevel@tonic-gate #else /* FASTEST */
16117c478bd9Sstevel@tonic-gate /*
16127c478bd9Sstevel@tonic-gate  * ---------------------------------------------------------------------------
16137c478bd9Sstevel@tonic-gate  * Optimized version for level == 1 only
16147c478bd9Sstevel@tonic-gate  */
16157c478bd9Sstevel@tonic-gate local uInt
longest_match(s,cur_match)16167c478bd9Sstevel@tonic-gate longest_match(s, cur_match)
16177c478bd9Sstevel@tonic-gate deflate_state *s;
16187c478bd9Sstevel@tonic-gate IPos cur_match;		/* current match */
16197c478bd9Sstevel@tonic-gate {
16207c478bd9Sstevel@tonic-gate 	register Bytef *scan = s->window + s->strstart; /* current string */
16217c478bd9Sstevel@tonic-gate 	register Bytef *match;		/* matched string */
16227c478bd9Sstevel@tonic-gate 	register int len;			/* length of current match */
16237c478bd9Sstevel@tonic-gate 	register Bytef *strend = s->window + s->strstart + MAX_MATCH;
16247c478bd9Sstevel@tonic-gate 
16257c478bd9Sstevel@tonic-gate 	/*
16267c478bd9Sstevel@tonic-gate 	 * The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2
16277c478bd9Sstevel@tonic-gate 	 * multiple of 16.  It is easy to get rid of this optimization
16287c478bd9Sstevel@tonic-gate 	 * if necessary.
16297c478bd9Sstevel@tonic-gate 	 */
16307c478bd9Sstevel@tonic-gate 	Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
16317c478bd9Sstevel@tonic-gate 
16327c478bd9Sstevel@tonic-gate 	Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD,
16337c478bd9Sstevel@tonic-gate 	    "need lookahead");
16347c478bd9Sstevel@tonic-gate 
16357c478bd9Sstevel@tonic-gate 	Assert(cur_match <= s->strstart, "no future");
16367c478bd9Sstevel@tonic-gate 
16377c478bd9Sstevel@tonic-gate 	match = s->window + cur_match;
16387c478bd9Sstevel@tonic-gate 
16397c478bd9Sstevel@tonic-gate 	/* Return failure if the match length is less than 2: */
16407c478bd9Sstevel@tonic-gate 	if (match[0] != scan[0] || match[1] != scan[1])
16417c478bd9Sstevel@tonic-gate 		return (MIN_MATCH-1);
16427c478bd9Sstevel@tonic-gate 
16437c478bd9Sstevel@tonic-gate 	/*
16447c478bd9Sstevel@tonic-gate 	 * The check at best_len-1 can be removed because it will be
16457c478bd9Sstevel@tonic-gate 	 * made again later. (This heuristic is not always a win.)  It
16467c478bd9Sstevel@tonic-gate 	 * is not necessary to compare scan[2] and match[2] since they
16477c478bd9Sstevel@tonic-gate 	 * are always equal when the other bytes match, given that the
16487c478bd9Sstevel@tonic-gate 	 * hash keys are equal and that HASH_BITS >= 8.
16497c478bd9Sstevel@tonic-gate 	 */
16507c478bd9Sstevel@tonic-gate 	scan += 2, match += 2;
16517c478bd9Sstevel@tonic-gate 	Assert(*scan == *match, "match[2]?");
16527c478bd9Sstevel@tonic-gate 
16537c478bd9Sstevel@tonic-gate 	/*
16547c478bd9Sstevel@tonic-gate 	 * We check for insufficient lookahead only every 8th comparison;
16557c478bd9Sstevel@tonic-gate 	 * the 256th check will be made at strstart+258.
16567c478bd9Sstevel@tonic-gate 	 */
16577c478bd9Sstevel@tonic-gate 	do {
16587c478bd9Sstevel@tonic-gate 	} while (*++scan == *++match && *++scan == *++match &&
16597c478bd9Sstevel@tonic-gate 	    *++scan == *++match && *++scan == *++match &&
16607c478bd9Sstevel@tonic-gate 	    *++scan == *++match && *++scan == *++match &&
16617c478bd9Sstevel@tonic-gate 	    *++scan == *++match && *++scan == *++match &&
16627c478bd9Sstevel@tonic-gate 	    scan < strend);
16637c478bd9Sstevel@tonic-gate 
16647c478bd9Sstevel@tonic-gate 	Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
16657c478bd9Sstevel@tonic-gate 
16667c478bd9Sstevel@tonic-gate 	len = MAX_MATCH - (int)(strend - scan);
16677c478bd9Sstevel@tonic-gate 
16687c478bd9Sstevel@tonic-gate 	if (len < MIN_MATCH)
16697c478bd9Sstevel@tonic-gate 		return (MIN_MATCH - 1);
16707c478bd9Sstevel@tonic-gate 
16717c478bd9Sstevel@tonic-gate 	s->match_start = cur_match;
16727c478bd9Sstevel@tonic-gate 	return (len <= s->lookahead ? len : s->lookahead);
16737c478bd9Sstevel@tonic-gate }
16747c478bd9Sstevel@tonic-gate #endif /* FASTEST */
16757c478bd9Sstevel@tonic-gate #endif /* ASMV */
16767c478bd9Sstevel@tonic-gate 
16777c478bd9Sstevel@tonic-gate #ifdef DEBUG_ZLIB
16787c478bd9Sstevel@tonic-gate /*
16797c478bd9Sstevel@tonic-gate  * ===========================================================================
16807c478bd9Sstevel@tonic-gate  * Check that the match at match_start is indeed a match.
16817c478bd9Sstevel@tonic-gate  */
16827c478bd9Sstevel@tonic-gate local void
check_match(s,start,match,length)16837c478bd9Sstevel@tonic-gate check_match(s, start, match, length)
16847c478bd9Sstevel@tonic-gate     deflate_state *s;
16857c478bd9Sstevel@tonic-gate     IPos start, match;
16867c478bd9Sstevel@tonic-gate     int length;
16877c478bd9Sstevel@tonic-gate {
16887c478bd9Sstevel@tonic-gate 	/* check that the match is indeed a match */
16897c478bd9Sstevel@tonic-gate 	if (zmemcmp(s->window + match, s->window + start, length) != EQUAL) {
16907c478bd9Sstevel@tonic-gate 		fprintf(stderr, " start %u, match %u, length %d\n",
16917c478bd9Sstevel@tonic-gate 		    start, match, length);
16927c478bd9Sstevel@tonic-gate 		do {
16937c478bd9Sstevel@tonic-gate 			fprintf(stderr, "%c%c", s->window[match++],
16947c478bd9Sstevel@tonic-gate 			    s->window[start++]);
16957c478bd9Sstevel@tonic-gate 		} while (--length != 0);
16967c478bd9Sstevel@tonic-gate 		z_error("invalid match");
16977c478bd9Sstevel@tonic-gate 	}
16987c478bd9Sstevel@tonic-gate 	if (z_verbose > 1) {
16997c478bd9Sstevel@tonic-gate 		fprintf(stderr, "\\[%d,%d]", start-match, length);
17007c478bd9Sstevel@tonic-gate 		do { putc(s->window[start++], stderr); } while (--length != 0);
17017c478bd9Sstevel@tonic-gate 	}
17027c478bd9Sstevel@tonic-gate }
17037c478bd9Sstevel@tonic-gate #else
17047c478bd9Sstevel@tonic-gate #define	check_match(s, start, match, length)
17057c478bd9Sstevel@tonic-gate #endif
17067c478bd9Sstevel@tonic-gate 
17077c478bd9Sstevel@tonic-gate /*
17087c478bd9Sstevel@tonic-gate  * ===========================================================================
17097c478bd9Sstevel@tonic-gate  * Fill the window when the lookahead becomes insufficient.
17107c478bd9Sstevel@tonic-gate  * Updates strstart and lookahead.
17117c478bd9Sstevel@tonic-gate  *
17127c478bd9Sstevel@tonic-gate  * IN assertion: lookahead < MIN_LOOKAHEAD
17137c478bd9Sstevel@tonic-gate  * OUT assertions: strstart <= window_size-MIN_LOOKAHEAD
17147c478bd9Sstevel@tonic-gate  *    At least one byte has been read, or avail_in == 0; reads are
17157c478bd9Sstevel@tonic-gate  *    performed for at least two bytes (required for the zip translate_eol
17167c478bd9Sstevel@tonic-gate  *    option -- not supported here).
17177c478bd9Sstevel@tonic-gate  */
17187c478bd9Sstevel@tonic-gate local void
fill_window(s)17197c478bd9Sstevel@tonic-gate fill_window(s)
17207c478bd9Sstevel@tonic-gate     deflate_state *s;
17217c478bd9Sstevel@tonic-gate {
17227c478bd9Sstevel@tonic-gate 	register unsigned n, m;
17237c478bd9Sstevel@tonic-gate 	register Posf *p;
17247c478bd9Sstevel@tonic-gate 	unsigned more;	/* Amount of free space at the end of the window. */
17257c478bd9Sstevel@tonic-gate 	uInt wsize = s->w_size;
17267c478bd9Sstevel@tonic-gate 
17277c478bd9Sstevel@tonic-gate 	do {
17287c478bd9Sstevel@tonic-gate 		more = (unsigned)(s->window_size -(ulg)s->lookahead -
17297c478bd9Sstevel@tonic-gate 		    (ulg)s->strstart);
17307c478bd9Sstevel@tonic-gate 
17317c478bd9Sstevel@tonic-gate 		/* Deal with !@#$% 64K limit: */
17327c478bd9Sstevel@tonic-gate 		if (more == 0 && s->strstart == 0 && s->lookahead == 0) {
17337c478bd9Sstevel@tonic-gate 			more = wsize;
17347c478bd9Sstevel@tonic-gate 
17357c478bd9Sstevel@tonic-gate 		} else if (more == (unsigned)(-1)) {
17367c478bd9Sstevel@tonic-gate 			/*
17377c478bd9Sstevel@tonic-gate 			 * Very unlikely, but possible on 16 bit
17387c478bd9Sstevel@tonic-gate 			 * machine if strstart == 0 and lookahead == 1
17397c478bd9Sstevel@tonic-gate 			 * (input done one byte at time)
17407c478bd9Sstevel@tonic-gate 			 */
17417c478bd9Sstevel@tonic-gate 			more--;
17427c478bd9Sstevel@tonic-gate 
17437c478bd9Sstevel@tonic-gate 			/*
17447c478bd9Sstevel@tonic-gate 			 * If the window is almost full and there is
17457c478bd9Sstevel@tonic-gate 			 * insufficient lookahead, move the upper half
17467c478bd9Sstevel@tonic-gate 			 * to the lower one to make room in the upper
17477c478bd9Sstevel@tonic-gate 			 * half.
17487c478bd9Sstevel@tonic-gate 			 */
17497c478bd9Sstevel@tonic-gate 		} else if (s->strstart >= wsize+MAX_DIST(s)) {
17507c478bd9Sstevel@tonic-gate 
17517c478bd9Sstevel@tonic-gate 			Assert(wsize+wsize <= s->window_size, "wsize*2");
17527c478bd9Sstevel@tonic-gate 			zmemcpy(s->window, s->window+wsize, (unsigned)wsize);
17537c478bd9Sstevel@tonic-gate 			s->match_start -= wsize;
17547c478bd9Sstevel@tonic-gate 			/* we now have strstart >= MAX_DIST */
17557c478bd9Sstevel@tonic-gate 			s->strstart    -= wsize;
17567c478bd9Sstevel@tonic-gate 			s->block_start -= (long)wsize;
17577c478bd9Sstevel@tonic-gate 
17587c478bd9Sstevel@tonic-gate 			/*
17597c478bd9Sstevel@tonic-gate 			 * Slide the hash table (could be avoided with
17607c478bd9Sstevel@tonic-gate 			 * 32 bit values at the expense of memory
17617c478bd9Sstevel@tonic-gate 			 * usage). We slide even when level == 0 to
17627c478bd9Sstevel@tonic-gate 			 * keep the hash table consistent if we switch
17637c478bd9Sstevel@tonic-gate 			 * back to level > 0 later. (Using level 0
17647c478bd9Sstevel@tonic-gate 			 * permanently is not an optimal usage of
17657c478bd9Sstevel@tonic-gate 			 * zlib, so we don't care about this
17667c478bd9Sstevel@tonic-gate 			 * pathological case.)
17677c478bd9Sstevel@tonic-gate 			 */
17687c478bd9Sstevel@tonic-gate 			n = s->hash_size;
17697c478bd9Sstevel@tonic-gate 			p = &s->head[n];
17707c478bd9Sstevel@tonic-gate 			do {
17717c478bd9Sstevel@tonic-gate 				m = *--p;
17727c478bd9Sstevel@tonic-gate 				*p = (Pos)(m >= wsize ? m-wsize : NIL);
17737c478bd9Sstevel@tonic-gate 			} while (--n);
17747c478bd9Sstevel@tonic-gate 
17757c478bd9Sstevel@tonic-gate 			n = wsize;
17767c478bd9Sstevel@tonic-gate #ifndef FASTEST
17777c478bd9Sstevel@tonic-gate 			p = &s->prev[n];
17787c478bd9Sstevel@tonic-gate 			do {
17797c478bd9Sstevel@tonic-gate 				m = *--p;
17807c478bd9Sstevel@tonic-gate 				*p = (Pos)(m >= wsize ? m-wsize : NIL);
17817c478bd9Sstevel@tonic-gate 				/*
17827c478bd9Sstevel@tonic-gate 				 * If n is not on any hash chain,
17837c478bd9Sstevel@tonic-gate 				 * prev[n] is garbage but its value
17847c478bd9Sstevel@tonic-gate 				 * will never be used.
17857c478bd9Sstevel@tonic-gate 				 */
17867c478bd9Sstevel@tonic-gate 			} while (--n);
17877c478bd9Sstevel@tonic-gate #endif
17887c478bd9Sstevel@tonic-gate 			more += wsize;
17897c478bd9Sstevel@tonic-gate 		}
17907c478bd9Sstevel@tonic-gate 		if (s->strm->avail_in == 0)
17917c478bd9Sstevel@tonic-gate 			return;
17927c478bd9Sstevel@tonic-gate 
17937c478bd9Sstevel@tonic-gate 		/*
17947c478bd9Sstevel@tonic-gate 		 * If there was no sliding:
17957c478bd9Sstevel@tonic-gate 		 *    strstart <= WSIZE+MAX_DIST-1 &&
17967c478bd9Sstevel@tonic-gate 		 *	lookahead <= MIN_LOOKAHEAD - 1 &&
17977c478bd9Sstevel@tonic-gate 		 *    more == window_size - lookahead - strstart
17987c478bd9Sstevel@tonic-gate 		 * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE +
17997c478bd9Sstevel@tonic-gate 		 *	MAX_DIST-1)
18007c478bd9Sstevel@tonic-gate 		 * => more >= window_size - 2*WSIZE + 2
18017c478bd9Sstevel@tonic-gate 		 * In the BIG_MEM or MMAP case (not yet supported),
18027c478bd9Sstevel@tonic-gate 		 *   window_size == input_size + MIN_LOOKAHEAD  &&
18037c478bd9Sstevel@tonic-gate 		 *   strstart + s->lookahead <= input_size =>
18047c478bd9Sstevel@tonic-gate 		 *	more >= MIN_LOOKAHEAD.
18057c478bd9Sstevel@tonic-gate 		 * Otherwise, window_size == 2*WSIZE so more >= 2.
18067c478bd9Sstevel@tonic-gate 		 * If there was sliding, more >= WSIZE. So in all cases,
18077c478bd9Sstevel@tonic-gate 		 * more >= 2.
18087c478bd9Sstevel@tonic-gate 		 */
18097c478bd9Sstevel@tonic-gate 		Assert(more >= 2, "more < 2");
18107c478bd9Sstevel@tonic-gate 		Assert(s->strstart + s->lookahead + more <= s->window_size,
18117c478bd9Sstevel@tonic-gate 		    "read too much");
18127c478bd9Sstevel@tonic-gate 
18137c478bd9Sstevel@tonic-gate 		n = read_buf(s->strm, s->window + s->strstart + s->lookahead,
18147c478bd9Sstevel@tonic-gate 		    more);
18157c478bd9Sstevel@tonic-gate 		s->lookahead += n;
18167c478bd9Sstevel@tonic-gate 
18177c478bd9Sstevel@tonic-gate 		/* Initialize the hash value now that we have some input: */
18187c478bd9Sstevel@tonic-gate 		if (s->lookahead >= MIN_MATCH) {
18197c478bd9Sstevel@tonic-gate 			s->ins_h = s->window[s->strstart];
18207c478bd9Sstevel@tonic-gate 			UPDATE_HASH(s, s->ins_h, s->window[s->strstart+1]);
18217c478bd9Sstevel@tonic-gate #if MIN_MATCH != 3
18227c478bd9Sstevel@tonic-gate 			Call UPDATE_HASH() MIN_MATCH-3 more times
18237c478bd9Sstevel@tonic-gate #endif
18247c478bd9Sstevel@tonic-gate 			    }
18257c478bd9Sstevel@tonic-gate 		/*
18267c478bd9Sstevel@tonic-gate 		 * If the whole input has less than MIN_MATCH bytes,
18277c478bd9Sstevel@tonic-gate 		 * ins_h is garbage, but this is not important since
18287c478bd9Sstevel@tonic-gate 		 * only literal bytes will be emitted.
18297c478bd9Sstevel@tonic-gate 		 */
18307c478bd9Sstevel@tonic-gate 
18317c478bd9Sstevel@tonic-gate 	} while (s->lookahead < MIN_LOOKAHEAD && s->strm->avail_in != 0);
18327c478bd9Sstevel@tonic-gate }
18337c478bd9Sstevel@tonic-gate 
18347c478bd9Sstevel@tonic-gate /*
18357c478bd9Sstevel@tonic-gate  * ===========================================================================
18367c478bd9Sstevel@tonic-gate  * Flush the current block, with given end-of-file flag.
18377c478bd9Sstevel@tonic-gate  * IN assertion: strstart is set to the end of the current match.
18387c478bd9Sstevel@tonic-gate  */
18397c478bd9Sstevel@tonic-gate #define	FLUSH_BLOCK_ONLY(s, eof) { \
18407c478bd9Sstevel@tonic-gate 	_tr_flush_block(s, (s->block_start >= 0L ? \
18417c478bd9Sstevel@tonic-gate 		(charf *)&s->window[(unsigned)s->block_start] : \
18427c478bd9Sstevel@tonic-gate 		(charf *)Z_NULL), \
18437c478bd9Sstevel@tonic-gate 		(ulg)((long)s->strstart - s->block_start), \
18447c478bd9Sstevel@tonic-gate 		(eof)); \
18457c478bd9Sstevel@tonic-gate 	s->block_start = s->strstart; \
18467c478bd9Sstevel@tonic-gate 	flush_pending(s->strm); \
18477c478bd9Sstevel@tonic-gate 	Tracev((stderr, "[FLUSH]")); \
18487c478bd9Sstevel@tonic-gate }
18497c478bd9Sstevel@tonic-gate 
18507c478bd9Sstevel@tonic-gate /* Same but force premature exit if necessary. */
18517c478bd9Sstevel@tonic-gate #define	FLUSH_BLOCK(s, eof) { \
18527c478bd9Sstevel@tonic-gate 	FLUSH_BLOCK_ONLY(s, eof); \
18537c478bd9Sstevel@tonic-gate 	if (s->strm->avail_out == 0) \
18547c478bd9Sstevel@tonic-gate 		return ((eof) ? finish_started : need_more); \
18557c478bd9Sstevel@tonic-gate }
18567c478bd9Sstevel@tonic-gate 
18577c478bd9Sstevel@tonic-gate /*
18587c478bd9Sstevel@tonic-gate  * ===========================================================================
18597c478bd9Sstevel@tonic-gate  * Copy without compression as much as possible from the input stream, return
18607c478bd9Sstevel@tonic-gate  * the current block state.
18617c478bd9Sstevel@tonic-gate  * This function does not insert new strings in the dictionary since
18627c478bd9Sstevel@tonic-gate  * uncompressible data is probably not useful. This function is used
18637c478bd9Sstevel@tonic-gate  * only for the level=0 compression option.
18647c478bd9Sstevel@tonic-gate  * NOTE: this function should be optimized to avoid extra copying from
18657c478bd9Sstevel@tonic-gate  * window to pending_buf.
18667c478bd9Sstevel@tonic-gate  */
18677c478bd9Sstevel@tonic-gate local block_state
deflate_stored(s,flush)18687c478bd9Sstevel@tonic-gate deflate_stored(s, flush)
18697c478bd9Sstevel@tonic-gate     deflate_state *s;
18707c478bd9Sstevel@tonic-gate     int flush;
18717c478bd9Sstevel@tonic-gate {
18727c478bd9Sstevel@tonic-gate 	/*
18737c478bd9Sstevel@tonic-gate 	 * Stored blocks are limited to 0xffff bytes, pending_buf is
18747c478bd9Sstevel@tonic-gate 	 * limited to pending_buf_size, and each stored block has a 5
18757c478bd9Sstevel@tonic-gate 	 * byte header:
18767c478bd9Sstevel@tonic-gate 	 */
18777c478bd9Sstevel@tonic-gate 	ulg max_block_size = 0xffff;
18787c478bd9Sstevel@tonic-gate 	ulg max_start;
18797c478bd9Sstevel@tonic-gate 
18807c478bd9Sstevel@tonic-gate 	if (max_block_size > s->pending_buf_size - 5) {
18817c478bd9Sstevel@tonic-gate 		max_block_size = s->pending_buf_size - 5;
18827c478bd9Sstevel@tonic-gate 	}
18837c478bd9Sstevel@tonic-gate 
18847c478bd9Sstevel@tonic-gate 	/* Copy as much as possible from input to output: */
18857c478bd9Sstevel@tonic-gate 	for (;;) {
18867c478bd9Sstevel@tonic-gate 		/* Fill the window as much as possible: */
18877c478bd9Sstevel@tonic-gate 		if (s->lookahead <= 1) {
18887c478bd9Sstevel@tonic-gate 
18897c478bd9Sstevel@tonic-gate 			Assert(s->strstart < s->w_size+MAX_DIST(s) ||
18907c478bd9Sstevel@tonic-gate 			    s->block_start >= (long)s->w_size,
18917c478bd9Sstevel@tonic-gate 			    "slide too late");
18927c478bd9Sstevel@tonic-gate 
18937c478bd9Sstevel@tonic-gate 			fill_window(s);
18947c478bd9Sstevel@tonic-gate 			if (s->lookahead == 0 && flush == Z_NO_FLUSH)
18957c478bd9Sstevel@tonic-gate 				return (need_more);
18967c478bd9Sstevel@tonic-gate 
18977c478bd9Sstevel@tonic-gate 			if (s->lookahead == 0)
18987c478bd9Sstevel@tonic-gate 				break;	/* flush the current block */
18997c478bd9Sstevel@tonic-gate 		}
19007c478bd9Sstevel@tonic-gate 		Assert(s->block_start >= 0L, "block gone");
19017c478bd9Sstevel@tonic-gate 
19027c478bd9Sstevel@tonic-gate 		s->strstart += s->lookahead;
19037c478bd9Sstevel@tonic-gate 		s->lookahead = 0;
19047c478bd9Sstevel@tonic-gate 
19057c478bd9Sstevel@tonic-gate 		/* Emit a stored block if pending_buf will be full: */
19067c478bd9Sstevel@tonic-gate 		max_start = s->block_start + max_block_size;
19077c478bd9Sstevel@tonic-gate 		if (s->strstart == 0 || (ulg)s->strstart >= max_start) {
19087c478bd9Sstevel@tonic-gate 			/*
19097c478bd9Sstevel@tonic-gate 			 * strstart == 0 is possible when wraparound
19107c478bd9Sstevel@tonic-gate 			 * on 16-bit machine
19117c478bd9Sstevel@tonic-gate 			 */
19127c478bd9Sstevel@tonic-gate 			s->lookahead = (uInt)(s->strstart - max_start);
19137c478bd9Sstevel@tonic-gate 			s->strstart = (uInt)max_start;
19147c478bd9Sstevel@tonic-gate 			FLUSH_BLOCK(s, 0);
19157c478bd9Sstevel@tonic-gate 		}
19167c478bd9Sstevel@tonic-gate 		/*
19177c478bd9Sstevel@tonic-gate 		 * Flush if we may have to slide, otherwise
19187c478bd9Sstevel@tonic-gate 		 * block_start may become negative and the data will
19197c478bd9Sstevel@tonic-gate 		 * be gone:
19207c478bd9Sstevel@tonic-gate 		 */
19217c478bd9Sstevel@tonic-gate 		if (s->strstart - (uInt)s->block_start >= MAX_DIST(s)) {
19227c478bd9Sstevel@tonic-gate 			FLUSH_BLOCK(s, 0);
19237c478bd9Sstevel@tonic-gate 		}
19247c478bd9Sstevel@tonic-gate 	}
19257c478bd9Sstevel@tonic-gate 	FLUSH_BLOCK(s, flush == Z_FINISH);
19267c478bd9Sstevel@tonic-gate 	return (flush == Z_FINISH ? finish_done : block_done);
19277c478bd9Sstevel@tonic-gate }
19287c478bd9Sstevel@tonic-gate 
19297c478bd9Sstevel@tonic-gate /*
19307c478bd9Sstevel@tonic-gate  * ===========================================================================
19317c478bd9Sstevel@tonic-gate  * Compress as much as possible from the input stream, return the current
19327c478bd9Sstevel@tonic-gate  * block state.
19337c478bd9Sstevel@tonic-gate  * This function does not perform lazy evaluation of matches and inserts
19347c478bd9Sstevel@tonic-gate  * new strings in the dictionary only for unmatched strings or for short
19357c478bd9Sstevel@tonic-gate  * matches. It is used only for the fast compression options.
19367c478bd9Sstevel@tonic-gate  */
19377c478bd9Sstevel@tonic-gate local block_state
deflate_fast(s,flush)19387c478bd9Sstevel@tonic-gate deflate_fast(s, flush)
19397c478bd9Sstevel@tonic-gate     deflate_state *s;
19407c478bd9Sstevel@tonic-gate     int flush;
19417c478bd9Sstevel@tonic-gate {
19427c478bd9Sstevel@tonic-gate 	IPos hash_head = NIL;	/* head of the hash chain */
19437c478bd9Sstevel@tonic-gate 	int bflush;	/* set if current block must be flushed */
19447c478bd9Sstevel@tonic-gate 
19457c478bd9Sstevel@tonic-gate 	for (;;) {
19467c478bd9Sstevel@tonic-gate 		/*
19477c478bd9Sstevel@tonic-gate 		 * Make sure that we always have enough lookahead,
19487c478bd9Sstevel@tonic-gate 		 * except at the end of the input file. We need
19497c478bd9Sstevel@tonic-gate 		 * MAX_MATCH bytes for the next match, plus MIN_MATCH
19507c478bd9Sstevel@tonic-gate 		 * bytes to insert the string following the next
19517c478bd9Sstevel@tonic-gate 		 * match.
19527c478bd9Sstevel@tonic-gate 		 */
19537c478bd9Sstevel@tonic-gate 		if (s->lookahead < MIN_LOOKAHEAD) {
19547c478bd9Sstevel@tonic-gate 			fill_window(s);
19557c478bd9Sstevel@tonic-gate 			if (s->lookahead < MIN_LOOKAHEAD &&
19567c478bd9Sstevel@tonic-gate 			    flush == Z_NO_FLUSH) {
19577c478bd9Sstevel@tonic-gate 				return (need_more);
19587c478bd9Sstevel@tonic-gate 			}
19597c478bd9Sstevel@tonic-gate 			if (s->lookahead == 0)
19607c478bd9Sstevel@tonic-gate 				break;	/* flush the current block */
19617c478bd9Sstevel@tonic-gate 		}
19627c478bd9Sstevel@tonic-gate 
19637c478bd9Sstevel@tonic-gate 		/*
19647c478bd9Sstevel@tonic-gate 		 * Insert the string window[strstart .. strstart+2] in
19657c478bd9Sstevel@tonic-gate 		 * the dictionary, and set hash_head to the head of
19667c478bd9Sstevel@tonic-gate 		 * the hash chain:
19677c478bd9Sstevel@tonic-gate 		 */
19687c478bd9Sstevel@tonic-gate 		if (s->lookahead >= MIN_MATCH) {
19697c478bd9Sstevel@tonic-gate 			INSERT_STRING(s, s->strstart, hash_head);
19707c478bd9Sstevel@tonic-gate 		}
19717c478bd9Sstevel@tonic-gate 
19727c478bd9Sstevel@tonic-gate 		/*
19737c478bd9Sstevel@tonic-gate 		 * Find the longest match, discarding those <=
19747c478bd9Sstevel@tonic-gate 		 * prev_length.  At this point we have always
19757c478bd9Sstevel@tonic-gate 		 * match_length < MIN_MATCH
19767c478bd9Sstevel@tonic-gate 		 */
19777c478bd9Sstevel@tonic-gate 		if (hash_head != NIL && s->strstart - hash_head <=
19787c478bd9Sstevel@tonic-gate 		    MAX_DIST(s)) {
19797c478bd9Sstevel@tonic-gate 			/*
19807c478bd9Sstevel@tonic-gate 			 * To simplify the code, we prevent matches
19817c478bd9Sstevel@tonic-gate 			 * with the string of window index 0 (in
19827c478bd9Sstevel@tonic-gate 			 * particular we have to avoid a match of the
19837c478bd9Sstevel@tonic-gate 			 * string with itself at the start of the
19847c478bd9Sstevel@tonic-gate 			 * input file).
19857c478bd9Sstevel@tonic-gate 			 */
19867c478bd9Sstevel@tonic-gate 			if (s->strategy != Z_HUFFMAN_ONLY) {
19877c478bd9Sstevel@tonic-gate 				s->match_length = longest_match(s, hash_head);
19887c478bd9Sstevel@tonic-gate 			}
19897c478bd9Sstevel@tonic-gate 			/* longest_match() sets match_start */
19907c478bd9Sstevel@tonic-gate 		}
19917c478bd9Sstevel@tonic-gate 		if (s->match_length >= MIN_MATCH) {
19927c478bd9Sstevel@tonic-gate 			check_match(s, s->strstart, s->match_start,
19937c478bd9Sstevel@tonic-gate 			    s->match_length);
19947c478bd9Sstevel@tonic-gate 
19957c478bd9Sstevel@tonic-gate 			_tr_tally_dist(s, s->strstart - s->match_start,
19967c478bd9Sstevel@tonic-gate 			    s->match_length - MIN_MATCH, bflush);
19977c478bd9Sstevel@tonic-gate 
19987c478bd9Sstevel@tonic-gate 			s->lookahead -= s->match_length;
19997c478bd9Sstevel@tonic-gate 
20007c478bd9Sstevel@tonic-gate 			/*
20017c478bd9Sstevel@tonic-gate 			 * Insert new strings in the hash table only
20027c478bd9Sstevel@tonic-gate 			 * if the match length is not too large. This
20037c478bd9Sstevel@tonic-gate 			 * saves time but degrades compression.
20047c478bd9Sstevel@tonic-gate 			 */
20057c478bd9Sstevel@tonic-gate #ifndef FASTEST
20067c478bd9Sstevel@tonic-gate 			if (s->match_length <= s->max_insert_length &&
20077c478bd9Sstevel@tonic-gate 			    s->lookahead >= MIN_MATCH) {
20087c478bd9Sstevel@tonic-gate 				/* string at strstart already in hash table */
20097c478bd9Sstevel@tonic-gate 				s->match_length--;
20107c478bd9Sstevel@tonic-gate 				do {
20117c478bd9Sstevel@tonic-gate 					s->strstart++;
20127c478bd9Sstevel@tonic-gate 					INSERT_STRING(s, s->strstart,
20137c478bd9Sstevel@tonic-gate 					    hash_head);
20147c478bd9Sstevel@tonic-gate 					/*
20157c478bd9Sstevel@tonic-gate 					 * strstart never exceeds
20167c478bd9Sstevel@tonic-gate 					 * WSIZE-MAX_MATCH, so there
20177c478bd9Sstevel@tonic-gate 					 * are always MIN_MATCH bytes
20187c478bd9Sstevel@tonic-gate 					 * ahead.
20197c478bd9Sstevel@tonic-gate 					 */
20207c478bd9Sstevel@tonic-gate 				} while (--s->match_length != 0);
20217c478bd9Sstevel@tonic-gate 				s->strstart++;
20227c478bd9Sstevel@tonic-gate 			} else
20237c478bd9Sstevel@tonic-gate #endif
20247c478bd9Sstevel@tonic-gate 			{
20257c478bd9Sstevel@tonic-gate 				s->strstart += s->match_length;
20267c478bd9Sstevel@tonic-gate 				s->match_length = 0;
20277c478bd9Sstevel@tonic-gate 				s->ins_h = s->window[s->strstart];
20287c478bd9Sstevel@tonic-gate 				UPDATE_HASH(s, s->ins_h,
20297c478bd9Sstevel@tonic-gate 				    s->window[s->strstart+1]);
20307c478bd9Sstevel@tonic-gate #if MIN_MATCH != 3
20317c478bd9Sstevel@tonic-gate 				Call UPDATE_HASH() MIN_MATCH-3 more times
20327c478bd9Sstevel@tonic-gate #endif
20337c478bd9Sstevel@tonic-gate 				/*
20347c478bd9Sstevel@tonic-gate 				 * If lookahead < MIN_MATCH, ins_h is
20357c478bd9Sstevel@tonic-gate 				 * garbage, but it does not matter
20367c478bd9Sstevel@tonic-gate 				 * since it will be recomputed at next
20377c478bd9Sstevel@tonic-gate 				 * deflate call.
20387c478bd9Sstevel@tonic-gate 				 */
20397c478bd9Sstevel@tonic-gate 			}
20407c478bd9Sstevel@tonic-gate 		} else {
20417c478bd9Sstevel@tonic-gate 			/* No match, output a literal byte */
20427c478bd9Sstevel@tonic-gate 			Tracevv((stderr, "%c", s->window[s->strstart]));
20437c478bd9Sstevel@tonic-gate 			_tr_tally_lit(s, s->window[s->strstart], bflush);
20447c478bd9Sstevel@tonic-gate 			s->lookahead--;
20457c478bd9Sstevel@tonic-gate 			s->strstart++;
20467c478bd9Sstevel@tonic-gate 		}
20477c478bd9Sstevel@tonic-gate 		if (bflush) FLUSH_BLOCK(s, 0);
20487c478bd9Sstevel@tonic-gate 	}
20497c478bd9Sstevel@tonic-gate 	FLUSH_BLOCK(s, flush == Z_FINISH);
20507c478bd9Sstevel@tonic-gate 	return (flush == Z_FINISH ? finish_done : block_done);
20517c478bd9Sstevel@tonic-gate }
20527c478bd9Sstevel@tonic-gate 
20537c478bd9Sstevel@tonic-gate /*
20547c478bd9Sstevel@tonic-gate  * ===========================================================================
20557c478bd9Sstevel@tonic-gate  * Same as above, but achieves better compression. We use a lazy
20567c478bd9Sstevel@tonic-gate  * evaluation for matches: a match is finally adopted only if there is
20577c478bd9Sstevel@tonic-gate  * no better match at the next window position.
20587c478bd9Sstevel@tonic-gate  */
20597c478bd9Sstevel@tonic-gate local block_state
deflate_slow(s,flush)20607c478bd9Sstevel@tonic-gate deflate_slow(s, flush)
20617c478bd9Sstevel@tonic-gate     deflate_state *s;
20627c478bd9Sstevel@tonic-gate     int flush;
20637c478bd9Sstevel@tonic-gate {
20647c478bd9Sstevel@tonic-gate 	IPos hash_head = NIL;	/* head of hash chain */
20657c478bd9Sstevel@tonic-gate 	int bflush;	/* set if current block must be flushed */
20667c478bd9Sstevel@tonic-gate 
20677c478bd9Sstevel@tonic-gate 	/* Process the input block. */
20687c478bd9Sstevel@tonic-gate 	for (;;) {
20697c478bd9Sstevel@tonic-gate 		/*
20707c478bd9Sstevel@tonic-gate 		 * Make sure that we always have enough lookahead,
20717c478bd9Sstevel@tonic-gate 		 * except at the end of the input file. We need
20727c478bd9Sstevel@tonic-gate 		 * MAX_MATCH bytes for the next match, plus MIN_MATCH
20737c478bd9Sstevel@tonic-gate 		 * bytes to insert the string following the next
20747c478bd9Sstevel@tonic-gate 		 * match.
20757c478bd9Sstevel@tonic-gate 		 */
20767c478bd9Sstevel@tonic-gate 		if (s->lookahead < MIN_LOOKAHEAD) {
20777c478bd9Sstevel@tonic-gate 			fill_window(s);
20787c478bd9Sstevel@tonic-gate 			if (s->lookahead < MIN_LOOKAHEAD &&
20797c478bd9Sstevel@tonic-gate 			    flush == Z_NO_FLUSH) {
20807c478bd9Sstevel@tonic-gate 				return (need_more);
20817c478bd9Sstevel@tonic-gate 			}
20827c478bd9Sstevel@tonic-gate 			/* flush the current block */
20837c478bd9Sstevel@tonic-gate 			if (s->lookahead == 0)
20847c478bd9Sstevel@tonic-gate 				break;
20857c478bd9Sstevel@tonic-gate 		}
20867c478bd9Sstevel@tonic-gate 
20877c478bd9Sstevel@tonic-gate 		/*
20887c478bd9Sstevel@tonic-gate 		 * Insert the string window[strstart .. strstart+2] in
20897c478bd9Sstevel@tonic-gate 		 * the dictionary, and set hash_head to the head of
20907c478bd9Sstevel@tonic-gate 		 * the hash chain:
20917c478bd9Sstevel@tonic-gate 		 */
20927c478bd9Sstevel@tonic-gate 		if (s->lookahead >= MIN_MATCH) {
20937c478bd9Sstevel@tonic-gate 			INSERT_STRING(s, s->strstart, hash_head);
20947c478bd9Sstevel@tonic-gate 		}
20957c478bd9Sstevel@tonic-gate 
20967c478bd9Sstevel@tonic-gate 		/*
20977c478bd9Sstevel@tonic-gate 		 * Find the longest match, discarding those <=
20987c478bd9Sstevel@tonic-gate 		 * prev_length.
20997c478bd9Sstevel@tonic-gate 		 */
21007c478bd9Sstevel@tonic-gate 		s->prev_length = s->match_length;
21017c478bd9Sstevel@tonic-gate 		s->prev_match = s->match_start;
21027c478bd9Sstevel@tonic-gate 		s->match_length = MIN_MATCH-1;
21037c478bd9Sstevel@tonic-gate 
21047c478bd9Sstevel@tonic-gate 		if (hash_head != NIL && s->prev_length < s->max_lazy_match &&
21057c478bd9Sstevel@tonic-gate 		    s->strstart - hash_head <= MAX_DIST(s)) {
21067c478bd9Sstevel@tonic-gate 			/*
21077c478bd9Sstevel@tonic-gate 			 * To simplify the code, we prevent matches
21087c478bd9Sstevel@tonic-gate 			 * with the string of window index 0 (in
21097c478bd9Sstevel@tonic-gate 			 * particular we have to avoid a match of the
21107c478bd9Sstevel@tonic-gate 			 * string with itself at the start of the
21117c478bd9Sstevel@tonic-gate 			 * input file).
21127c478bd9Sstevel@tonic-gate 			 */
21137c478bd9Sstevel@tonic-gate 			if (s->strategy != Z_HUFFMAN_ONLY) {
21147c478bd9Sstevel@tonic-gate 				s->match_length = longest_match(s, hash_head);
21157c478bd9Sstevel@tonic-gate 			}
21167c478bd9Sstevel@tonic-gate 			/* longest_match() sets match_start */
21177c478bd9Sstevel@tonic-gate 
21187c478bd9Sstevel@tonic-gate 			if (s->match_length <= 5 &&
21197c478bd9Sstevel@tonic-gate 			    (s->strategy == Z_FILTERED ||
21207c478bd9Sstevel@tonic-gate 				(s->match_length == MIN_MATCH &&
21217c478bd9Sstevel@tonic-gate 				    s->strstart - s->match_start > TOO_FAR))) {
21227c478bd9Sstevel@tonic-gate 
21237c478bd9Sstevel@tonic-gate 				/*
21247c478bd9Sstevel@tonic-gate 				 * If prev_match is also MIN_MATCH,
21257c478bd9Sstevel@tonic-gate 				 * match_start is garbage but we will
21267c478bd9Sstevel@tonic-gate 				 * ignore the current match anyway.
21277c478bd9Sstevel@tonic-gate 				 */
21287c478bd9Sstevel@tonic-gate 				s->match_length = MIN_MATCH-1;
21297c478bd9Sstevel@tonic-gate 			}
21307c478bd9Sstevel@tonic-gate 		}
21317c478bd9Sstevel@tonic-gate 		/*
21327c478bd9Sstevel@tonic-gate 		 * If there was a match at the previous step and the
21337c478bd9Sstevel@tonic-gate 		 * current match is not better, output the previous
21347c478bd9Sstevel@tonic-gate 		 * match:
21357c478bd9Sstevel@tonic-gate 		 */
21367c478bd9Sstevel@tonic-gate 		if (s->prev_length >= MIN_MATCH &&
21377c478bd9Sstevel@tonic-gate 		    s->match_length <= s->prev_length) {
21387c478bd9Sstevel@tonic-gate 			uInt max_insert = s->strstart + s->lookahead -
21397c478bd9Sstevel@tonic-gate 			    MIN_MATCH;
21407c478bd9Sstevel@tonic-gate 			/* Do not insert strings in hash table beyond this. */
21417c478bd9Sstevel@tonic-gate 
21427c478bd9Sstevel@tonic-gate 			check_match(s, s->strstart-1, s->prev_match,
21437c478bd9Sstevel@tonic-gate 			    s->prev_length);
21447c478bd9Sstevel@tonic-gate 
21457c478bd9Sstevel@tonic-gate 			_tr_tally_dist(s, s->strstart -1 - s->prev_match,
21467c478bd9Sstevel@tonic-gate 			    s->prev_length - MIN_MATCH, bflush);
21477c478bd9Sstevel@tonic-gate 
21487c478bd9Sstevel@tonic-gate 			/*
21497c478bd9Sstevel@tonic-gate 			 * Insert in hash table all strings up to the
21507c478bd9Sstevel@tonic-gate 			 * end of the match.  strstart-1 and strstart
21517c478bd9Sstevel@tonic-gate 			 * are already inserted. If there is not
21527c478bd9Sstevel@tonic-gate 			 * enough lookahead, the last two strings are
21537c478bd9Sstevel@tonic-gate 			 * not inserted in the hash table.
21547c478bd9Sstevel@tonic-gate 			 */
21557c478bd9Sstevel@tonic-gate 			s->lookahead -= s->prev_length-1;
21567c478bd9Sstevel@tonic-gate 			s->prev_length -= 2;
21577c478bd9Sstevel@tonic-gate 			do {
21587c478bd9Sstevel@tonic-gate 				if (++s->strstart <= max_insert) {
21597c478bd9Sstevel@tonic-gate 					INSERT_STRING(s, s->strstart,
21607c478bd9Sstevel@tonic-gate 					    hash_head);
21617c478bd9Sstevel@tonic-gate 				}
21627c478bd9Sstevel@tonic-gate 			} while (--s->prev_length != 0);
21637c478bd9Sstevel@tonic-gate 			s->match_available = 0;
21647c478bd9Sstevel@tonic-gate 			s->match_length = MIN_MATCH-1;
21657c478bd9Sstevel@tonic-gate 			s->strstart++;
21667c478bd9Sstevel@tonic-gate 
21677c478bd9Sstevel@tonic-gate 			if (bflush) FLUSH_BLOCK(s, 0);
21687c478bd9Sstevel@tonic-gate 
21697c478bd9Sstevel@tonic-gate 		} else if (s->match_available) {
21707c478bd9Sstevel@tonic-gate 			/*
21717c478bd9Sstevel@tonic-gate 			 * If there was no match at the previous
21727c478bd9Sstevel@tonic-gate 			 * position, output a single literal. If there
21737c478bd9Sstevel@tonic-gate 			 * was a match but the current match is
21747c478bd9Sstevel@tonic-gate 			 * longer, truncate the previous match to a
21757c478bd9Sstevel@tonic-gate 			 * single literal.
21767c478bd9Sstevel@tonic-gate 			 */
21777c478bd9Sstevel@tonic-gate 			Tracevv((stderr, "%c", s->window[s->strstart-1]));
21787c478bd9Sstevel@tonic-gate 			_tr_tally_lit(s, s->window[s->strstart-1], bflush);
21797c478bd9Sstevel@tonic-gate 			if (bflush) {
21807c478bd9Sstevel@tonic-gate 				FLUSH_BLOCK_ONLY(s, 0);
21817c478bd9Sstevel@tonic-gate 			}
21827c478bd9Sstevel@tonic-gate 			s->strstart++;
21837c478bd9Sstevel@tonic-gate 			s->lookahead--;
21847c478bd9Sstevel@tonic-gate 			if (s->strm->avail_out == 0)
21857c478bd9Sstevel@tonic-gate 				return (need_more);
21867c478bd9Sstevel@tonic-gate 		} else {
21877c478bd9Sstevel@tonic-gate 			/*
21887c478bd9Sstevel@tonic-gate 			 * There is no previous match to compare with,
21897c478bd9Sstevel@tonic-gate 			 * wait for the next step to decide.
21907c478bd9Sstevel@tonic-gate 			 */
21917c478bd9Sstevel@tonic-gate 			s->match_available = 1;
21927c478bd9Sstevel@tonic-gate 			s->strstart++;
21937c478bd9Sstevel@tonic-gate 			s->lookahead--;
21947c478bd9Sstevel@tonic-gate 		}
21957c478bd9Sstevel@tonic-gate 	}
21967c478bd9Sstevel@tonic-gate 	Assert(flush != Z_NO_FLUSH, "no flush?");
21977c478bd9Sstevel@tonic-gate 	if (s->match_available) {
21987c478bd9Sstevel@tonic-gate 		Tracevv((stderr, "%c", s->window[s->strstart-1]));
21997c478bd9Sstevel@tonic-gate 		_tr_tally_lit(s, s->window[s->strstart-1], bflush);
22007c478bd9Sstevel@tonic-gate 		s->match_available = 0;
22017c478bd9Sstevel@tonic-gate 	}
22027c478bd9Sstevel@tonic-gate 	FLUSH_BLOCK(s, flush == Z_FINISH);
22037c478bd9Sstevel@tonic-gate 	return (flush == Z_FINISH ? finish_done : block_done);
22047c478bd9Sstevel@tonic-gate }
22057c478bd9Sstevel@tonic-gate /* --- deflate.c */
22067c478bd9Sstevel@tonic-gate 
22077c478bd9Sstevel@tonic-gate /* +++ trees.c */
22087c478bd9Sstevel@tonic-gate /*
22097c478bd9Sstevel@tonic-gate  * trees.c -- output deflated data using Huffman coding
22107c478bd9Sstevel@tonic-gate  * Copyright (C) 1995-1998 Jean-loup Gailly
22117c478bd9Sstevel@tonic-gate  * For conditions of distribution and use, see copyright notice in zlib.h
22127c478bd9Sstevel@tonic-gate  */
22137c478bd9Sstevel@tonic-gate 
22147c478bd9Sstevel@tonic-gate /*
22157c478bd9Sstevel@tonic-gate  *  ALGORITHM
22167c478bd9Sstevel@tonic-gate  *
22177c478bd9Sstevel@tonic-gate  *      The "deflation" process uses several Huffman trees. The more
22187c478bd9Sstevel@tonic-gate  *      common source values are represented by shorter bit sequences.
22197c478bd9Sstevel@tonic-gate  *
22207c478bd9Sstevel@tonic-gate  *      Each code tree is stored in a compressed form which is itself
22217c478bd9Sstevel@tonic-gate  * a Huffman encoding of the lengths of all the code strings (in
22227c478bd9Sstevel@tonic-gate  * ascending order by source values).  The actual code strings are
22237c478bd9Sstevel@tonic-gate  * reconstructed from the lengths in the inflate process, as described
22247c478bd9Sstevel@tonic-gate  * in the deflate specification.
22257c478bd9Sstevel@tonic-gate  *
22267c478bd9Sstevel@tonic-gate  *  REFERENCES
22277c478bd9Sstevel@tonic-gate  *
22287c478bd9Sstevel@tonic-gate  *      Deutsch, L.P.,"'Deflate' Compressed Data Format Specification".
22297c478bd9Sstevel@tonic-gate  *      Available in ftp.uu.net:/pub/archiving/zip/doc/deflate-1.1.doc
22307c478bd9Sstevel@tonic-gate  *
22317c478bd9Sstevel@tonic-gate  *      Storer, James A.
22327c478bd9Sstevel@tonic-gate  *          Data Compression:  Methods and Theory, pp. 49-50.
22337c478bd9Sstevel@tonic-gate  *          Computer Science Press, 1988.  ISBN 0-7167-8156-5.
22347c478bd9Sstevel@tonic-gate  *
22357c478bd9Sstevel@tonic-gate  *      Sedgewick, R.
22367c478bd9Sstevel@tonic-gate  *          Algorithms, p290.
22377c478bd9Sstevel@tonic-gate  *          Addison-Wesley, 1983. ISBN 0-201-06672-6.
22387c478bd9Sstevel@tonic-gate  */
22397c478bd9Sstevel@tonic-gate 
22407c478bd9Sstevel@tonic-gate /* From: trees.c,v 1.11 1996/07/24 13:41:06 me Exp $ */
22417c478bd9Sstevel@tonic-gate 
22427c478bd9Sstevel@tonic-gate /* #include "deflate.h" */
22437c478bd9Sstevel@tonic-gate 
22447c478bd9Sstevel@tonic-gate #ifdef DEBUG_ZLIB
22457c478bd9Sstevel@tonic-gate #include <ctype.h>
22467c478bd9Sstevel@tonic-gate #endif
22477c478bd9Sstevel@tonic-gate 
22487c478bd9Sstevel@tonic-gate /*
22497c478bd9Sstevel@tonic-gate  * ===========================================================================
22507c478bd9Sstevel@tonic-gate  * Constants
22517c478bd9Sstevel@tonic-gate  */
22527c478bd9Sstevel@tonic-gate 
22537c478bd9Sstevel@tonic-gate #define	MAX_BL_BITS 7
22547c478bd9Sstevel@tonic-gate /* Bit length codes must not exceed MAX_BL_BITS bits */
22557c478bd9Sstevel@tonic-gate 
22567c478bd9Sstevel@tonic-gate #define	END_BLOCK 256
22577c478bd9Sstevel@tonic-gate /* end of block literal code */
22587c478bd9Sstevel@tonic-gate 
22597c478bd9Sstevel@tonic-gate #define	REP_3_6		16
22607c478bd9Sstevel@tonic-gate /* repeat previous bit length 3-6 times (2 bits of repeat count) */
22617c478bd9Sstevel@tonic-gate 
22627c478bd9Sstevel@tonic-gate #define	REPZ_3_10	17
22637c478bd9Sstevel@tonic-gate /* repeat a zero length 3-10 times  (3 bits of repeat count) */
22647c478bd9Sstevel@tonic-gate 
22657c478bd9Sstevel@tonic-gate #define	REPZ_11_138	18
22667c478bd9Sstevel@tonic-gate /* repeat a zero length 11-138 times  (7 bits of repeat count) */
22677c478bd9Sstevel@tonic-gate 
22687c478bd9Sstevel@tonic-gate /* extra bits for each length code */
22697c478bd9Sstevel@tonic-gate local const int extra_lbits[LENGTH_CODES] = {
22707c478bd9Sstevel@tonic-gate 	0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4,
22717c478bd9Sstevel@tonic-gate 	4, 4, 4, 5, 5, 5, 5, 0};
22727c478bd9Sstevel@tonic-gate 
22737c478bd9Sstevel@tonic-gate /* extra bits for each distance code */
22747c478bd9Sstevel@tonic-gate local const int extra_dbits[D_CODES] = {
22757c478bd9Sstevel@tonic-gate 	0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9,
22767c478bd9Sstevel@tonic-gate 	9, 10, 10, 11, 11, 12, 12, 13, 13};
22777c478bd9Sstevel@tonic-gate 
22787c478bd9Sstevel@tonic-gate /* extra bits for each bit length code */
22797c478bd9Sstevel@tonic-gate local const int extra_blbits[BL_CODES] = {
22807c478bd9Sstevel@tonic-gate 	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 7};
22817c478bd9Sstevel@tonic-gate 
22827c478bd9Sstevel@tonic-gate local const uch bl_order[BL_CODES] = {
22837c478bd9Sstevel@tonic-gate 	16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15};
22847c478bd9Sstevel@tonic-gate 
22857c478bd9Sstevel@tonic-gate /*
22867c478bd9Sstevel@tonic-gate  * The lengths of the bit length codes are sent in order of decreasing
22877c478bd9Sstevel@tonic-gate  * probability, to avoid transmitting the lengths for unused bit
22887c478bd9Sstevel@tonic-gate  * length codes.
22897c478bd9Sstevel@tonic-gate  */
22907c478bd9Sstevel@tonic-gate 
22917c478bd9Sstevel@tonic-gate #define	Buf_size (8 * 2*sizeof (char))
22927c478bd9Sstevel@tonic-gate /*
22937c478bd9Sstevel@tonic-gate  * Number of bits used within bi_buf. (bi_buf might be implemented on
22947c478bd9Sstevel@tonic-gate  * more than 16 bits on some systems.)
22957c478bd9Sstevel@tonic-gate  */
22967c478bd9Sstevel@tonic-gate 
22977c478bd9Sstevel@tonic-gate /*
22987c478bd9Sstevel@tonic-gate  * ===========================================================================
22997c478bd9Sstevel@tonic-gate  * Local data. These are initialized only once.
23007c478bd9Sstevel@tonic-gate  */
23017c478bd9Sstevel@tonic-gate #define	DIST_CODE_LEN  512 /* see definition of array dist_code below */
23027c478bd9Sstevel@tonic-gate 
23037c478bd9Sstevel@tonic-gate local ct_data static_ltree[L_CODES+2];
23047c478bd9Sstevel@tonic-gate /*
23057c478bd9Sstevel@tonic-gate  * The static literal tree. Since the bit lengths are imposed, there
23067c478bd9Sstevel@tonic-gate  * is no need for the L_CODES extra codes used during heap
23077c478bd9Sstevel@tonic-gate  * construction. However The codes 286 and 287 are needed to build a
23087c478bd9Sstevel@tonic-gate  * canonical tree (see _tr_init below).
23097c478bd9Sstevel@tonic-gate  */
23107c478bd9Sstevel@tonic-gate 
23117c478bd9Sstevel@tonic-gate local ct_data static_dtree[D_CODES];
23127c478bd9Sstevel@tonic-gate /*
23137c478bd9Sstevel@tonic-gate  * The static distance tree. (Actually a trivial tree since all codes
23147c478bd9Sstevel@tonic-gate  * use 5 bits.)
23157c478bd9Sstevel@tonic-gate  */
23167c478bd9Sstevel@tonic-gate 
23177c478bd9Sstevel@tonic-gate local uch _dist_code[512];
23187c478bd9Sstevel@tonic-gate /*
23197c478bd9Sstevel@tonic-gate  * distance codes. The first 256 values correspond to the distances 3
23207c478bd9Sstevel@tonic-gate  * .. 258, the last 256 values correspond to the top 8 bits of the 15
23217c478bd9Sstevel@tonic-gate  * bit distances.
23227c478bd9Sstevel@tonic-gate  */
23237c478bd9Sstevel@tonic-gate 
23247c478bd9Sstevel@tonic-gate local uch _length_code[MAX_MATCH-MIN_MATCH+1];
23257c478bd9Sstevel@tonic-gate /* length code for each normalized match length (0 == MIN_MATCH) */
23267c478bd9Sstevel@tonic-gate 
23277c478bd9Sstevel@tonic-gate local int base_length[LENGTH_CODES];
23287c478bd9Sstevel@tonic-gate /* First normalized length for each code (0 = MIN_MATCH) */
23297c478bd9Sstevel@tonic-gate 
23307c478bd9Sstevel@tonic-gate local int base_dist[D_CODES];
23317c478bd9Sstevel@tonic-gate /* First normalized distance for each code (0 = distance of 1) */
23327c478bd9Sstevel@tonic-gate 
23337c478bd9Sstevel@tonic-gate struct static_tree_desc_s {
23347c478bd9Sstevel@tonic-gate 	const ct_data *static_tree;	/* static tree or NULL */
23357c478bd9Sstevel@tonic-gate 	const intf    *extra_bits;	/* extra bits for each code or NULL */
23367c478bd9Sstevel@tonic-gate 	int	extra_base;	/* base index for extra_bits */
23377c478bd9Sstevel@tonic-gate 	int	elems;	/* max number of elements in the tree */
23387c478bd9Sstevel@tonic-gate 	int	max_length;	/* max bit length for the codes */
23397c478bd9Sstevel@tonic-gate };
23407c478bd9Sstevel@tonic-gate 
23417c478bd9Sstevel@tonic-gate local static_tree_desc  static_l_desc = {
23427c478bd9Sstevel@tonic-gate 	static_ltree, extra_lbits, LITERALS+1,	L_CODES, MAX_BITS};
23437c478bd9Sstevel@tonic-gate 
23447c478bd9Sstevel@tonic-gate local static_tree_desc  static_d_desc = {
23457c478bd9Sstevel@tonic-gate 	static_dtree, extra_dbits, 0,		D_CODES, MAX_BITS};
23467c478bd9Sstevel@tonic-gate 
23477c478bd9Sstevel@tonic-gate local static_tree_desc  static_bl_desc = {
23487c478bd9Sstevel@tonic-gate 	(const ct_data *)0, extra_blbits, 0,		BL_CODES, MAX_BL_BITS};
23497c478bd9Sstevel@tonic-gate 
23507c478bd9Sstevel@tonic-gate /*
23517c478bd9Sstevel@tonic-gate  * ===========================================================================
23527c478bd9Sstevel@tonic-gate  * Local (static) routines in this file.
23537c478bd9Sstevel@tonic-gate  */
23547c478bd9Sstevel@tonic-gate 
23557c478bd9Sstevel@tonic-gate local void tr_static_init OF((void));
23567c478bd9Sstevel@tonic-gate local void init_block	OF((deflate_state *s));
23577c478bd9Sstevel@tonic-gate local void pqdownheap	OF((deflate_state *s, ct_data *tree, int k));
23587c478bd9Sstevel@tonic-gate local void gen_bitlen	OF((deflate_state *s, tree_desc *desc));
23597c478bd9Sstevel@tonic-gate local void gen_codes	OF((ct_data *tree, int max_code, ushf *bl_count));
23607c478bd9Sstevel@tonic-gate local void build_tree	OF((deflate_state *s, tree_desc *desc));
23617c478bd9Sstevel@tonic-gate local void scan_tree	OF((deflate_state *s, ct_data *tree, int max_code));
23627c478bd9Sstevel@tonic-gate local void send_tree	OF((deflate_state *s, ct_data *tree, int max_code));
23637c478bd9Sstevel@tonic-gate local int  build_bl_tree	OF((deflate_state *s));
23647c478bd9Sstevel@tonic-gate local void send_all_trees	OF((deflate_state *s, int lcodes, int dcodes,
23657c478bd9Sstevel@tonic-gate     int blcodes));
23667c478bd9Sstevel@tonic-gate local void compress_block OF((deflate_state *s, ct_data *ltree,
23677c478bd9Sstevel@tonic-gate     ct_data *dtree));
23687c478bd9Sstevel@tonic-gate local void set_data_type	OF((deflate_state *s));
23697c478bd9Sstevel@tonic-gate local unsigned bi_reverse	OF((unsigned value, int length));
23707c478bd9Sstevel@tonic-gate local void bi_windup	OF((deflate_state *s));
23717c478bd9Sstevel@tonic-gate local void bi_flush	OF((deflate_state *s));
23727c478bd9Sstevel@tonic-gate local void copy_block	OF((deflate_state *s, charf *buf, unsigned len,
23737c478bd9Sstevel@tonic-gate     int header));
23747c478bd9Sstevel@tonic-gate 
23757c478bd9Sstevel@tonic-gate #ifndef DEBUG_ZLIB
23767c478bd9Sstevel@tonic-gate #define	send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len)
23777c478bd9Sstevel@tonic-gate /* Send a code of the given tree. c and tree must not have side effects */
23787c478bd9Sstevel@tonic-gate 
23797c478bd9Sstevel@tonic-gate #else /* DEBUG_ZLIB */
23807c478bd9Sstevel@tonic-gate #define	send_code(s, c, tree) \
23817c478bd9Sstevel@tonic-gate 	{ if (z_verbose > 2) fprintf(stderr, "\ncd %3d ", (c)); \
23827c478bd9Sstevel@tonic-gate 	send_bits(s, tree[c].Code, tree[c].Len); }
23837c478bd9Sstevel@tonic-gate #endif
23847c478bd9Sstevel@tonic-gate 
23857c478bd9Sstevel@tonic-gate /*
23867c478bd9Sstevel@tonic-gate  * ===========================================================================
23877c478bd9Sstevel@tonic-gate  * Output a short LSB first on the stream.
23887c478bd9Sstevel@tonic-gate  * IN assertion: there is enough room in pendingBuf.
23897c478bd9Sstevel@tonic-gate  */
23907c478bd9Sstevel@tonic-gate #define	put_short(s, w) { \
23917c478bd9Sstevel@tonic-gate 	put_byte(s, (uch)((w) & 0xff)); \
23927c478bd9Sstevel@tonic-gate 	put_byte(s, (uch)((ush)(w) >> 8)); \
23937c478bd9Sstevel@tonic-gate }
23947c478bd9Sstevel@tonic-gate 
23957c478bd9Sstevel@tonic-gate /*
23967c478bd9Sstevel@tonic-gate  * ===========================================================================
23977c478bd9Sstevel@tonic-gate  * Send a value on a given number of bits.
23987c478bd9Sstevel@tonic-gate  * IN assertion: length <= 16 and value fits in length bits.
23997c478bd9Sstevel@tonic-gate  */
24007c478bd9Sstevel@tonic-gate #ifdef DEBUG_ZLIB
24017c478bd9Sstevel@tonic-gate local void send_bits	OF((deflate_state *s, int value, int length));
24027c478bd9Sstevel@tonic-gate 
24037c478bd9Sstevel@tonic-gate local void
send_bits(s,value,length)24047c478bd9Sstevel@tonic-gate send_bits(s, value, length)
24057c478bd9Sstevel@tonic-gate     deflate_state *s;
24067c478bd9Sstevel@tonic-gate     int value;	/* value to send */
24077c478bd9Sstevel@tonic-gate     int length;	/* number of bits */
24087c478bd9Sstevel@tonic-gate {
24097c478bd9Sstevel@tonic-gate 	Tracevv((stderr, " l %2d v %4x ", length, value));
24107c478bd9Sstevel@tonic-gate 	Assert(length > 0 && length <= 15, "invalid length");
24117c478bd9Sstevel@tonic-gate 	s->bits_sent += (ulg)length;
24127c478bd9Sstevel@tonic-gate 
24137c478bd9Sstevel@tonic-gate 	/*
24147c478bd9Sstevel@tonic-gate 	 * If not enough room in bi_buf, use (valid) bits from bi_buf
24157c478bd9Sstevel@tonic-gate 	 * and (16 - bi_valid) bits from value, leaving (width -
24167c478bd9Sstevel@tonic-gate 	 * (16-bi_valid)) unused bits in value.
24177c478bd9Sstevel@tonic-gate 	 */
24187c478bd9Sstevel@tonic-gate 	if (s->bi_valid > (int)Buf_size - length) {
24197c478bd9Sstevel@tonic-gate 		s->bi_buf |= (value << s->bi_valid);
24207c478bd9Sstevel@tonic-gate 		put_short(s, s->bi_buf);
24217c478bd9Sstevel@tonic-gate 		s->bi_buf = (ush)value >> (Buf_size - s->bi_valid);
24227c478bd9Sstevel@tonic-gate 		s->bi_valid += length - Buf_size;
24237c478bd9Sstevel@tonic-gate 	} else {
24247c478bd9Sstevel@tonic-gate 		s->bi_buf |= value << s->bi_valid;
24257c478bd9Sstevel@tonic-gate 		s->bi_valid += length;
24267c478bd9Sstevel@tonic-gate 	}
24277c478bd9Sstevel@tonic-gate }
24287c478bd9Sstevel@tonic-gate #else /* !DEBUG_ZLIB */
24297c478bd9Sstevel@tonic-gate 
24307c478bd9Sstevel@tonic-gate #define	send_bits(s, value, length) \
24317c478bd9Sstevel@tonic-gate {	int len = length; \
24327c478bd9Sstevel@tonic-gate 	if (s->bi_valid > (int)Buf_size - len) {\
24337c478bd9Sstevel@tonic-gate 		int val = value; \
24347c478bd9Sstevel@tonic-gate 		s->bi_buf |= (val << s->bi_valid); \
24357c478bd9Sstevel@tonic-gate 		put_short(s, s->bi_buf); \
24367c478bd9Sstevel@tonic-gate 		s->bi_buf = (ush)val >> (Buf_size - s->bi_valid); \
24377c478bd9Sstevel@tonic-gate 		s->bi_valid += len - Buf_size; \
24387c478bd9Sstevel@tonic-gate 	} else {\
24397c478bd9Sstevel@tonic-gate 		s->bi_buf |= (value) << s->bi_valid; \
24407c478bd9Sstevel@tonic-gate 		s->bi_valid += len; \
24417c478bd9Sstevel@tonic-gate 	}\
24427c478bd9Sstevel@tonic-gate }
24437c478bd9Sstevel@tonic-gate #endif /* DEBUG_ZLIB */
24447c478bd9Sstevel@tonic-gate 
24457c478bd9Sstevel@tonic-gate 
24467c478bd9Sstevel@tonic-gate #define	MAX(a, b) (a >= b ? a : b)
24477c478bd9Sstevel@tonic-gate /* the arguments must not have side effects */
24487c478bd9Sstevel@tonic-gate 
24497c478bd9Sstevel@tonic-gate /*
24507c478bd9Sstevel@tonic-gate  * ===========================================================================
24517c478bd9Sstevel@tonic-gate  * Initialize the various 'constant' tables. In a multi-threaded environment,
24527c478bd9Sstevel@tonic-gate  * this function may be called by two threads concurrently, but this is
24537c478bd9Sstevel@tonic-gate  * harmless since both invocations do exactly the same thing.
24547c478bd9Sstevel@tonic-gate  */
24557c478bd9Sstevel@tonic-gate local void
tr_static_init()24567c478bd9Sstevel@tonic-gate tr_static_init()
24577c478bd9Sstevel@tonic-gate {
24587c478bd9Sstevel@tonic-gate 	static int static_init_done = 0;
24597c478bd9Sstevel@tonic-gate 	int n;	/* iterates over tree elements */
24607c478bd9Sstevel@tonic-gate 	int bits;	/* bit counter */
24617c478bd9Sstevel@tonic-gate 	int length;	/* length value */
24627c478bd9Sstevel@tonic-gate 	int code;	/* code value */
24637c478bd9Sstevel@tonic-gate 	int dist;	/* distance index */
24647c478bd9Sstevel@tonic-gate 	ush bl_count[MAX_BITS+1];
24657c478bd9Sstevel@tonic-gate 	/* number of codes at each bit length for an optimal tree */
24667c478bd9Sstevel@tonic-gate 
24677c478bd9Sstevel@tonic-gate 	if (static_init_done)
24687c478bd9Sstevel@tonic-gate 		return;
24697c478bd9Sstevel@tonic-gate 
24707c478bd9Sstevel@tonic-gate 	/* For some embedded targets, global variables are not initialized: */
24717c478bd9Sstevel@tonic-gate 	static_l_desc.static_tree = static_ltree;
24727c478bd9Sstevel@tonic-gate 	static_l_desc.extra_bits = extra_lbits;
24737c478bd9Sstevel@tonic-gate 	static_d_desc.static_tree = static_dtree;
24747c478bd9Sstevel@tonic-gate 	static_d_desc.extra_bits = extra_dbits;
24757c478bd9Sstevel@tonic-gate 	static_bl_desc.extra_bits = extra_blbits;
24767c478bd9Sstevel@tonic-gate 
24777c478bd9Sstevel@tonic-gate 	/* Initialize the mapping length (0..255) -> length code (0..28) */
24787c478bd9Sstevel@tonic-gate 	length = 0;
24797c478bd9Sstevel@tonic-gate 	for (code = 0; code < LENGTH_CODES-1; code++) {
24807c478bd9Sstevel@tonic-gate 		base_length[code] = length;
24817c478bd9Sstevel@tonic-gate 		for (n = 0; n < (1<<extra_lbits[code]); n++) {
24827c478bd9Sstevel@tonic-gate 			_length_code[length++] = (uch)code;
24837c478bd9Sstevel@tonic-gate 		}
24847c478bd9Sstevel@tonic-gate 	}
24857c478bd9Sstevel@tonic-gate 	Assert(length == 256, "tr_static_init: length != 256");
24867c478bd9Sstevel@tonic-gate 	/*
24877c478bd9Sstevel@tonic-gate 	 * Note that the length 255 (match length 258) can be
24887c478bd9Sstevel@tonic-gate 	 * represented in two different ways: code 284 + 5 bits or
24897c478bd9Sstevel@tonic-gate 	 * code 285, so we overwrite _length_code[255] to use the best
24907c478bd9Sstevel@tonic-gate 	 * encoding:
24917c478bd9Sstevel@tonic-gate 	 */
24927c478bd9Sstevel@tonic-gate 	_length_code[length-1] = (uch)code;
24937c478bd9Sstevel@tonic-gate 
24947c478bd9Sstevel@tonic-gate 	/* Initialize the mapping dist (0..32K) -> dist code (0..29) */
24957c478bd9Sstevel@tonic-gate 	dist = 0;
24967c478bd9Sstevel@tonic-gate 	for (code = 0; code < 16; code++) {
24977c478bd9Sstevel@tonic-gate 		base_dist[code] = dist;
24987c478bd9Sstevel@tonic-gate 		for (n = 0; n < (1<<extra_dbits[code]); n++) {
24997c478bd9Sstevel@tonic-gate 			_dist_code[dist++] = (uch)code;
25007c478bd9Sstevel@tonic-gate 		}
25017c478bd9Sstevel@tonic-gate 	}
25027c478bd9Sstevel@tonic-gate 	Assert(dist == 256, "tr_static_init: dist != 256");
25037c478bd9Sstevel@tonic-gate 	dist >>= 7;	/* from now on, all distances are divided by 128 */
25047c478bd9Sstevel@tonic-gate 	for (; code < D_CODES; code++) {
25057c478bd9Sstevel@tonic-gate 		base_dist[code] = dist << 7;
25067c478bd9Sstevel@tonic-gate 		for (n = 0; n < (1<<(extra_dbits[code]-7)); n++) {
25077c478bd9Sstevel@tonic-gate 			_dist_code[256 + dist++] = (uch)code;
25087c478bd9Sstevel@tonic-gate 		}
25097c478bd9Sstevel@tonic-gate 	}
25107c478bd9Sstevel@tonic-gate 	Assert(dist == 256, "tr_static_init: 256+dist != 512");
25117c478bd9Sstevel@tonic-gate 
25127c478bd9Sstevel@tonic-gate 	/* Construct the codes of the static literal tree */
25137c478bd9Sstevel@tonic-gate 	for (bits = 0; bits <= MAX_BITS; bits++) bl_count[bits] = 0;
25147c478bd9Sstevel@tonic-gate 	n = 0;
25157c478bd9Sstevel@tonic-gate 	while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++;
25167c478bd9Sstevel@tonic-gate 	while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++;
25177c478bd9Sstevel@tonic-gate 	while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++;
25187c478bd9Sstevel@tonic-gate 	while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++;
25197c478bd9Sstevel@tonic-gate 	/*
25207c478bd9Sstevel@tonic-gate 	 * Codes 286 and 287 do not exist, but we must include them in the
25217c478bd9Sstevel@tonic-gate 	 * tree construction to get a canonical Huffman tree (longest code
25227c478bd9Sstevel@tonic-gate 	 * all ones)
25237c478bd9Sstevel@tonic-gate 	 */
25247c478bd9Sstevel@tonic-gate 	gen_codes((ct_data *)static_ltree, L_CODES+1, bl_count);
25257c478bd9Sstevel@tonic-gate 
25267c478bd9Sstevel@tonic-gate 	/* The static distance tree is trivial: */
25277c478bd9Sstevel@tonic-gate 	for (n = 0; n < D_CODES; n++) {
25287c478bd9Sstevel@tonic-gate 		static_dtree[n].Len = 5;
25297c478bd9Sstevel@tonic-gate 		static_dtree[n].Code = bi_reverse((unsigned)n, 5);
25307c478bd9Sstevel@tonic-gate 	}
25317c478bd9Sstevel@tonic-gate 	static_init_done = 1;
25327c478bd9Sstevel@tonic-gate }
25337c478bd9Sstevel@tonic-gate 
25347c478bd9Sstevel@tonic-gate /*
25357c478bd9Sstevel@tonic-gate  * ===========================================================================
25367c478bd9Sstevel@tonic-gate  * Initialize the tree data structures for a new zlib stream.
25377c478bd9Sstevel@tonic-gate  */
25387c478bd9Sstevel@tonic-gate void
_tr_init(s)25397c478bd9Sstevel@tonic-gate _tr_init(s)
25407c478bd9Sstevel@tonic-gate     deflate_state *s;
25417c478bd9Sstevel@tonic-gate {
25427c478bd9Sstevel@tonic-gate 	tr_static_init();
25437c478bd9Sstevel@tonic-gate 
25447c478bd9Sstevel@tonic-gate 	s->l_desc.dyn_tree = s->dyn_ltree;
25457c478bd9Sstevel@tonic-gate 	s->l_desc.stat_desc = &static_l_desc;
25467c478bd9Sstevel@tonic-gate 
25477c478bd9Sstevel@tonic-gate 	s->d_desc.dyn_tree = s->dyn_dtree;
25487c478bd9Sstevel@tonic-gate 	s->d_desc.stat_desc = &static_d_desc;
25497c478bd9Sstevel@tonic-gate 
25507c478bd9Sstevel@tonic-gate 	s->bl_desc.dyn_tree = s->bl_tree;
25517c478bd9Sstevel@tonic-gate 	s->bl_desc.stat_desc = &static_bl_desc;
25527c478bd9Sstevel@tonic-gate 
25537c478bd9Sstevel@tonic-gate 	s->bi_buf = 0;
25547c478bd9Sstevel@tonic-gate 	s->bi_valid = 0;
25557c478bd9Sstevel@tonic-gate 	s->last_eob_len = 8;	/* enough lookahead for inflate */
25567c478bd9Sstevel@tonic-gate 	s->compressed_len = 0L;		/* PPP */
25577c478bd9Sstevel@tonic-gate #ifdef DEBUG_ZLIB
25587c478bd9Sstevel@tonic-gate 	s->bits_sent = 0L;
25597c478bd9Sstevel@tonic-gate #endif
25607c478bd9Sstevel@tonic-gate 
25617c478bd9Sstevel@tonic-gate 	/* Initialize the first block of the first file: */
25627c478bd9Sstevel@tonic-gate 	init_block(s);
25637c478bd9Sstevel@tonic-gate }
25647c478bd9Sstevel@tonic-gate 
25657c478bd9Sstevel@tonic-gate /*
25667c478bd9Sstevel@tonic-gate  * ===========================================================================
25677c478bd9Sstevel@tonic-gate  * Initialize a new block.
25687c478bd9Sstevel@tonic-gate  */
25697c478bd9Sstevel@tonic-gate local void
init_block(s)25707c478bd9Sstevel@tonic-gate init_block(s)
25717c478bd9Sstevel@tonic-gate     deflate_state *s;
25727c478bd9Sstevel@tonic-gate {
25737c478bd9Sstevel@tonic-gate 	int n;	/* iterates over tree elements */
25747c478bd9Sstevel@tonic-gate 
25757c478bd9Sstevel@tonic-gate 	/* Initialize the trees. */
25767c478bd9Sstevel@tonic-gate 	for (n = 0; n < L_CODES;  n++) s->dyn_ltree[n].Freq = 0;
25777c478bd9Sstevel@tonic-gate 	for (n = 0; n < D_CODES;  n++) s->dyn_dtree[n].Freq = 0;
25787c478bd9Sstevel@tonic-gate 	for (n = 0; n < BL_CODES; n++) s->bl_tree[n].Freq = 0;
25797c478bd9Sstevel@tonic-gate 
25807c478bd9Sstevel@tonic-gate 	s->dyn_ltree[END_BLOCK].Freq = 1;
25817c478bd9Sstevel@tonic-gate 	s->opt_len = s->static_len = 0L;
25827c478bd9Sstevel@tonic-gate 	s->last_lit = s->matches = 0;
25837c478bd9Sstevel@tonic-gate }
25847c478bd9Sstevel@tonic-gate 
25857c478bd9Sstevel@tonic-gate #define	SMALLEST 1
25867c478bd9Sstevel@tonic-gate /* Index within the heap array of least frequent node in the Huffman tree */
25877c478bd9Sstevel@tonic-gate 
25887c478bd9Sstevel@tonic-gate 
25897c478bd9Sstevel@tonic-gate /*
25907c478bd9Sstevel@tonic-gate  * ===========================================================================
25917c478bd9Sstevel@tonic-gate  * Remove the smallest element from the heap and recreate the heap with
25927c478bd9Sstevel@tonic-gate  * one less element. Updates heap and heap_len.
25937c478bd9Sstevel@tonic-gate  */
25947c478bd9Sstevel@tonic-gate #define	pqremove(s, tree, top) \
25957c478bd9Sstevel@tonic-gate {\
25967c478bd9Sstevel@tonic-gate 	top = s->heap[SMALLEST]; \
25977c478bd9Sstevel@tonic-gate 	s->heap[SMALLEST] = s->heap[s->heap_len--]; \
25987c478bd9Sstevel@tonic-gate 	pqdownheap(s, tree, SMALLEST); \
25997c478bd9Sstevel@tonic-gate }
26007c478bd9Sstevel@tonic-gate 
26017c478bd9Sstevel@tonic-gate /*
26027c478bd9Sstevel@tonic-gate  * ===========================================================================
26037c478bd9Sstevel@tonic-gate  * Compares to subtrees, using the tree depth as tie breaker when
26047c478bd9Sstevel@tonic-gate  * the subtrees have equal frequency. This minimizes the worst case length.
26057c478bd9Sstevel@tonic-gate  */
26067c478bd9Sstevel@tonic-gate #define	smaller(tree, n, m, depth) \
26077c478bd9Sstevel@tonic-gate 	(tree[n].Freq < tree[m].Freq || \
26087c478bd9Sstevel@tonic-gate 	(tree[n].Freq == tree[m].Freq && depth[n] <= depth[m]))
26097c478bd9Sstevel@tonic-gate /*
26107c478bd9Sstevel@tonic-gate  * ===========================================================================
26117c478bd9Sstevel@tonic-gate  * Restore the heap property by moving down the tree starting at node k,
26127c478bd9Sstevel@tonic-gate  * exchanging a node with the smallest of its two sons if necessary, stopping
26137c478bd9Sstevel@tonic-gate  * when the heap property is re-established (each father smaller than its
26147c478bd9Sstevel@tonic-gate  * two sons).
26157c478bd9Sstevel@tonic-gate  */
26167c478bd9Sstevel@tonic-gate local void
pqdownheap(s,tree,k)26177c478bd9Sstevel@tonic-gate pqdownheap(s, tree, k)
26187c478bd9Sstevel@tonic-gate     deflate_state *s;
26197c478bd9Sstevel@tonic-gate     ct_data *tree;	/* the tree to restore */
26207c478bd9Sstevel@tonic-gate     int k;	/* node to move down */
26217c478bd9Sstevel@tonic-gate {
26227c478bd9Sstevel@tonic-gate 	int v = s->heap[k];
26237c478bd9Sstevel@tonic-gate 	int j = k << 1;	/* left son of k */
26247c478bd9Sstevel@tonic-gate 	while (j <= s->heap_len) {
26257c478bd9Sstevel@tonic-gate 		/* Set j to the smallest of the two sons: */
26267c478bd9Sstevel@tonic-gate 		if (j < s->heap_len &&
26277c478bd9Sstevel@tonic-gate 		    smaller(tree, s->heap[j+1], s->heap[j], s->depth)) {
26287c478bd9Sstevel@tonic-gate 			j++;
26297c478bd9Sstevel@tonic-gate 		}
26307c478bd9Sstevel@tonic-gate 		/* Exit if v is smaller than both sons */
26317c478bd9Sstevel@tonic-gate 		if (smaller(tree, v, s->heap[j], s->depth)) break;
26327c478bd9Sstevel@tonic-gate 
26337c478bd9Sstevel@tonic-gate 		/* Exchange v with the smallest son */
26347c478bd9Sstevel@tonic-gate 		s->heap[k] = s->heap[j];  k = j;
26357c478bd9Sstevel@tonic-gate 
26367c478bd9Sstevel@tonic-gate 		/* And continue down the tree, setting j to the left son of k */
26377c478bd9Sstevel@tonic-gate 		j <<= 1;
26387c478bd9Sstevel@tonic-gate 	}
26397c478bd9Sstevel@tonic-gate 	s->heap[k] = v;
26407c478bd9Sstevel@tonic-gate }
26417c478bd9Sstevel@tonic-gate 
26427c478bd9Sstevel@tonic-gate /*
26437c478bd9Sstevel@tonic-gate  * ===========================================================================
26447c478bd9Sstevel@tonic-gate  * Compute the optimal bit lengths for a tree and update the total bit length
26457c478bd9Sstevel@tonic-gate  * for the current block.
26467c478bd9Sstevel@tonic-gate  * IN assertion: the fields freq and dad are set, heap[heap_max] and
26477c478bd9Sstevel@tonic-gate  *    above are the tree nodes sorted by increasing frequency.
26487c478bd9Sstevel@tonic-gate  * OUT assertions: the field len is set to the optimal bit length, the
26497c478bd9Sstevel@tonic-gate  *     array bl_count contains the frequencies for each bit length.
26507c478bd9Sstevel@tonic-gate  *     The length opt_len is updated; static_len is also updated if stree is
26517c478bd9Sstevel@tonic-gate  *     not null.
26527c478bd9Sstevel@tonic-gate  */
26537c478bd9Sstevel@tonic-gate local void
gen_bitlen(s,desc)26547c478bd9Sstevel@tonic-gate gen_bitlen(s, desc)
26557c478bd9Sstevel@tonic-gate     deflate_state *s;
26567c478bd9Sstevel@tonic-gate     tree_desc *desc;	/* the tree descriptor */
26577c478bd9Sstevel@tonic-gate {
26587c478bd9Sstevel@tonic-gate 	ct_data *tree  = desc->dyn_tree;
26597c478bd9Sstevel@tonic-gate 	int max_code   = desc->max_code;
26607c478bd9Sstevel@tonic-gate 	const ct_data *stree = desc->stat_desc->static_tree;
26617c478bd9Sstevel@tonic-gate 	const intf *extra    = desc->stat_desc->extra_bits;
26627c478bd9Sstevel@tonic-gate 	int base	= desc->stat_desc->extra_base;
26637c478bd9Sstevel@tonic-gate 	int max_length = desc->stat_desc->max_length;
26647c478bd9Sstevel@tonic-gate 	int h;	/* heap index */
26657c478bd9Sstevel@tonic-gate 	int n, m;	/* iterate over the tree elements */
26667c478bd9Sstevel@tonic-gate 	int bits;	/* bit length */
26677c478bd9Sstevel@tonic-gate 	int xbits;	/* extra bits */
26687c478bd9Sstevel@tonic-gate 	ush f;	/* frequency */
26697c478bd9Sstevel@tonic-gate 	/* number of elements with bit length too large */
26707c478bd9Sstevel@tonic-gate 	int overflow = 0;
26717c478bd9Sstevel@tonic-gate 
26727c478bd9Sstevel@tonic-gate 	for (bits = 0; bits <= MAX_BITS; bits++) s->bl_count[bits] = 0;
26737c478bd9Sstevel@tonic-gate 
26747c478bd9Sstevel@tonic-gate 	/*
26757c478bd9Sstevel@tonic-gate 	 * In a first pass, compute the optimal bit lengths (which may
26767c478bd9Sstevel@tonic-gate 	 * overflow in the case of the bit length tree).
26777c478bd9Sstevel@tonic-gate 	 */
26787c478bd9Sstevel@tonic-gate 	tree[s->heap[s->heap_max]].Len = 0;	/* root of the heap */
26797c478bd9Sstevel@tonic-gate 
26807c478bd9Sstevel@tonic-gate 	for (h = s->heap_max+1; h < HEAP_SIZE; h++) {
26817c478bd9Sstevel@tonic-gate 		n = s->heap[h];
26827c478bd9Sstevel@tonic-gate 		bits = tree[tree[n].Dad].Len + 1;
26837c478bd9Sstevel@tonic-gate 		if (bits > max_length) bits = max_length, overflow++;
26847c478bd9Sstevel@tonic-gate 		tree[n].Len = (ush)bits;
26857c478bd9Sstevel@tonic-gate 		/* We overwrite tree[n].Dad which is no longer needed */
26867c478bd9Sstevel@tonic-gate 
26877c478bd9Sstevel@tonic-gate 		if (n > max_code) continue;	/* not a leaf node */
26887c478bd9Sstevel@tonic-gate 
26897c478bd9Sstevel@tonic-gate 		s->bl_count[bits]++;
26907c478bd9Sstevel@tonic-gate 		xbits = 0;
26917c478bd9Sstevel@tonic-gate 		if (n >= base) xbits = extra[n-base];
26927c478bd9Sstevel@tonic-gate 		f = tree[n].Freq;
26937c478bd9Sstevel@tonic-gate 		s->opt_len += (ulg)f * (bits + xbits);
26947c478bd9Sstevel@tonic-gate 		if (stree) s->static_len += (ulg)f * (stree[n].Len + xbits);
26957c478bd9Sstevel@tonic-gate 	}
26967c478bd9Sstevel@tonic-gate 	if (overflow == 0)
26977c478bd9Sstevel@tonic-gate 		return;
26987c478bd9Sstevel@tonic-gate 
26997c478bd9Sstevel@tonic-gate 	Trace((stderr, "\nbit length overflow\n"));
27007c478bd9Sstevel@tonic-gate 	/* This happens for example on obj2 and pic of the Calgary corpus */
27017c478bd9Sstevel@tonic-gate 
27027c478bd9Sstevel@tonic-gate 	/* Find the first bit length which could increase: */
27037c478bd9Sstevel@tonic-gate 	do {
27047c478bd9Sstevel@tonic-gate 		bits = max_length-1;
27057c478bd9Sstevel@tonic-gate 		while (s->bl_count[bits] == 0) bits--;
27067c478bd9Sstevel@tonic-gate 		s->bl_count[bits]--;	/* move one leaf down the tree */
27077c478bd9Sstevel@tonic-gate 		/* move one overflow item as its brother */
27087c478bd9Sstevel@tonic-gate 		s->bl_count[bits+1] += 2;
27097c478bd9Sstevel@tonic-gate 		s->bl_count[max_length]--;
27107c478bd9Sstevel@tonic-gate 		/*
27117c478bd9Sstevel@tonic-gate 		 * The brother of the overflow item also moves one
27127c478bd9Sstevel@tonic-gate 		 * step up, but this does not affect
27137c478bd9Sstevel@tonic-gate 		 * bl_count[max_length]
27147c478bd9Sstevel@tonic-gate 		 */
27157c478bd9Sstevel@tonic-gate 		overflow -= 2;
27167c478bd9Sstevel@tonic-gate 	} while (overflow > 0);
27177c478bd9Sstevel@tonic-gate 
27187c478bd9Sstevel@tonic-gate 	/*
27197c478bd9Sstevel@tonic-gate 	 * Now recompute all bit lengths, scanning in increasing
27207c478bd9Sstevel@tonic-gate 	 * frequency.  h is still equal to HEAP_SIZE. (It is simpler
27217c478bd9Sstevel@tonic-gate 	 * to reconstruct all lengths instead of fixing only the wrong
27227c478bd9Sstevel@tonic-gate 	 * ones. This idea is taken from 'ar' written by Haruhiko
27237c478bd9Sstevel@tonic-gate 	 * Okumura.)
27247c478bd9Sstevel@tonic-gate 	 */
27257c478bd9Sstevel@tonic-gate 	for (bits = max_length; bits != 0; bits--) {
27267c478bd9Sstevel@tonic-gate 		n = s->bl_count[bits];
27277c478bd9Sstevel@tonic-gate 		while (n != 0) {
27287c478bd9Sstevel@tonic-gate 			m = s->heap[--h];
27297c478bd9Sstevel@tonic-gate 			if (m > max_code) continue;
27307c478bd9Sstevel@tonic-gate 			if (tree[m].Len != (unsigned)bits) {
27317c478bd9Sstevel@tonic-gate 				Trace((stderr, "code %d bits %d->%d\n", m,
27327c478bd9Sstevel@tonic-gate 				    tree[m].Len, bits));
27337c478bd9Sstevel@tonic-gate 				s->opt_len += ((long)bits - (long)tree[m].Len)
27347c478bd9Sstevel@tonic-gate 				    *(long)tree[m].Freq;
27357c478bd9Sstevel@tonic-gate 				tree[m].Len = (ush)bits;
27367c478bd9Sstevel@tonic-gate 			}
27377c478bd9Sstevel@tonic-gate 			n--;
27387c478bd9Sstevel@tonic-gate 		}
27397c478bd9Sstevel@tonic-gate 	}
27407c478bd9Sstevel@tonic-gate }
27417c478bd9Sstevel@tonic-gate 
27427c478bd9Sstevel@tonic-gate /*
27437c478bd9Sstevel@tonic-gate  * ===========================================================================
27447c478bd9Sstevel@tonic-gate  * Generate the codes for a given tree and bit counts (which need not be
27457c478bd9Sstevel@tonic-gate  * optimal).
27467c478bd9Sstevel@tonic-gate  * IN assertion: the array bl_count contains the bit length statistics for
27477c478bd9Sstevel@tonic-gate  * the given tree and the field len is set for all tree elements.
27487c478bd9Sstevel@tonic-gate  * OUT assertion: the field code is set for all tree elements of non
27497c478bd9Sstevel@tonic-gate  *     zero code length.
27507c478bd9Sstevel@tonic-gate  */
27517c478bd9Sstevel@tonic-gate local void
gen_codes(tree,max_code,bl_count)27527c478bd9Sstevel@tonic-gate gen_codes(tree, max_code, bl_count)
27537c478bd9Sstevel@tonic-gate     ct_data *tree;	/* the tree to decorate */
27547c478bd9Sstevel@tonic-gate     int max_code;	/* largest code with non zero frequency */
27557c478bd9Sstevel@tonic-gate     ushf *bl_count;	/* number of codes at each bit length */
27567c478bd9Sstevel@tonic-gate {
27577c478bd9Sstevel@tonic-gate 	/* next code value for each bit length */
27587c478bd9Sstevel@tonic-gate 	ush next_code[MAX_BITS+1];
27597c478bd9Sstevel@tonic-gate 	ush code = 0;	/* running code value */
27607c478bd9Sstevel@tonic-gate 	int bits;	/* bit index */
27617c478bd9Sstevel@tonic-gate 	int n;	/* code index */
27627c478bd9Sstevel@tonic-gate 
27637c478bd9Sstevel@tonic-gate 	/*
27647c478bd9Sstevel@tonic-gate 	 * The distribution counts are first used to generate the code
27657c478bd9Sstevel@tonic-gate 	 * values without bit reversal.
27667c478bd9Sstevel@tonic-gate 	 */
27677c478bd9Sstevel@tonic-gate 	for (bits = 1; bits <= MAX_BITS; bits++) {
27687c478bd9Sstevel@tonic-gate 		next_code[bits] = code = (code + bl_count[bits-1]) << 1;
27697c478bd9Sstevel@tonic-gate 	}
27707c478bd9Sstevel@tonic-gate 	/*
27717c478bd9Sstevel@tonic-gate 	 * Check that the bit counts in bl_count are consistent. The
27727c478bd9Sstevel@tonic-gate 	 * last code must be all ones.
27737c478bd9Sstevel@tonic-gate 	 */
27747c478bd9Sstevel@tonic-gate 	Assert(code + bl_count[MAX_BITS]-1 == (1<<MAX_BITS)-1,
27757c478bd9Sstevel@tonic-gate 	    "inconsistent bit counts");
27767c478bd9Sstevel@tonic-gate 	Tracev((stderr, "\ngen_codes: max_code %d ", max_code));
27777c478bd9Sstevel@tonic-gate 
27787c478bd9Sstevel@tonic-gate 	for (n = 0;  n <= max_code; n++) {
27797c478bd9Sstevel@tonic-gate 		int len = tree[n].Len;
27807c478bd9Sstevel@tonic-gate 		if (len == 0) continue;
27817c478bd9Sstevel@tonic-gate 		/* Now reverse the bits */
27827c478bd9Sstevel@tonic-gate 		tree[n].Code = bi_reverse(next_code[len]++, len);
27837c478bd9Sstevel@tonic-gate 
27847c478bd9Sstevel@tonic-gate 		Tracecv(tree != static_ltree,
27857c478bd9Sstevel@tonic-gate 		    (stderr, "\nn %3d %c l %2d c %4x (%x) ",
27867c478bd9Sstevel@tonic-gate 		    n, (isgraph(n) ? n : ' '), len, tree[n].Code,
27877c478bd9Sstevel@tonic-gate 			next_code[len]-1));
27887c478bd9Sstevel@tonic-gate 	}
27897c478bd9Sstevel@tonic-gate }
27907c478bd9Sstevel@tonic-gate 
27917c478bd9Sstevel@tonic-gate /*
27927c478bd9Sstevel@tonic-gate  * ===========================================================================
27937c478bd9Sstevel@tonic-gate  * Construct one Huffman tree and assigns the code bit strings and lengths.
27947c478bd9Sstevel@tonic-gate  * Update the total bit length for the current block.
27957c478bd9Sstevel@tonic-gate  * IN assertion: the field freq is set for all tree elements.
27967c478bd9Sstevel@tonic-gate  * OUT assertions: the fields len and code are set to the optimal bit length
27977c478bd9Sstevel@tonic-gate  *     and corresponding code. The length opt_len is updated; static_len is
27987c478bd9Sstevel@tonic-gate  *     also updated if stree is not null. The field max_code is set.
27997c478bd9Sstevel@tonic-gate  */
28007c478bd9Sstevel@tonic-gate local void
build_tree(s,desc)28017c478bd9Sstevel@tonic-gate build_tree(s, desc)
28027c478bd9Sstevel@tonic-gate     deflate_state *s;
28037c478bd9Sstevel@tonic-gate     tree_desc *desc;	/* the tree descriptor */
28047c478bd9Sstevel@tonic-gate {
28057c478bd9Sstevel@tonic-gate 	ct_data *tree   = desc->dyn_tree;
28067c478bd9Sstevel@tonic-gate 	const ct_data *stree  = desc->stat_desc->static_tree;
28077c478bd9Sstevel@tonic-gate 	int elems	= desc->stat_desc->elems;
28087c478bd9Sstevel@tonic-gate 	int n, m;	/* iterate over heap elements */
28097c478bd9Sstevel@tonic-gate 	int max_code = -1;	/* largest code with non zero frequency */
28107c478bd9Sstevel@tonic-gate 	int node;	/* new node being created */
28117c478bd9Sstevel@tonic-gate 
28127c478bd9Sstevel@tonic-gate 	/*
28137c478bd9Sstevel@tonic-gate 	 * Construct the initial heap, with least frequent element in
28147c478bd9Sstevel@tonic-gate 	 * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and
28157c478bd9Sstevel@tonic-gate 	 * heap[2*n+1].  heap[0] is not used.
28167c478bd9Sstevel@tonic-gate 	 */
28177c478bd9Sstevel@tonic-gate 	s->heap_len = 0, s->heap_max = HEAP_SIZE;
28187c478bd9Sstevel@tonic-gate 
28197c478bd9Sstevel@tonic-gate 	for (n = 0; n < elems; n++) {
28207c478bd9Sstevel@tonic-gate 		if (tree[n].Freq != 0) {
28217c478bd9Sstevel@tonic-gate 			s->heap[++(s->heap_len)] = max_code = n;
28227c478bd9Sstevel@tonic-gate 			s->depth[n] = 0;
28237c478bd9Sstevel@tonic-gate 		} else {
28247c478bd9Sstevel@tonic-gate 			tree[n].Len = 0;
28257c478bd9Sstevel@tonic-gate 		}
28267c478bd9Sstevel@tonic-gate 	}
28277c478bd9Sstevel@tonic-gate 
28287c478bd9Sstevel@tonic-gate 	/*
28297c478bd9Sstevel@tonic-gate 	 * The pkzip format requires that at least one distance code
28307c478bd9Sstevel@tonic-gate 	 * exists, and that at least one bit should be sent even if
28317c478bd9Sstevel@tonic-gate 	 * there is only one possible code. So to avoid special checks
28327c478bd9Sstevel@tonic-gate 	 * later on we force at least two codes of non zero frequency.
28337c478bd9Sstevel@tonic-gate 	 */
28347c478bd9Sstevel@tonic-gate 	while (s->heap_len < 2) {
28357c478bd9Sstevel@tonic-gate 		node = s->heap[++(s->heap_len)] = (max_code < 2 ?
28367c478bd9Sstevel@tonic-gate 		    ++max_code : 0);
28377c478bd9Sstevel@tonic-gate 		tree[node].Freq = 1;
28387c478bd9Sstevel@tonic-gate 		s->depth[node] = 0;
28397c478bd9Sstevel@tonic-gate 		s->opt_len--; if (stree) s->static_len -= stree[node].Len;
28407c478bd9Sstevel@tonic-gate 		/* node is 0 or 1 so it does not have extra bits */
28417c478bd9Sstevel@tonic-gate 	}
28427c478bd9Sstevel@tonic-gate 	desc->max_code = max_code;
28437c478bd9Sstevel@tonic-gate 
28447c478bd9Sstevel@tonic-gate 	/*
28457c478bd9Sstevel@tonic-gate 	 * The elements heap[heap_len/2+1 .. heap_len] are leaves of
28467c478bd9Sstevel@tonic-gate 	 * the tree, establish sub-heaps of increasing lengths:
28477c478bd9Sstevel@tonic-gate 	 */
28487c478bd9Sstevel@tonic-gate 	for (n = s->heap_len/2; n >= 1; n--) pqdownheap(s, tree, n);
28497c478bd9Sstevel@tonic-gate 
28507c478bd9Sstevel@tonic-gate 	/*
28517c478bd9Sstevel@tonic-gate 	 * Construct the Huffman tree by repeatedly combining the
28527c478bd9Sstevel@tonic-gate 	 * least two frequent nodes.
28537c478bd9Sstevel@tonic-gate 	 */
28547c478bd9Sstevel@tonic-gate 	node = elems;	/* next internal node of the tree */
28557c478bd9Sstevel@tonic-gate 	do {
28567c478bd9Sstevel@tonic-gate 		pqremove(s, tree, n);	/* n = node of least frequency */
28577c478bd9Sstevel@tonic-gate 		m = s->heap[SMALLEST];	/* m = node of next least frequency */
28587c478bd9Sstevel@tonic-gate 
28597c478bd9Sstevel@tonic-gate 		/* keep the nodes sorted by frequency */
28607c478bd9Sstevel@tonic-gate 		s->heap[--(s->heap_max)] = n;
28617c478bd9Sstevel@tonic-gate 		s->heap[--(s->heap_max)] = m;
28627c478bd9Sstevel@tonic-gate 
28637c478bd9Sstevel@tonic-gate 		/* Create a new node father of n and m */
28647c478bd9Sstevel@tonic-gate 		tree[node].Freq = tree[n].Freq + tree[m].Freq;
28657c478bd9Sstevel@tonic-gate 		s->depth[node] = (uch) (MAX(s->depth[n], s->depth[m]) + 1);
28667c478bd9Sstevel@tonic-gate 		tree[n].Dad = tree[m].Dad = (ush)node;
28677c478bd9Sstevel@tonic-gate #ifdef DUMP_BL_TREE
28687c478bd9Sstevel@tonic-gate 		if (tree == s->bl_tree) {
28697c478bd9Sstevel@tonic-gate 			fprintf(stderr, "\nnode %d(%d), sons %d(%d) %d(%d)",
28707c478bd9Sstevel@tonic-gate 			    node, tree[node].Freq, n, tree[n].Freq, m,
28717c478bd9Sstevel@tonic-gate 			    tree[m].Freq);
28727c478bd9Sstevel@tonic-gate 		}
28737c478bd9Sstevel@tonic-gate #endif
28747c478bd9Sstevel@tonic-gate 		/* and insert the new node in the heap */
28757c478bd9Sstevel@tonic-gate 		s->heap[SMALLEST] = node++;
28767c478bd9Sstevel@tonic-gate 		pqdownheap(s, tree, SMALLEST);
28777c478bd9Sstevel@tonic-gate 
28787c478bd9Sstevel@tonic-gate 	} while (s->heap_len >= 2);
28797c478bd9Sstevel@tonic-gate 
28807c478bd9Sstevel@tonic-gate 	s->heap[--(s->heap_max)] = s->heap[SMALLEST];
28817c478bd9Sstevel@tonic-gate 
28827c478bd9Sstevel@tonic-gate 	/*
28837c478bd9Sstevel@tonic-gate 	 * At this point, the fields freq and dad are set. We can now
28847c478bd9Sstevel@tonic-gate 	 * generate the bit lengths.
28857c478bd9Sstevel@tonic-gate 	 */
28867c478bd9Sstevel@tonic-gate 	gen_bitlen(s, (tree_desc *)desc);
28877c478bd9Sstevel@tonic-gate 
28887c478bd9Sstevel@tonic-gate 	/* The field len is now set, we can generate the bit codes */
28897c478bd9Sstevel@tonic-gate 	gen_codes((ct_data *)tree, max_code, s->bl_count);
28907c478bd9Sstevel@tonic-gate }
28917c478bd9Sstevel@tonic-gate 
28927c478bd9Sstevel@tonic-gate /*
28937c478bd9Sstevel@tonic-gate  * ===========================================================================
28947c478bd9Sstevel@tonic-gate  * Scan a literal or distance tree to determine the frequencies of the codes
28957c478bd9Sstevel@tonic-gate  * in the bit length tree.
28967c478bd9Sstevel@tonic-gate  */
28977c478bd9Sstevel@tonic-gate local void
scan_tree(s,tree,max_code)28987c478bd9Sstevel@tonic-gate scan_tree(s, tree, max_code)
28997c478bd9Sstevel@tonic-gate     deflate_state *s;
29007c478bd9Sstevel@tonic-gate     ct_data *tree;	/* the tree to be scanned */
29017c478bd9Sstevel@tonic-gate     int max_code;	/* and its largest code of non zero frequency */
29027c478bd9Sstevel@tonic-gate {
29037c478bd9Sstevel@tonic-gate 	int n;	/* iterates over all tree elements */
29047c478bd9Sstevel@tonic-gate 	int prevlen = -1;	/* last emitted length */
29057c478bd9Sstevel@tonic-gate 	int curlen;	/* length of current code */
29067c478bd9Sstevel@tonic-gate 	int nextlen = tree[0].Len;	/* length of next code */
29077c478bd9Sstevel@tonic-gate 	int count = 0;	/* repeat count of the current code */
29087c478bd9Sstevel@tonic-gate 	int max_count = 7;	/* max repeat count */
29097c478bd9Sstevel@tonic-gate 	int min_count = 4;	/* min repeat count */
29107c478bd9Sstevel@tonic-gate 
29117c478bd9Sstevel@tonic-gate 	if (nextlen == 0) max_count = 138, min_count = 3;
29127c478bd9Sstevel@tonic-gate 	tree[max_code+1].Len = (ush)0xffff;	/* guard */
29137c478bd9Sstevel@tonic-gate 
29147c478bd9Sstevel@tonic-gate 	for (n = 0; n <= max_code; n++) {
29157c478bd9Sstevel@tonic-gate 		curlen = nextlen; nextlen = tree[n+1].Len;
29167c478bd9Sstevel@tonic-gate 		if (++count < max_count && curlen == nextlen) {
29177c478bd9Sstevel@tonic-gate 			continue;
29187c478bd9Sstevel@tonic-gate 		} else if (count < min_count) {
29197c478bd9Sstevel@tonic-gate 			s->bl_tree[curlen].Freq += count;
29207c478bd9Sstevel@tonic-gate 		} else if (curlen != 0) {
29217c478bd9Sstevel@tonic-gate 			if (curlen != prevlen) s->bl_tree[curlen].Freq++;
29227c478bd9Sstevel@tonic-gate 			s->bl_tree[REP_3_6].Freq++;
29237c478bd9Sstevel@tonic-gate 		} else if (count <= 10) {
29247c478bd9Sstevel@tonic-gate 			s->bl_tree[REPZ_3_10].Freq++;
29257c478bd9Sstevel@tonic-gate 		} else {
29267c478bd9Sstevel@tonic-gate 			s->bl_tree[REPZ_11_138].Freq++;
29277c478bd9Sstevel@tonic-gate 		}
29287c478bd9Sstevel@tonic-gate 		count = 0; prevlen = curlen;
29297c478bd9Sstevel@tonic-gate 		if (nextlen == 0) {
29307c478bd9Sstevel@tonic-gate 			max_count = 138, min_count = 3;
29317c478bd9Sstevel@tonic-gate 		} else if (curlen == nextlen) {
29327c478bd9Sstevel@tonic-gate 			max_count = 6, min_count = 3;
29337c478bd9Sstevel@tonic-gate 		} else {
29347c478bd9Sstevel@tonic-gate 			max_count = 7, min_count = 4;
29357c478bd9Sstevel@tonic-gate 		}
29367c478bd9Sstevel@tonic-gate 	}
29377c478bd9Sstevel@tonic-gate }
29387c478bd9Sstevel@tonic-gate 
29397c478bd9Sstevel@tonic-gate /*
29407c478bd9Sstevel@tonic-gate  * ===========================================================================
29417c478bd9Sstevel@tonic-gate  * Send a literal or distance tree in compressed form, using the codes in
29427c478bd9Sstevel@tonic-gate  * bl_tree.
29437c478bd9Sstevel@tonic-gate  */
29447c478bd9Sstevel@tonic-gate local void
send_tree(s,tree,max_code)29457c478bd9Sstevel@tonic-gate send_tree(s, tree, max_code)
29467c478bd9Sstevel@tonic-gate     deflate_state *s;
29477c478bd9Sstevel@tonic-gate     ct_data *tree;	/* the tree to be scanned */
29487c478bd9Sstevel@tonic-gate     int max_code;	/* and its largest code of non zero frequency */
29497c478bd9Sstevel@tonic-gate {
29507c478bd9Sstevel@tonic-gate 	int n;	/* iterates over all tree elements */
29517c478bd9Sstevel@tonic-gate 	int prevlen = -1;	/* last emitted length */
29527c478bd9Sstevel@tonic-gate 	int curlen;	/* length of current code */
29537c478bd9Sstevel@tonic-gate 	int nextlen = tree[0].Len;	/* length of next code */
29547c478bd9Sstevel@tonic-gate 	int count = 0;	/* repeat count of the current code */
29557c478bd9Sstevel@tonic-gate 	int max_count = 7;	/* max repeat count */
29567c478bd9Sstevel@tonic-gate 	int min_count = 4;	/* min repeat count */
29577c478bd9Sstevel@tonic-gate 
29587c478bd9Sstevel@tonic-gate 	/* tree[max_code+1].Len = -1; */  /* guard already set */
29597c478bd9Sstevel@tonic-gate 	if (nextlen == 0) max_count = 138, min_count = 3;
29607c478bd9Sstevel@tonic-gate 
29617c478bd9Sstevel@tonic-gate 	for (n = 0; n <= max_code; n++) {
29627c478bd9Sstevel@tonic-gate 		curlen = nextlen; nextlen = tree[n+1].Len;
29637c478bd9Sstevel@tonic-gate 		if (++count < max_count && curlen == nextlen) {
29647c478bd9Sstevel@tonic-gate 			continue;
29657c478bd9Sstevel@tonic-gate 		} else if (count < min_count) {
29667c478bd9Sstevel@tonic-gate 			do { send_code(s, curlen, s->bl_tree); }
29677c478bd9Sstevel@tonic-gate 			while (--count != 0);
29687c478bd9Sstevel@tonic-gate 
29697c478bd9Sstevel@tonic-gate 		} else if (curlen != 0) {
29707c478bd9Sstevel@tonic-gate 			if (curlen != prevlen) {
29717c478bd9Sstevel@tonic-gate 				send_code(s, curlen, s->bl_tree); count--;
29727c478bd9Sstevel@tonic-gate 			}
29737c478bd9Sstevel@tonic-gate 			Assert(count >= 3 && count <= 6, " 3_6?");
29747c478bd9Sstevel@tonic-gate 			send_code(s, REP_3_6, s->bl_tree);
29757c478bd9Sstevel@tonic-gate 			send_bits(s, count-3, 2);
29767c478bd9Sstevel@tonic-gate 
29777c478bd9Sstevel@tonic-gate 		} else if (count <= 10) {
29787c478bd9Sstevel@tonic-gate 			send_code(s, REPZ_3_10, s->bl_tree);
29797c478bd9Sstevel@tonic-gate 			send_bits(s, count-3, 3);
29807c478bd9Sstevel@tonic-gate 
29817c478bd9Sstevel@tonic-gate 		} else {
29827c478bd9Sstevel@tonic-gate 			send_code(s, REPZ_11_138, s->bl_tree);
29837c478bd9Sstevel@tonic-gate 			send_bits(s, count-11, 7);
29847c478bd9Sstevel@tonic-gate 		}
29857c478bd9Sstevel@tonic-gate 		count = 0; prevlen = curlen;
29867c478bd9Sstevel@tonic-gate 		if (nextlen == 0) {
29877c478bd9Sstevel@tonic-gate 			max_count = 138, min_count = 3;
29887c478bd9Sstevel@tonic-gate 		} else if (curlen == nextlen) {
29897c478bd9Sstevel@tonic-gate 			max_count = 6, min_count = 3;
29907c478bd9Sstevel@tonic-gate 		} else {
29917c478bd9Sstevel@tonic-gate 			max_count = 7, min_count = 4;
29927c478bd9Sstevel@tonic-gate 		}
29937c478bd9Sstevel@tonic-gate 	}
29947c478bd9Sstevel@tonic-gate }
29957c478bd9Sstevel@tonic-gate 
29967c478bd9Sstevel@tonic-gate /*
29977c478bd9Sstevel@tonic-gate  * ===========================================================================
29987c478bd9Sstevel@tonic-gate  * Construct the Huffman tree for the bit lengths and return the index in
29997c478bd9Sstevel@tonic-gate  * bl_order of the last bit length code to send.
30007c478bd9Sstevel@tonic-gate  */
30017c478bd9Sstevel@tonic-gate local int
build_bl_tree(s)30027c478bd9Sstevel@tonic-gate build_bl_tree(s)
30037c478bd9Sstevel@tonic-gate     deflate_state *s;
30047c478bd9Sstevel@tonic-gate {
30057c478bd9Sstevel@tonic-gate 	/* index of last bit length code of non zero freq */
30067c478bd9Sstevel@tonic-gate 	int max_blindex;
30077c478bd9Sstevel@tonic-gate 
30087c478bd9Sstevel@tonic-gate 	/*
30097c478bd9Sstevel@tonic-gate 	 * Determine the bit length frequencies for literal and
30107c478bd9Sstevel@tonic-gate 	 * distance trees
30117c478bd9Sstevel@tonic-gate 	 */
30127c478bd9Sstevel@tonic-gate 	scan_tree(s, (ct_data *)s->dyn_ltree, s->l_desc.max_code);
30137c478bd9Sstevel@tonic-gate 	scan_tree(s, (ct_data *)s->dyn_dtree, s->d_desc.max_code);
30147c478bd9Sstevel@tonic-gate 
30157c478bd9Sstevel@tonic-gate 	/* Build the bit length tree: */
30167c478bd9Sstevel@tonic-gate 	build_tree(s, (tree_desc *)(&(s->bl_desc)));
30177c478bd9Sstevel@tonic-gate 	/*
30187c478bd9Sstevel@tonic-gate 	 * opt_len now includes the length of the tree
30197c478bd9Sstevel@tonic-gate 	 * representations, except the lengths of the bit lengths
30207c478bd9Sstevel@tonic-gate 	 * codes and the 5+5+4 bits for the counts.
30217c478bd9Sstevel@tonic-gate 	 */
30227c478bd9Sstevel@tonic-gate 
30237c478bd9Sstevel@tonic-gate 	/*
30247c478bd9Sstevel@tonic-gate 	 * Determine the number of bit length codes to send. The pkzip
30257c478bd9Sstevel@tonic-gate 	 * format requires that at least 4 bit length codes be
30267c478bd9Sstevel@tonic-gate 	 * sent. (appnote.txt says 3 but the actual value used is 4.)
30277c478bd9Sstevel@tonic-gate 	 */
30287c478bd9Sstevel@tonic-gate 	for (max_blindex = BL_CODES-1; max_blindex >= 3; max_blindex--) {
30297c478bd9Sstevel@tonic-gate 		if (s->bl_tree[bl_order[max_blindex]].Len != 0) break;
30307c478bd9Sstevel@tonic-gate 	}
30317c478bd9Sstevel@tonic-gate 	/* Update opt_len to include the bit length tree and counts */
30327c478bd9Sstevel@tonic-gate 	s->opt_len += 3*(max_blindex+1) + 5+5+4;
30337c478bd9Sstevel@tonic-gate 	Tracev((stderr, "\ndyn trees: dyn %ld, stat %ld",
30347c478bd9Sstevel@tonic-gate 	    s->opt_len, s->static_len));
30357c478bd9Sstevel@tonic-gate 
30367c478bd9Sstevel@tonic-gate 	return (max_blindex);
30377c478bd9Sstevel@tonic-gate }
30387c478bd9Sstevel@tonic-gate 
30397c478bd9Sstevel@tonic-gate /*
30407c478bd9Sstevel@tonic-gate  * ===========================================================================
30417c478bd9Sstevel@tonic-gate  * Send the header for a block using dynamic Huffman trees: the counts, the
30427c478bd9Sstevel@tonic-gate  * lengths of the bit length codes, the literal tree and the distance tree.
30437c478bd9Sstevel@tonic-gate  * IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4.
30447c478bd9Sstevel@tonic-gate  */
30457c478bd9Sstevel@tonic-gate local void
send_all_trees(s,lcodes,dcodes,blcodes)30467c478bd9Sstevel@tonic-gate send_all_trees(s, lcodes, dcodes, blcodes)
30477c478bd9Sstevel@tonic-gate     deflate_state *s;
30487c478bd9Sstevel@tonic-gate     int lcodes, dcodes, blcodes;	/* number of codes for each tree */
30497c478bd9Sstevel@tonic-gate {
30507c478bd9Sstevel@tonic-gate 	int rank;	/* index in bl_order */
30517c478bd9Sstevel@tonic-gate 
30527c478bd9Sstevel@tonic-gate 	Assert(lcodes >= 257 && dcodes >= 1 && blcodes >= 4,
30537c478bd9Sstevel@tonic-gate 	    "not enough codes");
30547c478bd9Sstevel@tonic-gate 	Assert(lcodes <= L_CODES && dcodes <= D_CODES && blcodes <= BL_CODES,
30557c478bd9Sstevel@tonic-gate 	    "too many codes");
30567c478bd9Sstevel@tonic-gate 	Tracev((stderr, "\nbl counts: "));
30577c478bd9Sstevel@tonic-gate 	send_bits(s, lcodes-257, 5);	/* not +255 as stated in appnote.txt */
30587c478bd9Sstevel@tonic-gate 	send_bits(s, dcodes-1,   5);
30597c478bd9Sstevel@tonic-gate 	send_bits(s, blcodes-4,  4);	/* not -3 as stated in appnote.txt */
30607c478bd9Sstevel@tonic-gate 	for (rank = 0; rank < blcodes; rank++) {
30617c478bd9Sstevel@tonic-gate 		Tracev((stderr, "\nbl code %2d ", bl_order[rank]));
30627c478bd9Sstevel@tonic-gate 		send_bits(s, s->bl_tree[bl_order[rank]].Len, 3);
30637c478bd9Sstevel@tonic-gate 	}
30647c478bd9Sstevel@tonic-gate #ifdef DEBUG_ZLIB
30657c478bd9Sstevel@tonic-gate 	Tracev((stderr, "\nbl tree: sent %ld", s->bits_sent));
30667c478bd9Sstevel@tonic-gate #endif
30677c478bd9Sstevel@tonic-gate 
30687c478bd9Sstevel@tonic-gate 	/* literal tree */
30697c478bd9Sstevel@tonic-gate 	send_tree(s, (ct_data *)s->dyn_ltree, lcodes-1);
30707c478bd9Sstevel@tonic-gate #ifdef DEBUG_ZLIB
30717c478bd9Sstevel@tonic-gate 	Tracev((stderr, "\nlit tree: sent %ld", s->bits_sent));
30727c478bd9Sstevel@tonic-gate #endif
30737c478bd9Sstevel@tonic-gate 
30747c478bd9Sstevel@tonic-gate 	/* distance tree */
30757c478bd9Sstevel@tonic-gate 	send_tree(s, (ct_data *)s->dyn_dtree, dcodes-1);
30767c478bd9Sstevel@tonic-gate #ifdef DEBUG_ZLIB
30777c478bd9Sstevel@tonic-gate 	Tracev((stderr, "\ndist tree: sent %ld", s->bits_sent));
30787c478bd9Sstevel@tonic-gate #endif
30797c478bd9Sstevel@tonic-gate }
30807c478bd9Sstevel@tonic-gate 
30817c478bd9Sstevel@tonic-gate /*
30827c478bd9Sstevel@tonic-gate  * ===========================================================================
30837c478bd9Sstevel@tonic-gate  * Send a stored block
30847c478bd9Sstevel@tonic-gate  */
30857c478bd9Sstevel@tonic-gate void
_tr_stored_block(s,buf,stored_len,eof)30867c478bd9Sstevel@tonic-gate _tr_stored_block(s, buf, stored_len, eof)
30877c478bd9Sstevel@tonic-gate     deflate_state *s;
30887c478bd9Sstevel@tonic-gate     charf *buf;	/* input block */
30897c478bd9Sstevel@tonic-gate     ulg stored_len;	/* length of input block */
30907c478bd9Sstevel@tonic-gate     int eof;	/* true if this is the last block for a file */
30917c478bd9Sstevel@tonic-gate {
30927c478bd9Sstevel@tonic-gate 	send_bits(s, (STORED_BLOCK<<1)+eof, 3);	/* send block type */
30937c478bd9Sstevel@tonic-gate 	s->compressed_len = (s->compressed_len + 3 + 7) & (ulg)~7L; /* PPP */
30947c478bd9Sstevel@tonic-gate 	s->compressed_len += (stored_len + 4) << 3;	/* PPP */
30957c478bd9Sstevel@tonic-gate 
30967c478bd9Sstevel@tonic-gate 	copy_block(s, buf, (unsigned)stored_len, 1);	/* with header */
30977c478bd9Sstevel@tonic-gate }
30987c478bd9Sstevel@tonic-gate 
30997c478bd9Sstevel@tonic-gate /*
31007c478bd9Sstevel@tonic-gate  * Send just the `stored block' type code without any length bytes or data.
31017c478bd9Sstevel@tonic-gate  * ---PPP---
31027c478bd9Sstevel@tonic-gate  */
31037c478bd9Sstevel@tonic-gate void
_tr_stored_type_only(s)31047c478bd9Sstevel@tonic-gate _tr_stored_type_only(s)
31057c478bd9Sstevel@tonic-gate     deflate_state *s;
31067c478bd9Sstevel@tonic-gate {
31077c478bd9Sstevel@tonic-gate 	send_bits(s, (STORED_BLOCK << 1), 3);
31087c478bd9Sstevel@tonic-gate 	bi_windup(s);
31097c478bd9Sstevel@tonic-gate 	s->compressed_len = (s->compressed_len + 3) & ~7L;	/* PPP */
31107c478bd9Sstevel@tonic-gate }
31117c478bd9Sstevel@tonic-gate 
31127c478bd9Sstevel@tonic-gate 
31137c478bd9Sstevel@tonic-gate /*
31147c478bd9Sstevel@tonic-gate  * ===========================================================================
31157c478bd9Sstevel@tonic-gate  * Send one empty static block to give enough lookahead for inflate.
31167c478bd9Sstevel@tonic-gate  * This takes 10 bits, of which 7 may remain in the bit buffer.
31177c478bd9Sstevel@tonic-gate  * The current inflate code requires 9 bits of lookahead. If the
31187c478bd9Sstevel@tonic-gate  * last two codes for the previous block (real code plus EOB) were coded
31197c478bd9Sstevel@tonic-gate  * on 5 bits or less, inflate may have only 5+3 bits of lookahead to decode
31207c478bd9Sstevel@tonic-gate  * the last real code. In this case we send two empty static blocks instead
31217c478bd9Sstevel@tonic-gate  * of one. (There are no problems if the previous block is stored or fixed.)
31227c478bd9Sstevel@tonic-gate  * To simplify the code, we assume the worst case of last real code encoded
31237c478bd9Sstevel@tonic-gate  * on one bit only.
31247c478bd9Sstevel@tonic-gate  */
31257c478bd9Sstevel@tonic-gate void
_tr_align(s)31267c478bd9Sstevel@tonic-gate _tr_align(s)
31277c478bd9Sstevel@tonic-gate     deflate_state *s;
31287c478bd9Sstevel@tonic-gate {
31297c478bd9Sstevel@tonic-gate 	send_bits(s, STATIC_TREES<<1, 3);
31307c478bd9Sstevel@tonic-gate 	send_code(s, END_BLOCK, static_ltree);
31317c478bd9Sstevel@tonic-gate 	s->compressed_len += 10L;	/* 3 for block type, 7 for EOB */
31327c478bd9Sstevel@tonic-gate 	bi_flush(s);
31337c478bd9Sstevel@tonic-gate 	/*
31347c478bd9Sstevel@tonic-gate 	 * Of the 10 bits for the empty block, we have already sent
31357c478bd9Sstevel@tonic-gate 	 * (10 - bi_valid) bits. The lookahead for the last real code
31367c478bd9Sstevel@tonic-gate 	 * (before the EOB of the previous block) was thus at least
31377c478bd9Sstevel@tonic-gate 	 * one plus the length of the EOB plus what we have just sent
31387c478bd9Sstevel@tonic-gate 	 * of the empty static block.
31397c478bd9Sstevel@tonic-gate 	 */
31407c478bd9Sstevel@tonic-gate 	if (1 + s->last_eob_len + 10 - s->bi_valid < 9) {
31417c478bd9Sstevel@tonic-gate 		send_bits(s, STATIC_TREES<<1, 3);
31427c478bd9Sstevel@tonic-gate 		send_code(s, END_BLOCK, static_ltree);
31437c478bd9Sstevel@tonic-gate 		s->compressed_len += 10L;
31447c478bd9Sstevel@tonic-gate 		bi_flush(s);
31457c478bd9Sstevel@tonic-gate 	}
31467c478bd9Sstevel@tonic-gate 	s->last_eob_len = 7;
31477c478bd9Sstevel@tonic-gate }
31487c478bd9Sstevel@tonic-gate 
31497c478bd9Sstevel@tonic-gate /*
31507c478bd9Sstevel@tonic-gate  * ===========================================================================
31517c478bd9Sstevel@tonic-gate  * Determine the best encoding for the current block: dynamic trees, static
31527c478bd9Sstevel@tonic-gate  * trees or store, and output the encoded block to the zip file.
31537c478bd9Sstevel@tonic-gate  */
31547c478bd9Sstevel@tonic-gate void
_tr_flush_block(s,buf,stored_len,eof)31557c478bd9Sstevel@tonic-gate _tr_flush_block(s, buf, stored_len, eof)
31567c478bd9Sstevel@tonic-gate     deflate_state *s;
31577c478bd9Sstevel@tonic-gate     charf *buf;	/* input block, or NULL if too old */
31587c478bd9Sstevel@tonic-gate     ulg stored_len;	/* length of input block */
31597c478bd9Sstevel@tonic-gate     int eof;	/* true if this is the last block for a file */
31607c478bd9Sstevel@tonic-gate {
31617c478bd9Sstevel@tonic-gate 	ulg opt_lenb, static_lenb;	/* opt_len and static_len in bytes */
31627c478bd9Sstevel@tonic-gate 	/* index of last bit length code of non zero freq */
31637c478bd9Sstevel@tonic-gate 	int max_blindex = 0;
31647c478bd9Sstevel@tonic-gate 
31657c478bd9Sstevel@tonic-gate 	/* Build the Huffman trees unless a stored block is forced */
31667c478bd9Sstevel@tonic-gate 	if (s->level > 0) {
31677c478bd9Sstevel@tonic-gate 
31687c478bd9Sstevel@tonic-gate 		/* Check if the file is ascii or binary */
31697c478bd9Sstevel@tonic-gate 		if (s->data_type == Z_UNKNOWN) set_data_type(s);
31707c478bd9Sstevel@tonic-gate 
31717c478bd9Sstevel@tonic-gate 		/* Construct the literal and distance trees */
31727c478bd9Sstevel@tonic-gate 		build_tree(s, (tree_desc *)(&(s->l_desc)));
31737c478bd9Sstevel@tonic-gate 		Tracev((stderr, "\nlit data: dyn %ld, stat %ld", s->opt_len,
31747c478bd9Sstevel@tonic-gate 		    s->static_len));
31757c478bd9Sstevel@tonic-gate 
31767c478bd9Sstevel@tonic-gate 		build_tree(s, (tree_desc *)(&(s->d_desc)));
31777c478bd9Sstevel@tonic-gate 		Tracev((stderr, "\ndist data: dyn %ld, stat %ld", s->opt_len,
31787c478bd9Sstevel@tonic-gate 		    s->static_len));
31797c478bd9Sstevel@tonic-gate 		/*
31807c478bd9Sstevel@tonic-gate 		 * At this point, opt_len and static_len are the total
31817c478bd9Sstevel@tonic-gate 		 * bit lengths of the compressed block data, excluding
31827c478bd9Sstevel@tonic-gate 		 * the tree representations.
31837c478bd9Sstevel@tonic-gate 		 */
31847c478bd9Sstevel@tonic-gate 
31857c478bd9Sstevel@tonic-gate 		/*
31867c478bd9Sstevel@tonic-gate 		 * Build the bit length tree for the above two trees,
31877c478bd9Sstevel@tonic-gate 		 * and get the index in bl_order of the last bit
31887c478bd9Sstevel@tonic-gate 		 * length code to send.
31897c478bd9Sstevel@tonic-gate 		 */
31907c478bd9Sstevel@tonic-gate 		max_blindex = build_bl_tree(s);
31917c478bd9Sstevel@tonic-gate 
31927c478bd9Sstevel@tonic-gate 		/*
31937c478bd9Sstevel@tonic-gate 		 * Determine the best encoding. Compute first the
31947c478bd9Sstevel@tonic-gate 		 * block length in bytes
31957c478bd9Sstevel@tonic-gate 		 */
31967c478bd9Sstevel@tonic-gate 		opt_lenb = (s->opt_len+3+7)>>3;
31977c478bd9Sstevel@tonic-gate 		static_lenb = (s->static_len+3+7)>>3;
31987c478bd9Sstevel@tonic-gate 
31997c478bd9Sstevel@tonic-gate 		Tracev((stderr,
32007c478bd9Sstevel@tonic-gate 		    "\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u ",
32017c478bd9Sstevel@tonic-gate 		    opt_lenb, s->opt_len, static_lenb, s->static_len,
32027c478bd9Sstevel@tonic-gate 		    stored_len, s->last_lit));
32037c478bd9Sstevel@tonic-gate 
32047c478bd9Sstevel@tonic-gate 		if (static_lenb <= opt_lenb) opt_lenb = static_lenb;
32057c478bd9Sstevel@tonic-gate 
32067c478bd9Sstevel@tonic-gate 	} else {
32077c478bd9Sstevel@tonic-gate 		Assert(buf != (char *)0, "lost buf");
32087c478bd9Sstevel@tonic-gate 		/* force a stored block */
32097c478bd9Sstevel@tonic-gate 		opt_lenb = static_lenb = stored_len + 5;
32107c478bd9Sstevel@tonic-gate 	}
32117c478bd9Sstevel@tonic-gate 
32127c478bd9Sstevel@tonic-gate 	/*
32137c478bd9Sstevel@tonic-gate 	 * If compression failed and this is the first and last block,
32147c478bd9Sstevel@tonic-gate 	 * and if the .zip file can be seeked (to rewrite the local
32157c478bd9Sstevel@tonic-gate 	 * header), the whole file is transformed into a stored file:
32167c478bd9Sstevel@tonic-gate 	 */
32177c478bd9Sstevel@tonic-gate #ifdef STORED_FILE_OK
32187c478bd9Sstevel@tonic-gate #ifdef FORCE_STORED_FILE
32197c478bd9Sstevel@tonic-gate #define	FRC_STR_COND	eof && s->compressed_len == 0L /* force stored file */
32207c478bd9Sstevel@tonic-gate #else
32217c478bd9Sstevel@tonic-gate #define	FRC_STR_COND	stored_len <= opt_lenb && eof && \
32227c478bd9Sstevel@tonic-gate 			s->compressed_len == 0L && seekable()
32237c478bd9Sstevel@tonic-gate #endif
32247c478bd9Sstevel@tonic-gate 	if (FRC_STR_COND) {
32257c478bd9Sstevel@tonic-gate #undef FRC_STR_COND
32267c478bd9Sstevel@tonic-gate 		/*
32277c478bd9Sstevel@tonic-gate 		 * Since LIT_BUFSIZE <= 2*WSIZE, the input data must
32287c478bd9Sstevel@tonic-gate 		 * be there:
32297c478bd9Sstevel@tonic-gate 		 */
32307c478bd9Sstevel@tonic-gate 		if (buf == (charf*)0) error("block vanished");
32317c478bd9Sstevel@tonic-gate 
32327c478bd9Sstevel@tonic-gate 		/* without header */
32337c478bd9Sstevel@tonic-gate 		copy_block(s, buf, (unsigned)stored_len, 0);
32347c478bd9Sstevel@tonic-gate 		s->compressed_len = stored_len << 3;
32357c478bd9Sstevel@tonic-gate 		s->method = STORED;
32367c478bd9Sstevel@tonic-gate 	} else
32377c478bd9Sstevel@tonic-gate #endif /* STORED_FILE_OK */
32387c478bd9Sstevel@tonic-gate 
32397c478bd9Sstevel@tonic-gate #ifdef FORCE_STORED
32407c478bd9Sstevel@tonic-gate #define	FRC_STR_COND	buf != (char *)0	/* force stored block */
32417c478bd9Sstevel@tonic-gate #else
32427c478bd9Sstevel@tonic-gate 			/* 4: two words for the lengths */
32437c478bd9Sstevel@tonic-gate #define	FRC_STR_COND	stored_len+4 <= opt_lenb && buf != (char *)0
32447c478bd9Sstevel@tonic-gate #endif
32457c478bd9Sstevel@tonic-gate 		if (FRC_STR_COND) {
32467c478bd9Sstevel@tonic-gate #undef FRC_STR_COND
32477c478bd9Sstevel@tonic-gate 			/*
32487c478bd9Sstevel@tonic-gate 			 * The test buf != NULL is only necessary if
32497c478bd9Sstevel@tonic-gate 			 * LIT_BUFSIZE > WSIZE.  Otherwise we can't
32507c478bd9Sstevel@tonic-gate 			 * have processed more than WSIZE input bytes
32517c478bd9Sstevel@tonic-gate 			 * since the last block flush, because
32527c478bd9Sstevel@tonic-gate 			 * compression would have been successful. If
32537c478bd9Sstevel@tonic-gate 			 * LIT_BUFSIZE <= WSIZE, it is never too late
32547c478bd9Sstevel@tonic-gate 			 * to transform a block into a stored block.
32557c478bd9Sstevel@tonic-gate 			 */
32567c478bd9Sstevel@tonic-gate 			_tr_stored_block(s, buf, stored_len, eof);
32577c478bd9Sstevel@tonic-gate #ifdef FORCE_STATIC
32587c478bd9Sstevel@tonic-gate #define	FRC_STAT_COND	static_lenb >= 0 /* force static trees */
32597c478bd9Sstevel@tonic-gate #else
32607c478bd9Sstevel@tonic-gate #define	FRC_STAT_COND	static_lenb == opt_lenb
32617c478bd9Sstevel@tonic-gate #endif
32627c478bd9Sstevel@tonic-gate 		} else if (FRC_STAT_COND) {
32637c478bd9Sstevel@tonic-gate #undef FRC_STAT_COND
32647c478bd9Sstevel@tonic-gate 			send_bits(s, (STATIC_TREES<<1)+eof, 3);
32657c478bd9Sstevel@tonic-gate 			compress_block(s, (ct_data *)static_ltree,
32667c478bd9Sstevel@tonic-gate 			    (ct_data *)static_dtree);
32677c478bd9Sstevel@tonic-gate 			s->compressed_len += 3 + s->static_len;	/* PPP */
32687c478bd9Sstevel@tonic-gate 		} else {
32697c478bd9Sstevel@tonic-gate 			send_bits(s, (DYN_TREES<<1)+eof, 3);
32707c478bd9Sstevel@tonic-gate 			send_all_trees(s, s->l_desc.max_code+1,
32717c478bd9Sstevel@tonic-gate 			    s->d_desc.max_code+1,
32727c478bd9Sstevel@tonic-gate 			    max_blindex+1);
32737c478bd9Sstevel@tonic-gate 			compress_block(s, (ct_data *)s->dyn_ltree,
32747c478bd9Sstevel@tonic-gate 			    (ct_data *)s->dyn_dtree);
32757c478bd9Sstevel@tonic-gate 			s->compressed_len += 3 + s->opt_len;	/* PPP */
32767c478bd9Sstevel@tonic-gate 		}
32777c478bd9Sstevel@tonic-gate #ifdef DEBUG_ZLIB
32787c478bd9Sstevel@tonic-gate 	Assert(s->compressed_len == s->bits_sent, "bad compressed size");
32797c478bd9Sstevel@tonic-gate #endif
32807c478bd9Sstevel@tonic-gate 	/*
32817c478bd9Sstevel@tonic-gate 	 * The above check is made mod 2^32, for files larger than 512
32827c478bd9Sstevel@tonic-gate 	 * MB and uLong implemented on 32 bits.
32837c478bd9Sstevel@tonic-gate 	 */
32847c478bd9Sstevel@tonic-gate 	init_block(s);
32857c478bd9Sstevel@tonic-gate 
32867c478bd9Sstevel@tonic-gate 	if (eof) {
32877c478bd9Sstevel@tonic-gate 		bi_windup(s);
32887c478bd9Sstevel@tonic-gate 		s->compressed_len += 7;	/* align on byte boundary PPP */
32897c478bd9Sstevel@tonic-gate 	}
32907c478bd9Sstevel@tonic-gate 	Tracev((stderr, "\ncomprlen %lu(%lu) ", s->compressed_len>>3,
32917c478bd9Sstevel@tonic-gate 	    s->compressed_len-7*eof));
32927c478bd9Sstevel@tonic-gate 
32937c478bd9Sstevel@tonic-gate 	/* return (s->compressed_len >> 3); */
32947c478bd9Sstevel@tonic-gate }
32957c478bd9Sstevel@tonic-gate 
32967c478bd9Sstevel@tonic-gate /*
32977c478bd9Sstevel@tonic-gate  * ===========================================================================
32987c478bd9Sstevel@tonic-gate  * Save the match info and tally the frequency counts. Return true if
32997c478bd9Sstevel@tonic-gate  * the current block must be flushed.
33007c478bd9Sstevel@tonic-gate  */
33017c478bd9Sstevel@tonic-gate int
_tr_tally(s,dist,lc)33027c478bd9Sstevel@tonic-gate _tr_tally(s, dist, lc)
33037c478bd9Sstevel@tonic-gate     deflate_state *s;
33047c478bd9Sstevel@tonic-gate     unsigned dist;	/* distance of matched string */
33057c478bd9Sstevel@tonic-gate 	/* match length-MIN_MATCH or unmatched char (if dist==0) */
33067c478bd9Sstevel@tonic-gate     unsigned lc;
33077c478bd9Sstevel@tonic-gate {
33087c478bd9Sstevel@tonic-gate 	s->d_buf[s->last_lit] = (ush)dist;
33097c478bd9Sstevel@tonic-gate 	s->l_buf[s->last_lit++] = (uch)lc;
33107c478bd9Sstevel@tonic-gate 	if (dist == 0) {
33117c478bd9Sstevel@tonic-gate 		/* lc is the unmatched char */
33127c478bd9Sstevel@tonic-gate 		s->dyn_ltree[lc].Freq++;
33137c478bd9Sstevel@tonic-gate 	} else {
33147c478bd9Sstevel@tonic-gate 		s->matches++;
33157c478bd9Sstevel@tonic-gate 		/* Here, lc is the match length - MIN_MATCH */
33167c478bd9Sstevel@tonic-gate 		dist--;	/* dist = match distance - 1 */
33177c478bd9Sstevel@tonic-gate 		Assert((ush)dist < (ush)MAX_DIST(s) &&
33187c478bd9Sstevel@tonic-gate 		    (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
33197c478bd9Sstevel@tonic-gate 		    (ush)d_code(dist) < (ush)D_CODES,  "_tr_tally: bad match");
33207c478bd9Sstevel@tonic-gate 
33217c478bd9Sstevel@tonic-gate 		s->dyn_ltree[_length_code[lc]+LITERALS+1].Freq++;
33227c478bd9Sstevel@tonic-gate 		s->dyn_dtree[d_code(dist)].Freq++;
33237c478bd9Sstevel@tonic-gate 	}
33247c478bd9Sstevel@tonic-gate 
33257c478bd9Sstevel@tonic-gate #ifdef TRUNCATE_BLOCK
33267c478bd9Sstevel@tonic-gate 	/* Try to guess if it is profitable to stop the current block here */
33277c478bd9Sstevel@tonic-gate 	if ((s->last_lit & 0x1fff) == 0 && s->level > 2) {
33287c478bd9Sstevel@tonic-gate 		/* Compute an upper bound for the compressed length */
33297c478bd9Sstevel@tonic-gate 		ulg out_length = (ulg)s->last_lit*8L;
33307c478bd9Sstevel@tonic-gate 		ulg in_length = (ulg)((long)s->strstart - s->block_start);
33317c478bd9Sstevel@tonic-gate 		int dcode;
33327c478bd9Sstevel@tonic-gate 		for (dcode = 0; dcode < D_CODES; dcode++) {
33337c478bd9Sstevel@tonic-gate 			out_length += (ulg)s->dyn_dtree[dcode].Freq *
33347c478bd9Sstevel@tonic-gate 			    (5L+extra_dbits[dcode]);
33357c478bd9Sstevel@tonic-gate 		}
33367c478bd9Sstevel@tonic-gate 		out_length >>= 3;
33377c478bd9Sstevel@tonic-gate 		Tracev((stderr, "\nlast_lit %u, in %ld, out ~%ld(%ld%%) ",
33387c478bd9Sstevel@tonic-gate 		    s->last_lit, in_length, out_length,
33397c478bd9Sstevel@tonic-gate 		    100L - out_length*100L/in_length));
33407c478bd9Sstevel@tonic-gate 		if (s->matches < s->last_lit/2 && out_length < in_length/2)
33417c478bd9Sstevel@tonic-gate 			return (1);
33427c478bd9Sstevel@tonic-gate 	}
33437c478bd9Sstevel@tonic-gate #endif
33447c478bd9Sstevel@tonic-gate 	return (s->last_lit == s->lit_bufsize-1);
33457c478bd9Sstevel@tonic-gate 	/*
33467c478bd9Sstevel@tonic-gate 	 * We avoid equality with lit_bufsize because of wraparound at 64K
33477c478bd9Sstevel@tonic-gate 	 * on 16 bit machines and because stored blocks are restricted to
33487c478bd9Sstevel@tonic-gate 	 * 64K-1 bytes.
33497c478bd9Sstevel@tonic-gate 	 */
33507c478bd9Sstevel@tonic-gate }
33517c478bd9Sstevel@tonic-gate 
33527c478bd9Sstevel@tonic-gate /*
33537c478bd9Sstevel@tonic-gate  * ===========================================================================
33547c478bd9Sstevel@tonic-gate  * Send the block data compressed using the given Huffman trees
33557c478bd9Sstevel@tonic-gate  */
33567c478bd9Sstevel@tonic-gate local void
compress_block(s,ltree,dtree)33577c478bd9Sstevel@tonic-gate compress_block(s, ltree, dtree)
33587c478bd9Sstevel@tonic-gate     deflate_state *s;
33597c478bd9Sstevel@tonic-gate     ct_data *ltree;	/* literal tree */
33607c478bd9Sstevel@tonic-gate     ct_data *dtree;	/* distance tree */
33617c478bd9Sstevel@tonic-gate {
33627c478bd9Sstevel@tonic-gate 	unsigned dist;	/* distance of matched string */
33637c478bd9Sstevel@tonic-gate 	int lc;	/* match length or unmatched char (if dist == 0) */
33647c478bd9Sstevel@tonic-gate 	unsigned lx = 0;	/* running index in l_buf */
33657c478bd9Sstevel@tonic-gate 	unsigned code;	/* the code to send */
33667c478bd9Sstevel@tonic-gate 	int extra;	/* number of extra bits to send */
33677c478bd9Sstevel@tonic-gate 
33687c478bd9Sstevel@tonic-gate 	if (s->last_lit != 0) do {
33697c478bd9Sstevel@tonic-gate 		dist = s->d_buf[lx];
33707c478bd9Sstevel@tonic-gate 		lc = s->l_buf[lx++];
33717c478bd9Sstevel@tonic-gate 		if (dist == 0) {
33727c478bd9Sstevel@tonic-gate 			/* send a literal byte */
33737c478bd9Sstevel@tonic-gate 			send_code(s, lc, ltree);
33747c478bd9Sstevel@tonic-gate 			Tracecv(isgraph(lc), (stderr, " '%c' ", lc));
33757c478bd9Sstevel@tonic-gate 		} else {
33767c478bd9Sstevel@tonic-gate 			/* Here, lc is the match length - MIN_MATCH */
33777c478bd9Sstevel@tonic-gate 			code = _length_code[lc];
33787c478bd9Sstevel@tonic-gate 			/* send the length code */
33797c478bd9Sstevel@tonic-gate 			send_code(s, code+LITERALS+1, ltree);
33807c478bd9Sstevel@tonic-gate 			extra = extra_lbits[code];
33817c478bd9Sstevel@tonic-gate 			if (extra != 0) {
33827c478bd9Sstevel@tonic-gate 				lc -= base_length[code];
33837c478bd9Sstevel@tonic-gate 				/* send the extra length bits */
33847c478bd9Sstevel@tonic-gate 				send_bits(s, lc, extra);
33857c478bd9Sstevel@tonic-gate 			}
33867c478bd9Sstevel@tonic-gate 			/* dist is now the match distance - 1 */
33877c478bd9Sstevel@tonic-gate 			dist--;
33887c478bd9Sstevel@tonic-gate 			code = d_code(dist);
33897c478bd9Sstevel@tonic-gate 			Assert(code < D_CODES, "bad d_code");
33907c478bd9Sstevel@tonic-gate 
33917c478bd9Sstevel@tonic-gate 			/* send the distance code */
33927c478bd9Sstevel@tonic-gate 			send_code(s, code, dtree);
33937c478bd9Sstevel@tonic-gate 			extra = extra_dbits[code];
33947c478bd9Sstevel@tonic-gate 			if (extra != 0) {
33957c478bd9Sstevel@tonic-gate 				dist -= base_dist[code];
33967c478bd9Sstevel@tonic-gate 				/* send the extra distance bits */
33977c478bd9Sstevel@tonic-gate 				send_bits(s, dist, extra);
33987c478bd9Sstevel@tonic-gate 			}
33997c478bd9Sstevel@tonic-gate 		} /* literal or match pair ? */
34007c478bd9Sstevel@tonic-gate 
34017c478bd9Sstevel@tonic-gate 		/*
34027c478bd9Sstevel@tonic-gate 		 * Check that the overlay between pending_buf and
34037c478bd9Sstevel@tonic-gate 		 * d_buf+l_buf is ok:
34047c478bd9Sstevel@tonic-gate 		 */
34057c478bd9Sstevel@tonic-gate 		Assert(s->pending < s->lit_bufsize + 2*lx,
34067c478bd9Sstevel@tonic-gate 		    "pendingBuf overflow");
34077c478bd9Sstevel@tonic-gate 
34087c478bd9Sstevel@tonic-gate 	} while (lx < s->last_lit);
34097c478bd9Sstevel@tonic-gate 
34107c478bd9Sstevel@tonic-gate 	send_code(s, END_BLOCK, ltree);
34117c478bd9Sstevel@tonic-gate 	s->last_eob_len = ltree[END_BLOCK].Len;
34127c478bd9Sstevel@tonic-gate }
34137c478bd9Sstevel@tonic-gate 
34147c478bd9Sstevel@tonic-gate /*
34157c478bd9Sstevel@tonic-gate  * ===========================================================================
34167c478bd9Sstevel@tonic-gate  * Set the data type to ASCII or BINARY, using a crude approximation:
34177c478bd9Sstevel@tonic-gate  * binary if more than 20% of the bytes are <= 6 or >= 128, ascii otherwise.
34187c478bd9Sstevel@tonic-gate  * IN assertion: the fields freq of dyn_ltree are set and the total of all
34197c478bd9Sstevel@tonic-gate  * frequencies does not exceed 64K (to fit in an int on 16 bit machines).
34207c478bd9Sstevel@tonic-gate  */
34217c478bd9Sstevel@tonic-gate local void
set_data_type(s)34227c478bd9Sstevel@tonic-gate set_data_type(s)
34237c478bd9Sstevel@tonic-gate     deflate_state *s;
34247c478bd9Sstevel@tonic-gate {
34257c478bd9Sstevel@tonic-gate 	int n = 0;
34267c478bd9Sstevel@tonic-gate 	unsigned ascii_freq = 0;
34277c478bd9Sstevel@tonic-gate 	unsigned bin_freq = 0;
34287c478bd9Sstevel@tonic-gate 	while (n < 7)	bin_freq	+= s->dyn_ltree[n++].Freq;
34297c478bd9Sstevel@tonic-gate 	while (n < 128)	ascii_freq	+= s->dyn_ltree[n++].Freq;
34307c478bd9Sstevel@tonic-gate 	while (n < LITERALS) bin_freq	+= s->dyn_ltree[n++].Freq;
34317c478bd9Sstevel@tonic-gate 	s->data_type = (Byte)(bin_freq > (ascii_freq >> 2) ?
34327c478bd9Sstevel@tonic-gate 	    Z_BINARY : Z_ASCII);
34337c478bd9Sstevel@tonic-gate }
34347c478bd9Sstevel@tonic-gate 
34357c478bd9Sstevel@tonic-gate /*
34367c478bd9Sstevel@tonic-gate  * ===========================================================================
34377c478bd9Sstevel@tonic-gate  * Reverse the first len bits of a code, using straightforward code (a faster
34387c478bd9Sstevel@tonic-gate  * method would use a table)
34397c478bd9Sstevel@tonic-gate  * IN assertion: 1 <= len <= 15
34407c478bd9Sstevel@tonic-gate  */
34417c478bd9Sstevel@tonic-gate local unsigned
bi_reverse(code,len)34427c478bd9Sstevel@tonic-gate bi_reverse(code, len)
34437c478bd9Sstevel@tonic-gate     unsigned code;	/* the value to invert */
34447c478bd9Sstevel@tonic-gate     int len;	/* its bit length */
34457c478bd9Sstevel@tonic-gate {
34467c478bd9Sstevel@tonic-gate 	register unsigned res = 0;
34477c478bd9Sstevel@tonic-gate 	do {
34487c478bd9Sstevel@tonic-gate 		res |= code & 1;
34497c478bd9Sstevel@tonic-gate 		code >>= 1, res <<= 1;
34507c478bd9Sstevel@tonic-gate 	} while (--len > 0);
34517c478bd9Sstevel@tonic-gate 	return (res >> 1);
34527c478bd9Sstevel@tonic-gate }
34537c478bd9Sstevel@tonic-gate 
34547c478bd9Sstevel@tonic-gate /*
34557c478bd9Sstevel@tonic-gate  * ===========================================================================
34567c478bd9Sstevel@tonic-gate  * Flush the bit buffer, keeping at most 7 bits in it.
34577c478bd9Sstevel@tonic-gate  */
34587c478bd9Sstevel@tonic-gate local void
bi_flush(s)34597c478bd9Sstevel@tonic-gate bi_flush(s)
34607c478bd9Sstevel@tonic-gate     deflate_state *s;
34617c478bd9Sstevel@tonic-gate {
34627c478bd9Sstevel@tonic-gate 	if (s->bi_valid == 16) {
34637c478bd9Sstevel@tonic-gate 		put_short(s, s->bi_buf);
34647c478bd9Sstevel@tonic-gate 		s->bi_buf = 0;
34657c478bd9Sstevel@tonic-gate 		s->bi_valid = 0;
34667c478bd9Sstevel@tonic-gate 	} else if (s->bi_valid >= 8) {
34677c478bd9Sstevel@tonic-gate 		put_byte(s, (Byte)s->bi_buf);
34687c478bd9Sstevel@tonic-gate 		s->bi_buf >>= 8;
34697c478bd9Sstevel@tonic-gate 		s->bi_valid -= 8;
34707c478bd9Sstevel@tonic-gate 	}
34717c478bd9Sstevel@tonic-gate }
34727c478bd9Sstevel@tonic-gate 
34737c478bd9Sstevel@tonic-gate /*
34747c478bd9Sstevel@tonic-gate  * ===========================================================================
34757c478bd9Sstevel@tonic-gate  * Flush the bit buffer and align the output on a byte boundary
34767c478bd9Sstevel@tonic-gate  */
34777c478bd9Sstevel@tonic-gate local void
bi_windup(s)34787c478bd9Sstevel@tonic-gate bi_windup(s)
34797c478bd9Sstevel@tonic-gate     deflate_state *s;
34807c478bd9Sstevel@tonic-gate {
34817c478bd9Sstevel@tonic-gate 	if (s->bi_valid > 8) {
34827c478bd9Sstevel@tonic-gate 		put_short(s, s->bi_buf);
34837c478bd9Sstevel@tonic-gate 	} else if (s->bi_valid > 0) {
34847c478bd9Sstevel@tonic-gate 		put_byte(s, (Byte)s->bi_buf);
34857c478bd9Sstevel@tonic-gate 	}
34867c478bd9Sstevel@tonic-gate 	s->bi_buf = 0;
34877c478bd9Sstevel@tonic-gate 	s->bi_valid = 0;
34887c478bd9Sstevel@tonic-gate #ifdef DEBUG_ZLIB
34897c478bd9Sstevel@tonic-gate 	s->bits_sent = (s->bits_sent+7) & ~7;
34907c478bd9Sstevel@tonic-gate #endif
34917c478bd9Sstevel@tonic-gate }
34927c478bd9Sstevel@tonic-gate 
34937c478bd9Sstevel@tonic-gate /*
34947c478bd9Sstevel@tonic-gate  * ===========================================================================
34957c478bd9Sstevel@tonic-gate  * Copy a stored block, storing first the length and its
34967c478bd9Sstevel@tonic-gate  * one's complement if requested.
34977c478bd9Sstevel@tonic-gate  */
34987c478bd9Sstevel@tonic-gate local void
copy_block(s,buf,len,header)34997c478bd9Sstevel@tonic-gate copy_block(s, buf, len, header)
35007c478bd9Sstevel@tonic-gate     deflate_state *s;
35017c478bd9Sstevel@tonic-gate     charf    *buf;	/* the input data */
35027c478bd9Sstevel@tonic-gate     unsigned len;	/* its length */
35037c478bd9Sstevel@tonic-gate     int	header;	/* true if block header must be written */
35047c478bd9Sstevel@tonic-gate {
35057c478bd9Sstevel@tonic-gate 	bi_windup(s);	/* align on byte boundary */
35067c478bd9Sstevel@tonic-gate 	s->last_eob_len = 8;	/* enough lookahead for inflate */
35077c478bd9Sstevel@tonic-gate 
35087c478bd9Sstevel@tonic-gate 	if (header) {
35097c478bd9Sstevel@tonic-gate 		put_short(s, (ush)len);
35107c478bd9Sstevel@tonic-gate 		put_short(s, (ush)~len);
35117c478bd9Sstevel@tonic-gate #ifdef DEBUG_ZLIB
35127c478bd9Sstevel@tonic-gate 		s->bits_sent += 2*16;
35137c478bd9Sstevel@tonic-gate #endif
35147c478bd9Sstevel@tonic-gate 	}
35157c478bd9Sstevel@tonic-gate #ifdef DEBUG_ZLIB
35167c478bd9Sstevel@tonic-gate 	s->bits_sent += (ulg)len<<3;
35177c478bd9Sstevel@tonic-gate #endif
35187c478bd9Sstevel@tonic-gate 	/* bundle up the put_byte(s, *buf++) calls PPP */
35197c478bd9Sstevel@tonic-gate 	Assert(s->pending + len < s->pending_buf_size, "pending_buf overrun");
35207c478bd9Sstevel@tonic-gate 	zmemcpy(&s->pending_buf[s->pending], buf, len);	/* PPP */
35217c478bd9Sstevel@tonic-gate 	s->pending += len;				/* PPP */
35227c478bd9Sstevel@tonic-gate }
35237c478bd9Sstevel@tonic-gate /* --- trees.c */
35247c478bd9Sstevel@tonic-gate 
35257c478bd9Sstevel@tonic-gate /* +++ inflate.c */
35267c478bd9Sstevel@tonic-gate /*
35277c478bd9Sstevel@tonic-gate  * inflate.c -- zlib interface to inflate modules
35287c478bd9Sstevel@tonic-gate  * Copyright (C) 1995-1998 Mark Adler
35297c478bd9Sstevel@tonic-gate  * For conditions of distribution and use, see copyright notice in zlib.h
35307c478bd9Sstevel@tonic-gate  */
35317c478bd9Sstevel@tonic-gate 
35327c478bd9Sstevel@tonic-gate /* #include "zutil.h" */
35337c478bd9Sstevel@tonic-gate 
35347c478bd9Sstevel@tonic-gate /* +++ infblock.h */
35357c478bd9Sstevel@tonic-gate /*
35367c478bd9Sstevel@tonic-gate  * infblock.h -- header to use infblock.c
35377c478bd9Sstevel@tonic-gate  * Copyright (C) 1995-1998 Mark Adler
35387c478bd9Sstevel@tonic-gate  * For conditions of distribution and use, see copyright notice in zlib.h
35397c478bd9Sstevel@tonic-gate  */
35407c478bd9Sstevel@tonic-gate 
35417c478bd9Sstevel@tonic-gate /*
35427c478bd9Sstevel@tonic-gate  * WARNING: this file should *not* be used by applications. It is part
35437c478bd9Sstevel@tonic-gate  * of the implementation of the compression library and is subject to
35447c478bd9Sstevel@tonic-gate  * change. Applications should only use zlib.h.
35457c478bd9Sstevel@tonic-gate  */
35467c478bd9Sstevel@tonic-gate 
35477c478bd9Sstevel@tonic-gate struct inflate_blocks_state;
35487c478bd9Sstevel@tonic-gate typedef struct inflate_blocks_state FAR inflate_blocks_statef;
35497c478bd9Sstevel@tonic-gate 
35507c478bd9Sstevel@tonic-gate extern inflate_blocks_statef * inflate_blocks_new OF((
35517c478bd9Sstevel@tonic-gate     z_streamp z,
35527c478bd9Sstevel@tonic-gate     check_func c,	/* check function */
35537c478bd9Sstevel@tonic-gate     uInt w));	/* window size */
35547c478bd9Sstevel@tonic-gate 
35557c478bd9Sstevel@tonic-gate extern int inflate_blocks OF((
35567c478bd9Sstevel@tonic-gate     inflate_blocks_statef *,
35577c478bd9Sstevel@tonic-gate     z_streamp,
35587c478bd9Sstevel@tonic-gate     int));	/* initial return code */
35597c478bd9Sstevel@tonic-gate 
35607c478bd9Sstevel@tonic-gate extern void inflate_blocks_reset OF((
35617c478bd9Sstevel@tonic-gate     inflate_blocks_statef *,
35627c478bd9Sstevel@tonic-gate     z_streamp,
35637c478bd9Sstevel@tonic-gate     uLongf *));	/* check value on output */
35647c478bd9Sstevel@tonic-gate 
35657c478bd9Sstevel@tonic-gate extern int inflate_blocks_free OF((
35667c478bd9Sstevel@tonic-gate     inflate_blocks_statef *,
35677c478bd9Sstevel@tonic-gate     z_streamp));
35687c478bd9Sstevel@tonic-gate 
35697c478bd9Sstevel@tonic-gate extern void inflate_set_dictionary OF((
35707c478bd9Sstevel@tonic-gate     inflate_blocks_statef *s,
35717c478bd9Sstevel@tonic-gate     const Bytef *d,  /* dictionary */
35727c478bd9Sstevel@tonic-gate     uInt  n));	/* dictionary length */
35737c478bd9Sstevel@tonic-gate 
35747c478bd9Sstevel@tonic-gate extern int inflate_blocks_sync_point OF((
35757c478bd9Sstevel@tonic-gate     inflate_blocks_statef *s));
35767c478bd9Sstevel@tonic-gate 
35777c478bd9Sstevel@tonic-gate /* PPP -- added function */
35787c478bd9Sstevel@tonic-gate extern int inflate_addhistory OF((
35797c478bd9Sstevel@tonic-gate     inflate_blocks_statef *,
35807c478bd9Sstevel@tonic-gate     z_streamp));
35817c478bd9Sstevel@tonic-gate 
35827c478bd9Sstevel@tonic-gate /* PPP -- added function */
35837c478bd9Sstevel@tonic-gate extern int inflate_packet_flush OF((
35847c478bd9Sstevel@tonic-gate     inflate_blocks_statef *));
35857c478bd9Sstevel@tonic-gate /* --- infblock.h */
35867c478bd9Sstevel@tonic-gate 
35877c478bd9Sstevel@tonic-gate #ifndef NO_DUMMY_DECL
35887c478bd9Sstevel@tonic-gate struct inflate_blocks_state {int dummy; };	/* for buggy compilers */
35897c478bd9Sstevel@tonic-gate #endif
35907c478bd9Sstevel@tonic-gate 
35917c478bd9Sstevel@tonic-gate /* inflate private state */
35927c478bd9Sstevel@tonic-gate struct internal_state {
35937c478bd9Sstevel@tonic-gate 
35947c478bd9Sstevel@tonic-gate 	/* mode */
35957c478bd9Sstevel@tonic-gate 	enum {
35967c478bd9Sstevel@tonic-gate 		METHOD,	/* waiting for method byte */
35977c478bd9Sstevel@tonic-gate 		FLAG,	/* waiting for flag byte */
35987c478bd9Sstevel@tonic-gate 		DICT4,	/* four dictionary check bytes to go */
35997c478bd9Sstevel@tonic-gate 		DICT3,	/* three dictionary check bytes to go */
36007c478bd9Sstevel@tonic-gate 		DICT2,	/* two dictionary check bytes to go */
36017c478bd9Sstevel@tonic-gate 		DICT1,	/* one dictionary check byte to go */
36027c478bd9Sstevel@tonic-gate 		DICT0,	/* waiting for inflateSetDictionary */
36037c478bd9Sstevel@tonic-gate 		BLOCKS,	/* decompressing blocks */
36047c478bd9Sstevel@tonic-gate 		CHECK4,	/* four check bytes to go */
36057c478bd9Sstevel@tonic-gate 		CHECK3,	/* three check bytes to go */
36067c478bd9Sstevel@tonic-gate 		CHECK2,	/* two check bytes to go */
36077c478bd9Sstevel@tonic-gate 		CHECK1,	/* one check byte to go */
36087c478bd9Sstevel@tonic-gate 		DONE,	/* finished check, done */
36097c478bd9Sstevel@tonic-gate 		BAD}	/* got an error--stay here */
36107c478bd9Sstevel@tonic-gate 	mode;	/* current inflate mode */
36117c478bd9Sstevel@tonic-gate 
36127c478bd9Sstevel@tonic-gate 	/* mode dependent information */
36137c478bd9Sstevel@tonic-gate 	union {
36147c478bd9Sstevel@tonic-gate 		uInt method;	/* if FLAGS, method byte */
36157c478bd9Sstevel@tonic-gate 		struct {
36167c478bd9Sstevel@tonic-gate 			uLong was;	/* computed check value */
36177c478bd9Sstevel@tonic-gate 			uLong need;	/* stream check value */
36187c478bd9Sstevel@tonic-gate 		} check;	/* if CHECK, check values to compare */
36197c478bd9Sstevel@tonic-gate 		uInt marker;	/* if BAD, inflateSync's marker bytes count */
36207c478bd9Sstevel@tonic-gate 	} sub;	/* submode */
36217c478bd9Sstevel@tonic-gate 
36227c478bd9Sstevel@tonic-gate 	/* mode independent information */
36237c478bd9Sstevel@tonic-gate 	int  nowrap;	/* flag for no wrapper */
36247c478bd9Sstevel@tonic-gate 	uInt wbits;	/* log2(window size)  (8..15, defaults to 15) */
36257c478bd9Sstevel@tonic-gate 	/* current inflate_blocks state */
36267c478bd9Sstevel@tonic-gate 	inflate_blocks_statef *blocks;
36277c478bd9Sstevel@tonic-gate };
36287c478bd9Sstevel@tonic-gate 
36297c478bd9Sstevel@tonic-gate 
36307c478bd9Sstevel@tonic-gate int
inflateReset(z)36317c478bd9Sstevel@tonic-gate inflateReset(z)
36327c478bd9Sstevel@tonic-gate z_streamp z;
36337c478bd9Sstevel@tonic-gate {
36347c478bd9Sstevel@tonic-gate 	if (z == Z_NULL || z->state == Z_NULL)
36357c478bd9Sstevel@tonic-gate 		return (Z_STREAM_ERROR);
36367c478bd9Sstevel@tonic-gate 	z->total_in = z->total_out = 0;
36377c478bd9Sstevel@tonic-gate 	z->msg = Z_NULL;
36387c478bd9Sstevel@tonic-gate 	z->state->mode = z->state->nowrap ? BLOCKS : METHOD;
36397c478bd9Sstevel@tonic-gate 	inflate_blocks_reset(z->state->blocks, z, Z_NULL);
36407c478bd9Sstevel@tonic-gate 	Trace((stderr, "inflate: reset\n"));
36417c478bd9Sstevel@tonic-gate 	return (Z_OK);
36427c478bd9Sstevel@tonic-gate }
36437c478bd9Sstevel@tonic-gate 
36447c478bd9Sstevel@tonic-gate 
36457c478bd9Sstevel@tonic-gate int
inflateEnd(z)36467c478bd9Sstevel@tonic-gate inflateEnd(z)
36477c478bd9Sstevel@tonic-gate z_streamp z;
36487c478bd9Sstevel@tonic-gate {
36497c478bd9Sstevel@tonic-gate 	if (z == Z_NULL || z->state == Z_NULL || z->zfree == Z_NULL)
36507c478bd9Sstevel@tonic-gate 		return (Z_STREAM_ERROR);
36517c478bd9Sstevel@tonic-gate 	if (z->state->blocks != Z_NULL) {
36527c478bd9Sstevel@tonic-gate 		(void) inflate_blocks_free(z->state->blocks, z);
36537c478bd9Sstevel@tonic-gate 		z->state->blocks = Z_NULL;
36547c478bd9Sstevel@tonic-gate 	}
36557c478bd9Sstevel@tonic-gate 	ZFREE(z, z->state);
36567c478bd9Sstevel@tonic-gate 	z->state = Z_NULL;
36577c478bd9Sstevel@tonic-gate 	Trace((stderr, "inflate: end\n"));
36587c478bd9Sstevel@tonic-gate 	return (Z_OK);
36597c478bd9Sstevel@tonic-gate }
36607c478bd9Sstevel@tonic-gate 
36617c478bd9Sstevel@tonic-gate 
36627c478bd9Sstevel@tonic-gate int
inflateInit2_(z,w,version,stream_size)36637c478bd9Sstevel@tonic-gate inflateInit2_(z, w, version, stream_size)
36647c478bd9Sstevel@tonic-gate z_streamp z;
36657c478bd9Sstevel@tonic-gate int w;
36667c478bd9Sstevel@tonic-gate const char *version;
36677c478bd9Sstevel@tonic-gate int stream_size;
36687c478bd9Sstevel@tonic-gate {
36697c478bd9Sstevel@tonic-gate 	if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
36707c478bd9Sstevel@tonic-gate 	    stream_size != sizeof (z_stream))
36717c478bd9Sstevel@tonic-gate 		return (Z_VERSION_ERROR);
36727c478bd9Sstevel@tonic-gate 
36737c478bd9Sstevel@tonic-gate 	/* initialize state */
36747c478bd9Sstevel@tonic-gate 	if (z == Z_NULL)
36757c478bd9Sstevel@tonic-gate 		return (Z_STREAM_ERROR);
36767c478bd9Sstevel@tonic-gate 	z->msg = Z_NULL;
36777c478bd9Sstevel@tonic-gate #ifndef NO_ZCFUNCS
36787c478bd9Sstevel@tonic-gate 	if (z->zalloc == Z_NULL)
36797c478bd9Sstevel@tonic-gate 	{
36807c478bd9Sstevel@tonic-gate 		z->zalloc = zcalloc;
36817c478bd9Sstevel@tonic-gate 		z->opaque = (voidpf)0;
36827c478bd9Sstevel@tonic-gate 	}
36837c478bd9Sstevel@tonic-gate 	if (z->zfree == Z_NULL) z->zfree = zcfree;
36847c478bd9Sstevel@tonic-gate #endif
36857c478bd9Sstevel@tonic-gate 	if ((z->state = (struct internal_state FAR *)
36867c478bd9Sstevel@tonic-gate 	    ZALLOC(z, 1, sizeof (struct internal_state))) == Z_NULL)
36877c478bd9Sstevel@tonic-gate 		return (Z_MEM_ERROR);
36887c478bd9Sstevel@tonic-gate 	z->state->blocks = Z_NULL;
36897c478bd9Sstevel@tonic-gate 
36907c478bd9Sstevel@tonic-gate 	/* handle undocumented nowrap option (no zlib header or check) */
36917c478bd9Sstevel@tonic-gate 	z->state->nowrap = 0;
36927c478bd9Sstevel@tonic-gate 	if (w < 0)
36937c478bd9Sstevel@tonic-gate 	{
36947c478bd9Sstevel@tonic-gate 		w = - w;
36957c478bd9Sstevel@tonic-gate 		z->state->nowrap = 1;
36967c478bd9Sstevel@tonic-gate 	}
36977c478bd9Sstevel@tonic-gate 
36987c478bd9Sstevel@tonic-gate 	/* set window size */
36997c478bd9Sstevel@tonic-gate 	if (w < 8 || w > 15)
37007c478bd9Sstevel@tonic-gate 	{
37017c478bd9Sstevel@tonic-gate 		(void) inflateEnd(z);
37027c478bd9Sstevel@tonic-gate 		return (Z_STREAM_ERROR);
37037c478bd9Sstevel@tonic-gate 	}
37047c478bd9Sstevel@tonic-gate 	z->state->wbits = (uInt)w;
37057c478bd9Sstevel@tonic-gate 
37067c478bd9Sstevel@tonic-gate 	/* create inflate_blocks state */
37077c478bd9Sstevel@tonic-gate 	if ((z->state->blocks =
37087c478bd9Sstevel@tonic-gate 	    inflate_blocks_new(z, z->state->nowrap ?
37097c478bd9Sstevel@tonic-gate 		Z_NULL : adler32, (uInt)1 << w))
37107c478bd9Sstevel@tonic-gate 	    == Z_NULL)
37117c478bd9Sstevel@tonic-gate 	{
37127c478bd9Sstevel@tonic-gate 		(void) inflateEnd(z);
37137c478bd9Sstevel@tonic-gate 		return (Z_MEM_ERROR);
37147c478bd9Sstevel@tonic-gate 	}
37157c478bd9Sstevel@tonic-gate 	Trace((stderr, "inflate: allocated\n"));
37167c478bd9Sstevel@tonic-gate 
37177c478bd9Sstevel@tonic-gate 	/* reset state */
37187c478bd9Sstevel@tonic-gate 	(void) inflateReset(z);
37197c478bd9Sstevel@tonic-gate 	return (Z_OK);
37207c478bd9Sstevel@tonic-gate }
37217c478bd9Sstevel@tonic-gate 
37227c478bd9Sstevel@tonic-gate 
37237c478bd9Sstevel@tonic-gate int
inflateInit_(z,version,stream_size)37247c478bd9Sstevel@tonic-gate inflateInit_(z, version, stream_size)
37257c478bd9Sstevel@tonic-gate z_streamp z;
37267c478bd9Sstevel@tonic-gate const char *version;
37277c478bd9Sstevel@tonic-gate int stream_size;
37287c478bd9Sstevel@tonic-gate {
37297c478bd9Sstevel@tonic-gate 	return (inflateInit2_(z, DEF_WBITS, version, stream_size));
37307c478bd9Sstevel@tonic-gate }
37317c478bd9Sstevel@tonic-gate 
37327c478bd9Sstevel@tonic-gate /* PPP -- added "empty" label and changed f to Z_OK */
37337c478bd9Sstevel@tonic-gate #define	NEEDBYTE {if (z->avail_in == 0) goto empty; r = Z_OK; } ((void)0)
37347c478bd9Sstevel@tonic-gate #define	NEXTBYTE (z->avail_in--, z->total_in++, *z->next_in++)
37357c478bd9Sstevel@tonic-gate 
37367c478bd9Sstevel@tonic-gate int
inflate(z,f)37377c478bd9Sstevel@tonic-gate inflate(z, f)
37387c478bd9Sstevel@tonic-gate z_streamp z;
37397c478bd9Sstevel@tonic-gate int f;
37407c478bd9Sstevel@tonic-gate {
37417c478bd9Sstevel@tonic-gate 	int r;
37427c478bd9Sstevel@tonic-gate 	uInt b;
37437c478bd9Sstevel@tonic-gate 
37447c478bd9Sstevel@tonic-gate 	if (z == Z_NULL || z->state == Z_NULL || z->next_in == Z_NULL)
37457c478bd9Sstevel@tonic-gate 		return (Z_STREAM_ERROR);
37467c478bd9Sstevel@tonic-gate 	/* f = f == Z_FINISH ? Z_BUF_ERROR : Z_OK; -- PPP; Z_FINISH unused */
37477c478bd9Sstevel@tonic-gate 	r = Z_BUF_ERROR;
37487c478bd9Sstevel@tonic-gate 	/* CONSTCOND */
37497c478bd9Sstevel@tonic-gate 	while (1)
37507c478bd9Sstevel@tonic-gate 		switch (z->state->mode)
37517c478bd9Sstevel@tonic-gate 	{
37527c478bd9Sstevel@tonic-gate 	case METHOD:
37537c478bd9Sstevel@tonic-gate 		NEEDBYTE;
37547c478bd9Sstevel@tonic-gate 		if (((z->state->sub.method = NEXTBYTE) & 0xf) != Z_DEFLATED)
37557c478bd9Sstevel@tonic-gate 		{
37567c478bd9Sstevel@tonic-gate 			z->state->mode = BAD;
37577c478bd9Sstevel@tonic-gate 			z->msg = "unknown compression method";
37587c478bd9Sstevel@tonic-gate 			/* can't try inflateSync */
37597c478bd9Sstevel@tonic-gate 			z->state->sub.marker = 5;
37607c478bd9Sstevel@tonic-gate 			break;
37617c478bd9Sstevel@tonic-gate 		}
37627c478bd9Sstevel@tonic-gate 		if ((z->state->sub.method >> 4) + 8 > z->state->wbits)
37637c478bd9Sstevel@tonic-gate 		{
37647c478bd9Sstevel@tonic-gate 			z->state->mode = BAD;
37657c478bd9Sstevel@tonic-gate 			z->msg = "invalid window size";
37667c478bd9Sstevel@tonic-gate 			/* can't try inflateSync */
37677c478bd9Sstevel@tonic-gate 			z->state->sub.marker = 5;
37687c478bd9Sstevel@tonic-gate 			break;
37697c478bd9Sstevel@tonic-gate 		}
37707c478bd9Sstevel@tonic-gate 		z->state->mode = FLAG;
37717c478bd9Sstevel@tonic-gate 		/* FALLTHRU */
37727c478bd9Sstevel@tonic-gate 	case FLAG:
37737c478bd9Sstevel@tonic-gate 		NEEDBYTE;
37747c478bd9Sstevel@tonic-gate 		b = NEXTBYTE;
37757c478bd9Sstevel@tonic-gate 		if (((z->state->sub.method << 8) + b) % 31)
37767c478bd9Sstevel@tonic-gate 		{
37777c478bd9Sstevel@tonic-gate 			z->state->mode = BAD;
37787c478bd9Sstevel@tonic-gate 			z->msg = "incorrect header check";
37797c478bd9Sstevel@tonic-gate 			/* can't try inflateSync */
37807c478bd9Sstevel@tonic-gate 			z->state->sub.marker = 5;
37817c478bd9Sstevel@tonic-gate 			break;
37827c478bd9Sstevel@tonic-gate 		}
37837c478bd9Sstevel@tonic-gate 		Trace((stderr, "inflate: zlib header ok\n"));
37847c478bd9Sstevel@tonic-gate 		if (!(b & PRESET_DICT))
37857c478bd9Sstevel@tonic-gate 		{
37867c478bd9Sstevel@tonic-gate 			z->state->mode = BLOCKS;
37877c478bd9Sstevel@tonic-gate 			break;
37887c478bd9Sstevel@tonic-gate 		}
37897c478bd9Sstevel@tonic-gate 		z->state->mode = DICT4;
37907c478bd9Sstevel@tonic-gate 		/* FALLTHRU */
37917c478bd9Sstevel@tonic-gate 	case DICT4:
37927c478bd9Sstevel@tonic-gate 		NEEDBYTE;
37937c478bd9Sstevel@tonic-gate 		z->state->sub.check.need = (uLong)NEXTBYTE << 24;
37947c478bd9Sstevel@tonic-gate 		z->state->mode = DICT3;
37957c478bd9Sstevel@tonic-gate 		/* FALLTHRU */
37967c478bd9Sstevel@tonic-gate 	case DICT3:
37977c478bd9Sstevel@tonic-gate 		NEEDBYTE;
37987c478bd9Sstevel@tonic-gate 		z->state->sub.check.need += (uLong)NEXTBYTE << 16;
37997c478bd9Sstevel@tonic-gate 		z->state->mode = DICT2;
38007c478bd9Sstevel@tonic-gate 		/* FALLTHRU */
38017c478bd9Sstevel@tonic-gate 	case DICT2:
38027c478bd9Sstevel@tonic-gate 		NEEDBYTE;
38037c478bd9Sstevel@tonic-gate 		z->state->sub.check.need += (uLong)NEXTBYTE << 8;
38047c478bd9Sstevel@tonic-gate 		z->state->mode = DICT1;
38057c478bd9Sstevel@tonic-gate 		/* FALLTHRU */
38067c478bd9Sstevel@tonic-gate 	case DICT1:
38077c478bd9Sstevel@tonic-gate 		NEEDBYTE;
38087c478bd9Sstevel@tonic-gate 		z->state->sub.check.need += (uLong)NEXTBYTE;
38097c478bd9Sstevel@tonic-gate 		z->adler = z->state->sub.check.need;
38107c478bd9Sstevel@tonic-gate 		z->state->mode = DICT0;
38117c478bd9Sstevel@tonic-gate 		return (Z_NEED_DICT);
38127c478bd9Sstevel@tonic-gate 	case DICT0:
38137c478bd9Sstevel@tonic-gate 		z->state->mode = BAD;
38147c478bd9Sstevel@tonic-gate 		z->msg = "need dictionary";
38157c478bd9Sstevel@tonic-gate 		z->state->sub.marker = 0;	/* can try inflateSync */
38167c478bd9Sstevel@tonic-gate 		return (Z_STREAM_ERROR);
38177c478bd9Sstevel@tonic-gate 	case BLOCKS:
38187c478bd9Sstevel@tonic-gate 		r = inflate_blocks(z->state->blocks, z, r);
38197c478bd9Sstevel@tonic-gate 		if (f == Z_PACKET_FLUSH && z->avail_in == 0 &&	/* PPP */
38207c478bd9Sstevel@tonic-gate 		    z->avail_out != 0)				/* PPP */
38217c478bd9Sstevel@tonic-gate 			r = inflate_packet_flush(z->state->blocks); /* PPP */
38227c478bd9Sstevel@tonic-gate 		if (r == Z_DATA_ERROR)
38237c478bd9Sstevel@tonic-gate 		{
38247c478bd9Sstevel@tonic-gate 			z->state->mode = BAD;
38257c478bd9Sstevel@tonic-gate 			/* can try inflateSync */
38267c478bd9Sstevel@tonic-gate 			z->state->sub.marker = 0;
38277c478bd9Sstevel@tonic-gate 			break;
38287c478bd9Sstevel@tonic-gate 		}
38297c478bd9Sstevel@tonic-gate 		/* PPP */
38307c478bd9Sstevel@tonic-gate 		if (r != Z_STREAM_END)
38317c478bd9Sstevel@tonic-gate 			return (r);
38327c478bd9Sstevel@tonic-gate 		r = Z_OK;	/* PPP */
38337c478bd9Sstevel@tonic-gate 		inflate_blocks_reset(z->state->blocks, z,
38347c478bd9Sstevel@tonic-gate 		    &z->state->sub.check.was);
38357c478bd9Sstevel@tonic-gate 		if (z->state->nowrap)
38367c478bd9Sstevel@tonic-gate 		{
38377c478bd9Sstevel@tonic-gate 			z->state->mode = DONE;
38387c478bd9Sstevel@tonic-gate 			break;
38397c478bd9Sstevel@tonic-gate 		}
38407c478bd9Sstevel@tonic-gate 		z->state->mode = CHECK4;
38417c478bd9Sstevel@tonic-gate 		/* FALLTHRU */
38427c478bd9Sstevel@tonic-gate 	case CHECK4:
38437c478bd9Sstevel@tonic-gate 		NEEDBYTE;
38447c478bd9Sstevel@tonic-gate 		z->state->sub.check.need = (uLong)NEXTBYTE << 24;
38457c478bd9Sstevel@tonic-gate 		z->state->mode = CHECK3;
38467c478bd9Sstevel@tonic-gate 		/* FALLTHRU */
38477c478bd9Sstevel@tonic-gate 	case CHECK3:
38487c478bd9Sstevel@tonic-gate 		NEEDBYTE;
38497c478bd9Sstevel@tonic-gate 		z->state->sub.check.need += (uLong)NEXTBYTE << 16;
38507c478bd9Sstevel@tonic-gate 		z->state->mode = CHECK2;
38517c478bd9Sstevel@tonic-gate 		/* FALLTHRU */
38527c478bd9Sstevel@tonic-gate 	case CHECK2:
38537c478bd9Sstevel@tonic-gate 		NEEDBYTE;
38547c478bd9Sstevel@tonic-gate 		z->state->sub.check.need += (uLong)NEXTBYTE << 8;
38557c478bd9Sstevel@tonic-gate 		z->state->mode = CHECK1;
38567c478bd9Sstevel@tonic-gate 		/* FALLTHRU */
38577c478bd9Sstevel@tonic-gate 	case CHECK1:
38587c478bd9Sstevel@tonic-gate 		NEEDBYTE;
38597c478bd9Sstevel@tonic-gate 		z->state->sub.check.need += (uLong)NEXTBYTE;
38607c478bd9Sstevel@tonic-gate 
38617c478bd9Sstevel@tonic-gate 		if (z->state->sub.check.was != z->state->sub.check.need)
38627c478bd9Sstevel@tonic-gate 		{
38637c478bd9Sstevel@tonic-gate 			z->state->mode = BAD;
38647c478bd9Sstevel@tonic-gate 			z->msg = "incorrect data check";
38657c478bd9Sstevel@tonic-gate 			/* can't try inflateSync */
38667c478bd9Sstevel@tonic-gate 			z->state->sub.marker = 5;
38677c478bd9Sstevel@tonic-gate 			break;
38687c478bd9Sstevel@tonic-gate 		}
38697c478bd9Sstevel@tonic-gate 		Trace((stderr, "inflate: zlib check ok\n"));
38707c478bd9Sstevel@tonic-gate 		z->state->mode = DONE;
38717c478bd9Sstevel@tonic-gate 		/* FALLTHRU */
38727c478bd9Sstevel@tonic-gate 	case DONE:
38737c478bd9Sstevel@tonic-gate 		return (Z_STREAM_END);
38747c478bd9Sstevel@tonic-gate 	case BAD:
38757c478bd9Sstevel@tonic-gate 		return (Z_DATA_ERROR);
38767c478bd9Sstevel@tonic-gate 	default:
38777c478bd9Sstevel@tonic-gate 		return (Z_STREAM_ERROR);
38787c478bd9Sstevel@tonic-gate 	}
38797c478bd9Sstevel@tonic-gate 
38807c478bd9Sstevel@tonic-gate /* PPP -- packet flush handling */
38817c478bd9Sstevel@tonic-gate empty:
38827c478bd9Sstevel@tonic-gate 	if (f != Z_PACKET_FLUSH)
38837c478bd9Sstevel@tonic-gate 		return (r);
38847c478bd9Sstevel@tonic-gate 	z->state->mode = BAD;
38857c478bd9Sstevel@tonic-gate 	z->msg = "need more for packet flush";
38867c478bd9Sstevel@tonic-gate 	z->state->sub.marker = 0;	/* can try inflateSync */
38877c478bd9Sstevel@tonic-gate 	return (Z_DATA_ERROR);
38887c478bd9Sstevel@tonic-gate }
38897c478bd9Sstevel@tonic-gate 
38907c478bd9Sstevel@tonic-gate 
38917c478bd9Sstevel@tonic-gate int
inflateSetDictionary(z,dictionary,dictLength)38927c478bd9Sstevel@tonic-gate inflateSetDictionary(z, dictionary, dictLength)
38937c478bd9Sstevel@tonic-gate z_streamp z;
38947c478bd9Sstevel@tonic-gate const Bytef *dictionary;
38957c478bd9Sstevel@tonic-gate uInt  dictLength;
38967c478bd9Sstevel@tonic-gate {
38977c478bd9Sstevel@tonic-gate 	uInt length = dictLength;
38987c478bd9Sstevel@tonic-gate 
38997c478bd9Sstevel@tonic-gate 	if (z == Z_NULL || z->state == Z_NULL || z->state->mode != DICT0)
39007c478bd9Sstevel@tonic-gate 		return (Z_STREAM_ERROR);
39017c478bd9Sstevel@tonic-gate 
39027c478bd9Sstevel@tonic-gate 	if (adler32(1L, dictionary, dictLength) != z->adler)
39037c478bd9Sstevel@tonic-gate 		return (Z_DATA_ERROR);
39047c478bd9Sstevel@tonic-gate 	z->adler = 1L;
39057c478bd9Sstevel@tonic-gate 
39067c478bd9Sstevel@tonic-gate 	if (length >= ((uInt)1<<z->state->wbits))
39077c478bd9Sstevel@tonic-gate 	{
39087c478bd9Sstevel@tonic-gate 		length = (1<<z->state->wbits)-1;
39097c478bd9Sstevel@tonic-gate 		dictionary += dictLength - length;
39107c478bd9Sstevel@tonic-gate 	}
39117c478bd9Sstevel@tonic-gate 	inflate_set_dictionary(z->state->blocks, dictionary, length);
39127c478bd9Sstevel@tonic-gate 	z->state->mode = BLOCKS;
39137c478bd9Sstevel@tonic-gate 	return (Z_OK);
39147c478bd9Sstevel@tonic-gate }
39157c478bd9Sstevel@tonic-gate 
39167c478bd9Sstevel@tonic-gate /*
39177c478bd9Sstevel@tonic-gate  * This subroutine adds the data at next_in/avail_in to the output history
39187c478bd9Sstevel@tonic-gate  * without performing any output.  The output buffer must be "caught up";
39197c478bd9Sstevel@tonic-gate  * i.e. no pending output (hence s->read equals s->write), and the state must
39207c478bd9Sstevel@tonic-gate  * be BLOCKS (i.e. we should be willing to see the start of a series of
39217c478bd9Sstevel@tonic-gate  * BLOCKS).  On exit, the output will also be caught up, and the checksum
39227c478bd9Sstevel@tonic-gate  * will have been updated if need be.
39237c478bd9Sstevel@tonic-gate  *
39247c478bd9Sstevel@tonic-gate  * Added for PPP.
39257c478bd9Sstevel@tonic-gate  */
39267c478bd9Sstevel@tonic-gate 
39277c478bd9Sstevel@tonic-gate int
inflateIncomp(z)39287c478bd9Sstevel@tonic-gate inflateIncomp(z)
39297c478bd9Sstevel@tonic-gate z_stream *z;
39307c478bd9Sstevel@tonic-gate {
39317c478bd9Sstevel@tonic-gate 	if (z->state->mode != BLOCKS)
39327c478bd9Sstevel@tonic-gate 		return (Z_DATA_ERROR);
39337c478bd9Sstevel@tonic-gate 	return (inflate_addhistory(z->state->blocks, z));
39347c478bd9Sstevel@tonic-gate }
39357c478bd9Sstevel@tonic-gate 
39367c478bd9Sstevel@tonic-gate 
39377c478bd9Sstevel@tonic-gate int
inflateSync(z)39387c478bd9Sstevel@tonic-gate inflateSync(z)
39397c478bd9Sstevel@tonic-gate z_streamp z;
39407c478bd9Sstevel@tonic-gate {
39417c478bd9Sstevel@tonic-gate 	uInt n;	/* number of bytes to look at */
39427c478bd9Sstevel@tonic-gate 	Bytef *p;	/* pointer to bytes */
39437c478bd9Sstevel@tonic-gate 	uInt m;	/* number of marker bytes found in a row */
39447c478bd9Sstevel@tonic-gate 	uLong r, w;	/* temporaries to save total_in and total_out */
39457c478bd9Sstevel@tonic-gate 
39467c478bd9Sstevel@tonic-gate 	/* set up */
39477c478bd9Sstevel@tonic-gate 	if (z == Z_NULL || z->state == Z_NULL)
39487c478bd9Sstevel@tonic-gate 		return (Z_STREAM_ERROR);
39497c478bd9Sstevel@tonic-gate 	if (z->state->mode != BAD)
39507c478bd9Sstevel@tonic-gate 	{
39517c478bd9Sstevel@tonic-gate 		z->state->mode = BAD;
39527c478bd9Sstevel@tonic-gate 		z->state->sub.marker = 0;
39537c478bd9Sstevel@tonic-gate 	}
39547c478bd9Sstevel@tonic-gate 	if ((n = z->avail_in) == 0)
39557c478bd9Sstevel@tonic-gate 		return (Z_BUF_ERROR);
39567c478bd9Sstevel@tonic-gate 	p = z->next_in;
39577c478bd9Sstevel@tonic-gate 	m = z->state->sub.marker;
39587c478bd9Sstevel@tonic-gate 
39597c478bd9Sstevel@tonic-gate 	/* search */
39607c478bd9Sstevel@tonic-gate 	while (n && m < 4)
39617c478bd9Sstevel@tonic-gate 	{
39627c478bd9Sstevel@tonic-gate 		static const Byte mark[4] = { 0, 0, 0xff, 0xff };
39637c478bd9Sstevel@tonic-gate 		if (*p == mark[m])
39647c478bd9Sstevel@tonic-gate 			m++;
39657c478bd9Sstevel@tonic-gate 		else if (*p)
39667c478bd9Sstevel@tonic-gate 			m = 0;
39677c478bd9Sstevel@tonic-gate 		else
39687c478bd9Sstevel@tonic-gate 			/*
39697c478bd9Sstevel@tonic-gate 			 * This statement maps 2->2 and 3->1 because a
39707c478bd9Sstevel@tonic-gate 			 * mismatch with input byte 0x00 on the first
39717c478bd9Sstevel@tonic-gate 			 * 0xFF in the pattern means that we still
39727c478bd9Sstevel@tonic-gate 			 * have two contiguous zeros matched (thus
39737c478bd9Sstevel@tonic-gate 			 * offset 2 is kept), but a mismatch on the
39747c478bd9Sstevel@tonic-gate 			 * second 0xFF means that only one 0x00 byte
39757c478bd9Sstevel@tonic-gate 			 * has been matched.  (Boyer-Moore like
39767c478bd9Sstevel@tonic-gate 			 * search.)
39777c478bd9Sstevel@tonic-gate 			 */
39787c478bd9Sstevel@tonic-gate 			m = 4 - m;
39797c478bd9Sstevel@tonic-gate 		p++, n--;
39807c478bd9Sstevel@tonic-gate 	}
39817c478bd9Sstevel@tonic-gate 
39827c478bd9Sstevel@tonic-gate 	/* restore */
39837c478bd9Sstevel@tonic-gate 	z->total_in += p - z->next_in;
39847c478bd9Sstevel@tonic-gate 	z->next_in = p;
39857c478bd9Sstevel@tonic-gate 	z->avail_in = n;
39867c478bd9Sstevel@tonic-gate 	z->state->sub.marker = m;
39877c478bd9Sstevel@tonic-gate 
39887c478bd9Sstevel@tonic-gate 	/* return no joy or set up to restart on a new block */
39897c478bd9Sstevel@tonic-gate 	if (m != 4)
39907c478bd9Sstevel@tonic-gate 		return (Z_DATA_ERROR);
39917c478bd9Sstevel@tonic-gate 	r = z->total_in;  w = z->total_out;
39927c478bd9Sstevel@tonic-gate 	(void) inflateReset(z);
39937c478bd9Sstevel@tonic-gate 	z->total_in = r;  z->total_out = w;
39947c478bd9Sstevel@tonic-gate 	z->state->mode = BLOCKS;
39957c478bd9Sstevel@tonic-gate 	return (Z_OK);
39967c478bd9Sstevel@tonic-gate }
39977c478bd9Sstevel@tonic-gate 
39987c478bd9Sstevel@tonic-gate /*
39997c478bd9Sstevel@tonic-gate  * Returns true if inflate is currently at the end of a block
40007c478bd9Sstevel@tonic-gate  * generated by Z_SYNC_FLUSH or Z_FULL_FLUSH. This function is used by
40017c478bd9Sstevel@tonic-gate  * one PPP implementation to provide an additional safety check. PPP
40027c478bd9Sstevel@tonic-gate  * uses Z_SYNC_FLUSH but removes the length bytes of the resulting
40037c478bd9Sstevel@tonic-gate  * empty stored block. When decompressing, PPP checks that at the end
40047c478bd9Sstevel@tonic-gate  * of input packet, inflate is waiting for these length bytes.
40057c478bd9Sstevel@tonic-gate  */
40067c478bd9Sstevel@tonic-gate int
inflateSyncPoint(z)40077c478bd9Sstevel@tonic-gate inflateSyncPoint(z)
40087c478bd9Sstevel@tonic-gate z_streamp z;
40097c478bd9Sstevel@tonic-gate {
40107c478bd9Sstevel@tonic-gate 	if (z == Z_NULL || z->state == Z_NULL || z->state->blocks == Z_NULL)
40117c478bd9Sstevel@tonic-gate 		return (Z_STREAM_ERROR);
40127c478bd9Sstevel@tonic-gate 	return (inflate_blocks_sync_point(z->state->blocks));
40137c478bd9Sstevel@tonic-gate }
40147c478bd9Sstevel@tonic-gate 
40157c478bd9Sstevel@tonic-gate #undef NEEDBYTE
40167c478bd9Sstevel@tonic-gate #undef NEXTBYTE
40177c478bd9Sstevel@tonic-gate /* --- inflate.c */
40187c478bd9Sstevel@tonic-gate 
40197c478bd9Sstevel@tonic-gate /* +++ infblock.c */
40207c478bd9Sstevel@tonic-gate /*
40217c478bd9Sstevel@tonic-gate  * infblock.c -- interpret and process block types to last block
40227c478bd9Sstevel@tonic-gate  * Copyright (C) 1995-1998 Mark Adler
40237c478bd9Sstevel@tonic-gate  * For conditions of distribution and use, see copyright notice in zlib.h
40247c478bd9Sstevel@tonic-gate  */
40257c478bd9Sstevel@tonic-gate 
40267c478bd9Sstevel@tonic-gate /* #include "zutil.h" */
40277c478bd9Sstevel@tonic-gate /* #include "infblock.h" */
40287c478bd9Sstevel@tonic-gate 
40297c478bd9Sstevel@tonic-gate /* +++ inftrees.h */
40307c478bd9Sstevel@tonic-gate /*
40317c478bd9Sstevel@tonic-gate  * inftrees.h -- header to use inftrees.c
40327c478bd9Sstevel@tonic-gate  * Copyright (C) 1995-1998 Mark Adler
40337c478bd9Sstevel@tonic-gate  * For conditions of distribution and use, see copyright notice in zlib.h
40347c478bd9Sstevel@tonic-gate  */
40357c478bd9Sstevel@tonic-gate 
40367c478bd9Sstevel@tonic-gate /*
40377c478bd9Sstevel@tonic-gate  * WARNING: this file should *not* be used by applications. It is part
40387c478bd9Sstevel@tonic-gate  * of the implementation of the compression library and is subject to
40397c478bd9Sstevel@tonic-gate  * change. Applications should only use zlib.h.
40407c478bd9Sstevel@tonic-gate  */
40417c478bd9Sstevel@tonic-gate 
40427c478bd9Sstevel@tonic-gate /*
40437c478bd9Sstevel@tonic-gate  * Huffman code lookup table entry--this entry is four bytes for
40447c478bd9Sstevel@tonic-gate  * machines that have 16-bit pointers (e.g. PC's in the small or
40457c478bd9Sstevel@tonic-gate  * medium model).
40467c478bd9Sstevel@tonic-gate  */
40477c478bd9Sstevel@tonic-gate 
40487c478bd9Sstevel@tonic-gate typedef struct inflate_huft_s FAR inflate_huft;
40497c478bd9Sstevel@tonic-gate 
40507c478bd9Sstevel@tonic-gate struct inflate_huft_s {
40517c478bd9Sstevel@tonic-gate 	union {
40527c478bd9Sstevel@tonic-gate 		struct {
40537c478bd9Sstevel@tonic-gate 			Byte Exop;	/* number of extra bits or operation */
40547c478bd9Sstevel@tonic-gate 			/* number of bits in this code or subcode */
40557c478bd9Sstevel@tonic-gate 			Byte Bits;
40567c478bd9Sstevel@tonic-gate 		} what;
40577c478bd9Sstevel@tonic-gate 		Bytef *pad;	/* pad structure to a power of 2 (4 bytes for */
40587c478bd9Sstevel@tonic-gate 	} word;	/*  16-bit, 8 bytes for 32-bit machines) */
40597c478bd9Sstevel@tonic-gate 	/* literal, length base, distance base, or table offset */
40607c478bd9Sstevel@tonic-gate 	uInt base;
40617c478bd9Sstevel@tonic-gate };
40627c478bd9Sstevel@tonic-gate 
40637c478bd9Sstevel@tonic-gate /*
40647c478bd9Sstevel@tonic-gate  * Maximum size of dynamic tree.  The maximum found in a long but non-
40657c478bd9Sstevel@tonic-gate  * exhaustive search was 1004 huft structures (850 for length/literals
40667c478bd9Sstevel@tonic-gate  * and 154 for distances, the latter actually the result of an
40677c478bd9Sstevel@tonic-gate  * exhaustive search).  The actual maximum is not known, but the value
40687c478bd9Sstevel@tonic-gate  * below is more than safe.
40697c478bd9Sstevel@tonic-gate  */
40707c478bd9Sstevel@tonic-gate #define	MANY 1440
40717c478bd9Sstevel@tonic-gate 
40727c478bd9Sstevel@tonic-gate extern int inflate_trees_bits OF((
40737c478bd9Sstevel@tonic-gate     uIntf *,			/* 19 code lengths */
40747c478bd9Sstevel@tonic-gate     uIntf *,			/* bits tree desired/actual depth */
40757c478bd9Sstevel@tonic-gate     inflate_huft * FAR *,	/* bits tree result */
40767c478bd9Sstevel@tonic-gate     inflate_huft *,		/* space for trees */
40777c478bd9Sstevel@tonic-gate     z_streamp));	/* for zalloc, zfree functions */
40787c478bd9Sstevel@tonic-gate 
40797c478bd9Sstevel@tonic-gate extern int inflate_trees_dynamic OF((
40807c478bd9Sstevel@tonic-gate     uInt,	/* number of literal/length codes */
40817c478bd9Sstevel@tonic-gate     uInt,	/* number of distance codes */
40827c478bd9Sstevel@tonic-gate     uIntf *,	/* that many (total) code lengths */
40837c478bd9Sstevel@tonic-gate     uIntf *,	/* literal desired/actual bit depth */
40847c478bd9Sstevel@tonic-gate     uIntf *,	/* distance desired/actual bit depth */
40857c478bd9Sstevel@tonic-gate     inflate_huft * FAR *,	/* literal/length tree result */
40867c478bd9Sstevel@tonic-gate     inflate_huft * FAR *,	/* distance tree result */
40877c478bd9Sstevel@tonic-gate     inflate_huft *,		/* space for trees */
40887c478bd9Sstevel@tonic-gate     z_streamp));	/* for zalloc, zfree functions */
40897c478bd9Sstevel@tonic-gate 
40907c478bd9Sstevel@tonic-gate extern int inflate_trees_fixed OF((
40917c478bd9Sstevel@tonic-gate     uIntf *,	/* literal desired/actual bit depth */
40927c478bd9Sstevel@tonic-gate     uIntf *,	/* distance desired/actual bit depth */
40937c478bd9Sstevel@tonic-gate     const inflate_huft * FAR *,	/* literal/length tree result */
40947c478bd9Sstevel@tonic-gate     const inflate_huft * FAR *,	/* distance tree result */
40957c478bd9Sstevel@tonic-gate     z_streamp));
40967c478bd9Sstevel@tonic-gate 
40977c478bd9Sstevel@tonic-gate /* --- inftrees.h */
40987c478bd9Sstevel@tonic-gate 
40997c478bd9Sstevel@tonic-gate /* +++ infcodes.h */
41007c478bd9Sstevel@tonic-gate /*
41017c478bd9Sstevel@tonic-gate  * infcodes.h -- header to use infcodes.c
41027c478bd9Sstevel@tonic-gate  * Copyright (C) 1995-1998 Mark Adler
41037c478bd9Sstevel@tonic-gate  * For conditions of distribution and use, see copyright notice in zlib.h
41047c478bd9Sstevel@tonic-gate  */
41057c478bd9Sstevel@tonic-gate 
41067c478bd9Sstevel@tonic-gate /*
41077c478bd9Sstevel@tonic-gate  * WARNING: this file should *not* be used by applications. It is part
41087c478bd9Sstevel@tonic-gate  * of the implementation of the compression library and is subject to
41097c478bd9Sstevel@tonic-gate  * change. Applications should only use zlib.h.
41107c478bd9Sstevel@tonic-gate  */
41117c478bd9Sstevel@tonic-gate 
41127c478bd9Sstevel@tonic-gate struct inflate_codes_state;
41137c478bd9Sstevel@tonic-gate typedef struct inflate_codes_state FAR inflate_codes_statef;
41147c478bd9Sstevel@tonic-gate 
41157c478bd9Sstevel@tonic-gate extern inflate_codes_statef *inflate_codes_new OF((
41167c478bd9Sstevel@tonic-gate     uInt, uInt,
41177c478bd9Sstevel@tonic-gate     const inflate_huft *, const inflate_huft *,
41187c478bd9Sstevel@tonic-gate     z_streamp));
41197c478bd9Sstevel@tonic-gate 
41207c478bd9Sstevel@tonic-gate extern int inflate_codes OF((
41217c478bd9Sstevel@tonic-gate     inflate_blocks_statef *,
41227c478bd9Sstevel@tonic-gate     z_streamp,
41237c478bd9Sstevel@tonic-gate     int));
41247c478bd9Sstevel@tonic-gate 
41257c478bd9Sstevel@tonic-gate extern void inflate_codes_free OF((
41267c478bd9Sstevel@tonic-gate     inflate_codes_statef *,
41277c478bd9Sstevel@tonic-gate     z_streamp));
41287c478bd9Sstevel@tonic-gate 
41297c478bd9Sstevel@tonic-gate /* --- infcodes.h */
41307c478bd9Sstevel@tonic-gate 
41317c478bd9Sstevel@tonic-gate /* +++ infutil.h */
41327c478bd9Sstevel@tonic-gate /*
41337c478bd9Sstevel@tonic-gate  * infutil.h -- types and macros common to blocks and codes
41347c478bd9Sstevel@tonic-gate  * Copyright (C) 1995-1998 Mark Adler
41357c478bd9Sstevel@tonic-gate  * For conditions of distribution and use, see copyright notice in zlib.h
41367c478bd9Sstevel@tonic-gate  */
41377c478bd9Sstevel@tonic-gate 
41387c478bd9Sstevel@tonic-gate /*
41397c478bd9Sstevel@tonic-gate  * WARNING: this file should *not* be used by applications. It is part
41407c478bd9Sstevel@tonic-gate  * of the implementation of the compression library and is subject to
41417c478bd9Sstevel@tonic-gate  * change. Applications should only use zlib.h.
41427c478bd9Sstevel@tonic-gate  */
41437c478bd9Sstevel@tonic-gate 
41447c478bd9Sstevel@tonic-gate #ifndef _INFUTIL_H
41457c478bd9Sstevel@tonic-gate #define	_INFUTIL_H
41467c478bd9Sstevel@tonic-gate 
41477c478bd9Sstevel@tonic-gate typedef enum {
41487c478bd9Sstevel@tonic-gate 	TYPE,	/* get type bits (3, including end bit) */
41497c478bd9Sstevel@tonic-gate 	LENS,	/* get lengths for stored */
41507c478bd9Sstevel@tonic-gate 	STORED,	/* processing stored block */
41517c478bd9Sstevel@tonic-gate 	TABLE,	/* get table lengths */
41527c478bd9Sstevel@tonic-gate 	BTREE,	/* get bit lengths tree for a dynamic block */
41537c478bd9Sstevel@tonic-gate 	DTREE,	/* get length, distance trees for a dynamic block */
41547c478bd9Sstevel@tonic-gate 	CODES,	/* processing fixed or dynamic block */
41557c478bd9Sstevel@tonic-gate 	DRY,	/* output remaining window bytes */
41567c478bd9Sstevel@tonic-gate 	DONEB,	/* finished last block, done */
41577c478bd9Sstevel@tonic-gate 	BADB}	/* got a data error--stuck here */
41587c478bd9Sstevel@tonic-gate inflate_block_mode;
41597c478bd9Sstevel@tonic-gate 
41607c478bd9Sstevel@tonic-gate /* inflate blocks semi-private state */
41617c478bd9Sstevel@tonic-gate struct inflate_blocks_state {
41627c478bd9Sstevel@tonic-gate 
41637c478bd9Sstevel@tonic-gate 	/* mode */
41647c478bd9Sstevel@tonic-gate 	inflate_block_mode  mode;	/* current inflate_block mode */
41657c478bd9Sstevel@tonic-gate 
41667c478bd9Sstevel@tonic-gate 	/* mode dependent information */
41677c478bd9Sstevel@tonic-gate 	union {
41687c478bd9Sstevel@tonic-gate 		uInt left;	/* if STORED, bytes left to copy */
41697c478bd9Sstevel@tonic-gate 		struct {
41707c478bd9Sstevel@tonic-gate 			uInt table;	/* table lengths (14 bits) */
41717c478bd9Sstevel@tonic-gate 			uInt index;	/* index into blens (or border) */
41727c478bd9Sstevel@tonic-gate 			uIntf *blens;	/* bit lengths of codes */
41737c478bd9Sstevel@tonic-gate 			uInt bb;	/* bit length tree depth */
41747c478bd9Sstevel@tonic-gate 			inflate_huft *tb;	/* bit length decoding tree */
41757c478bd9Sstevel@tonic-gate 		} trees;	/* if DTREE, decoding info for trees */
41767c478bd9Sstevel@tonic-gate 		struct {
41777c478bd9Sstevel@tonic-gate 			inflate_codes_statef *codes;
41787c478bd9Sstevel@tonic-gate 		} decode;	/* if CODES, current state */
41797c478bd9Sstevel@tonic-gate 	} sub;	/* submode */
41807c478bd9Sstevel@tonic-gate 	uInt last;	/* true if this block is the last block */
41817c478bd9Sstevel@tonic-gate 
41827c478bd9Sstevel@tonic-gate 	/* mode independent information */
41837c478bd9Sstevel@tonic-gate 	uInt bitk;	/* bits in bit buffer */
41847c478bd9Sstevel@tonic-gate 	uLong bitb;	/* bit buffer */
41857c478bd9Sstevel@tonic-gate 	inflate_huft *hufts;  /* single malloc for tree space */
41867c478bd9Sstevel@tonic-gate 	Bytef *window;	/* sliding window */
41877c478bd9Sstevel@tonic-gate 	Bytef *end;	/* one byte after sliding window */
41887c478bd9Sstevel@tonic-gate 	Bytef *read;	/* window read pointer */
41897c478bd9Sstevel@tonic-gate 	Bytef *write;	/* window write pointer */
41907c478bd9Sstevel@tonic-gate 	check_func checkfn;	/* check function */
41917c478bd9Sstevel@tonic-gate 	uLong check;	/* check on output */
41927c478bd9Sstevel@tonic-gate 
41937c478bd9Sstevel@tonic-gate };
41947c478bd9Sstevel@tonic-gate 
41957c478bd9Sstevel@tonic-gate 
41967c478bd9Sstevel@tonic-gate /* defines for inflate input/output */
41977c478bd9Sstevel@tonic-gate /*   update pointers and return */
41987c478bd9Sstevel@tonic-gate #define	UPDBITS {s->bitb = b; s->bitk = k; }
41997c478bd9Sstevel@tonic-gate #define	UPDIN {z->avail_in = n; z->total_in += p-z->next_in; z->next_in = p; }
42007c478bd9Sstevel@tonic-gate #define	UPDOUT {s->write = q; }
42017c478bd9Sstevel@tonic-gate #define	UPDATE {UPDBITS UPDIN UPDOUT}
42027c478bd9Sstevel@tonic-gate #define	LEAVE {UPDATE return (inflate_flush(s, z, r)); }
42037c478bd9Sstevel@tonic-gate /*   get bytes and bits */
42047c478bd9Sstevel@tonic-gate #define	LOADIN {p = z->next_in; n = z->avail_in; b = s->bitb; k = s->bitk; }
42057c478bd9Sstevel@tonic-gate #define	NEEDBYTE { if (n) r = Z_OK; else LEAVE }
42067c478bd9Sstevel@tonic-gate #define	NEXTBYTE (n--, *p++)
42077c478bd9Sstevel@tonic-gate #define	NEEDBITS(j) { while (k < (j)) { NEEDBYTE; b |= ((uLong)NEXTBYTE)<<k; \
42087c478bd9Sstevel@tonic-gate 	k += 8; }}
42097c478bd9Sstevel@tonic-gate #define	DUMPBITS(j) {b >>= (j); k -= (j); }
42107c478bd9Sstevel@tonic-gate /*   output bytes */
42117c478bd9Sstevel@tonic-gate #define	WAVAIL (uInt)(q < s->read ? s->read-q-1 : s->end-q)
42127c478bd9Sstevel@tonic-gate #define	LOADOUT {q = s->write; m = (uInt)WAVAIL; }
42137c478bd9Sstevel@tonic-gate #define	WWRAP {if (q == s->end && s->read != s->window) {q = s->window; \
42147c478bd9Sstevel@tonic-gate 	m = (uInt)WAVAIL; }}
42157c478bd9Sstevel@tonic-gate #define	FLUSH {UPDOUT r = inflate_flush(s, z, r); LOADOUT}
42167c478bd9Sstevel@tonic-gate #define	NEEDOUT {if (m == 0) {WWRAP if (m == 0) { FLUSH WWRAP \
42177c478bd9Sstevel@tonic-gate 	if (m == 0) LEAVE }} r = Z_OK; }
42187c478bd9Sstevel@tonic-gate #define	OUTBYTE(a) {*q++ = (Byte)(a); m--; }
42197c478bd9Sstevel@tonic-gate /*   load local pointers */
42207c478bd9Sstevel@tonic-gate #define	LOAD {LOADIN LOADOUT}
42217c478bd9Sstevel@tonic-gate 
42227c478bd9Sstevel@tonic-gate /* masks for lower bits (size given to avoid silly warnings with Visual C++) */
42237c478bd9Sstevel@tonic-gate extern uInt inflate_mask[17];
42247c478bd9Sstevel@tonic-gate 
42257c478bd9Sstevel@tonic-gate /* copy as much as possible from the sliding window to the output area */
42267c478bd9Sstevel@tonic-gate extern int inflate_flush OF((
42277c478bd9Sstevel@tonic-gate     inflate_blocks_statef *,
42287c478bd9Sstevel@tonic-gate     z_streamp,
42297c478bd9Sstevel@tonic-gate     int));
42307c478bd9Sstevel@tonic-gate 
42317c478bd9Sstevel@tonic-gate #ifndef NO_DUMMY_DECL
42327c478bd9Sstevel@tonic-gate struct internal_state {int dummy; };	/* for buggy compilers */
42337c478bd9Sstevel@tonic-gate #endif
42347c478bd9Sstevel@tonic-gate 
42357c478bd9Sstevel@tonic-gate #endif
42367c478bd9Sstevel@tonic-gate /* --- infutil.h */
42377c478bd9Sstevel@tonic-gate 
42387c478bd9Sstevel@tonic-gate #ifndef NO_DUMMY_DECL
42397c478bd9Sstevel@tonic-gate struct inflate_codes_state {int dummy; };	/* for buggy compilers */
42407c478bd9Sstevel@tonic-gate #endif
42417c478bd9Sstevel@tonic-gate 
42427c478bd9Sstevel@tonic-gate /* Table for deflate from PKZIP's appnote.txt. */
42437c478bd9Sstevel@tonic-gate local const uInt border[] = { /* Order of the bit length code lengths */
42447c478bd9Sstevel@tonic-gate 	16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15};
42457c478bd9Sstevel@tonic-gate 
42467c478bd9Sstevel@tonic-gate /*
42477c478bd9Sstevel@tonic-gate  * Notes beyond the 1.93a appnote.txt:
42487c478bd9Sstevel@tonic-gate  *
42497c478bd9Sstevel@tonic-gate  *   1. Distance pointers never point before the beginning of the output
42507c478bd9Sstevel@tonic-gate  *      stream.
42517c478bd9Sstevel@tonic-gate  *   2. Distance pointers can point back across blocks, up to 32k away.
42527c478bd9Sstevel@tonic-gate  *   3. There is an implied maximum of 7 bits for the bit length table and
42537c478bd9Sstevel@tonic-gate  *      15 bits for the actual data.
42547c478bd9Sstevel@tonic-gate  *   4. If only one code exists, then it is encoded using one bit.  (Zero
42557c478bd9Sstevel@tonic-gate  *      would be more efficient, but perhaps a little confusing.)  If two
42567c478bd9Sstevel@tonic-gate  *      codes exist, they are coded using one bit each (0 and 1).
42577c478bd9Sstevel@tonic-gate  *   5. There is no way of sending zero distance codes--a dummy must be
42587c478bd9Sstevel@tonic-gate  *      sent if there are none.  (History: a pre 2.0 version of PKZIP would
42597c478bd9Sstevel@tonic-gate  *      store blocks with no distance codes, but this was discovered to be
42607c478bd9Sstevel@tonic-gate  *      too harsh a criterion.)  Valid only for 1.93a.  2.04c does allow
42617c478bd9Sstevel@tonic-gate  *      zero distance codes, which is sent as one code of zero bits in
42627c478bd9Sstevel@tonic-gate  *      length.
42637c478bd9Sstevel@tonic-gate  *   6. There are up to 286 literal/length codes.  Code 256 represents the
42647c478bd9Sstevel@tonic-gate  *      end-of-block.  Note however that the static length tree defines
42657c478bd9Sstevel@tonic-gate  *      288 codes just to fill out the Huffman codes.  Codes 286 and 287
42667c478bd9Sstevel@tonic-gate  *      cannot be used though, since there is no length base or extra bits
42677c478bd9Sstevel@tonic-gate  *      defined for them.  Similarily, there are up to 30 distance codes.
42687c478bd9Sstevel@tonic-gate  *      However, static trees define 32 codes (all 5 bits) to fill out the
42697c478bd9Sstevel@tonic-gate  *      Huffman codes, but the last two had better not show up in the data.
42707c478bd9Sstevel@tonic-gate  *   7. Unzip can check dynamic Huffman blocks for complete code sets.
42717c478bd9Sstevel@tonic-gate  *      The exception is that a single code would not be complete (see #4).
42727c478bd9Sstevel@tonic-gate  *   8. The five bits following the block type is really the number of
42737c478bd9Sstevel@tonic-gate  *      literal codes sent minus 257.
42747c478bd9Sstevel@tonic-gate  *   9. Length codes 8,16,16 are interpreted as 13 length codes of 8 bits
42757c478bd9Sstevel@tonic-gate  *      (1+6+6).  Therefore, to output three times the length, you output
42767c478bd9Sstevel@tonic-gate  *      three codes (1+1+1), whereas to output four times the same length,
42777c478bd9Sstevel@tonic-gate  *      you only need two codes (1+3).  Hmm.
42787c478bd9Sstevel@tonic-gate  *  10. In the tree reconstruction algorithm, Code = Code + Increment
42797c478bd9Sstevel@tonic-gate  *      only if BitLength(i) is not zero.  (Pretty obvious.)
42807c478bd9Sstevel@tonic-gate  *  11. Correction: 4 Bits: #of Bit Length codes - 4     (4 - 19)
42817c478bd9Sstevel@tonic-gate  *  12. Note: length code 284 can represent 227-258, but length code 285
42827c478bd9Sstevel@tonic-gate  *      really is 258.  The last length deserves its own, short code
42837c478bd9Sstevel@tonic-gate  *      since it gets used a lot in very redundant files.  The length
42847c478bd9Sstevel@tonic-gate  *      258 is special since 258 - 3 (the min match length) is 255.
42857c478bd9Sstevel@tonic-gate  *  13. The literal/length and distance code bit lengths are read as a
42867c478bd9Sstevel@tonic-gate  *      single stream of lengths.  It is possible (and advantageous) for
42877c478bd9Sstevel@tonic-gate  *      a repeat code (16, 17, or 18) to go across the boundary between
42887c478bd9Sstevel@tonic-gate  *      the two sets of lengths.
42897c478bd9Sstevel@tonic-gate  */
42907c478bd9Sstevel@tonic-gate 
42917c478bd9Sstevel@tonic-gate 
42927c478bd9Sstevel@tonic-gate void
inflate_blocks_reset(s,z,c)42937c478bd9Sstevel@tonic-gate inflate_blocks_reset(s, z, c)
42947c478bd9Sstevel@tonic-gate inflate_blocks_statef *s;
42957c478bd9Sstevel@tonic-gate z_streamp z;
42967c478bd9Sstevel@tonic-gate uLongf *c;
42977c478bd9Sstevel@tonic-gate {
42987c478bd9Sstevel@tonic-gate 	if (c != Z_NULL)
42997c478bd9Sstevel@tonic-gate 		*c = s->check;
43007c478bd9Sstevel@tonic-gate 	if ((s->mode == BTREE || s->mode == DTREE) &&
43017c478bd9Sstevel@tonic-gate 	    s->sub.trees.blens != Z_NULL) {
43027c478bd9Sstevel@tonic-gate 		ZFREE(z, s->sub.trees.blens);
43037c478bd9Sstevel@tonic-gate 		s->sub.trees.blens = Z_NULL;
43047c478bd9Sstevel@tonic-gate 	}
43057c478bd9Sstevel@tonic-gate 	if (s->mode == CODES && s->sub.decode.codes != Z_NULL) {
43067c478bd9Sstevel@tonic-gate 		(void) inflate_codes_free(s->sub.decode.codes, z);
43077c478bd9Sstevel@tonic-gate 		s->sub.decode.codes = Z_NULL;
43087c478bd9Sstevel@tonic-gate 	}
43097c478bd9Sstevel@tonic-gate 	s->mode = TYPE;
43107c478bd9Sstevel@tonic-gate 	s->bitk = 0;
43117c478bd9Sstevel@tonic-gate 	s->bitb = 0;
43127c478bd9Sstevel@tonic-gate 	s->read = s->write = s->window;
43137c478bd9Sstevel@tonic-gate 	if (s->checkfn != Z_NULL)
43147c478bd9Sstevel@tonic-gate 		z->adler = s->check = (*s->checkfn)(0L, Z_NULL, 0);
43157c478bd9Sstevel@tonic-gate 	Trace((stderr, "inflate:   blocks reset\n"));
43167c478bd9Sstevel@tonic-gate }
43177c478bd9Sstevel@tonic-gate 
43187c478bd9Sstevel@tonic-gate inflate_blocks_statef *
inflate_blocks_new(z,c,w)43197c478bd9Sstevel@tonic-gate inflate_blocks_new(z, c, w)
43207c478bd9Sstevel@tonic-gate z_streamp z;
43217c478bd9Sstevel@tonic-gate check_func c;
43227c478bd9Sstevel@tonic-gate uInt w;
43237c478bd9Sstevel@tonic-gate {
43247c478bd9Sstevel@tonic-gate 	inflate_blocks_statef *s;
43257c478bd9Sstevel@tonic-gate 
43267c478bd9Sstevel@tonic-gate 	if ((s = (inflate_blocks_statef *)ZALLOC
43277c478bd9Sstevel@tonic-gate 	    (z, 1, sizeof (struct inflate_blocks_state))) == Z_NULL)
43287c478bd9Sstevel@tonic-gate 		return (s);
43297c478bd9Sstevel@tonic-gate 	s->hufts = (inflate_huft *)ZALLOC(z, MANY, sizeof (inflate_huft));
43307c478bd9Sstevel@tonic-gate 	if (s->hufts == Z_NULL) {
43317c478bd9Sstevel@tonic-gate 		ZFREE(z, s);
43327c478bd9Sstevel@tonic-gate 		return (Z_NULL);
43337c478bd9Sstevel@tonic-gate 	}
43347c478bd9Sstevel@tonic-gate 	if ((s->window = (Bytef *)ZALLOC(z, 1, w)) == Z_NULL)
43357c478bd9Sstevel@tonic-gate 	{
43367c478bd9Sstevel@tonic-gate 		ZFREE(z, s->hufts);
43377c478bd9Sstevel@tonic-gate 		ZFREE(z, s);
43387c478bd9Sstevel@tonic-gate 		return (Z_NULL);
43397c478bd9Sstevel@tonic-gate 	}
43407c478bd9Sstevel@tonic-gate 	s->end = s->window + w;
43417c478bd9Sstevel@tonic-gate 	s->checkfn = c;
43427c478bd9Sstevel@tonic-gate 	s->mode = TYPE;
43437c478bd9Sstevel@tonic-gate 	Trace((stderr, "inflate:   blocks allocated\n"));
43447c478bd9Sstevel@tonic-gate 	inflate_blocks_reset(s, z, Z_NULL);
43457c478bd9Sstevel@tonic-gate 	return (s);
43467c478bd9Sstevel@tonic-gate }
43477c478bd9Sstevel@tonic-gate 
43487c478bd9Sstevel@tonic-gate 
43497c478bd9Sstevel@tonic-gate int
inflate_blocks(s,z,r)43507c478bd9Sstevel@tonic-gate inflate_blocks(s, z, r)
43517c478bd9Sstevel@tonic-gate inflate_blocks_statef *s;
43527c478bd9Sstevel@tonic-gate z_streamp z;
43537c478bd9Sstevel@tonic-gate int r;
43547c478bd9Sstevel@tonic-gate {
43557c478bd9Sstevel@tonic-gate 	uInt t;	/* temporary storage */
43567c478bd9Sstevel@tonic-gate 	uLong b;	/* bit buffer */
43577c478bd9Sstevel@tonic-gate 	uInt k;	/* bits in bit buffer */
43587c478bd9Sstevel@tonic-gate 	Bytef *p;	/* input data pointer */
43597c478bd9Sstevel@tonic-gate 	uInt n;	/* bytes available there */
43607c478bd9Sstevel@tonic-gate 	Bytef *q;	/* output window write pointer */
43617c478bd9Sstevel@tonic-gate 	uInt m;	/* bytes to end of window or read pointer */
43627c478bd9Sstevel@tonic-gate 
43637c478bd9Sstevel@tonic-gate 	/* copy input/output information to locals (UPDATE macro restores) */
43647c478bd9Sstevel@tonic-gate 	LOAD;
43657c478bd9Sstevel@tonic-gate 
43667c478bd9Sstevel@tonic-gate 	/* process input based on current state */
43677c478bd9Sstevel@tonic-gate 	/* CONSTCOND */
43687c478bd9Sstevel@tonic-gate 	while (1)
43697c478bd9Sstevel@tonic-gate 		switch (s->mode)
43707c478bd9Sstevel@tonic-gate 	{
43717c478bd9Sstevel@tonic-gate 	case TYPE:
43727c478bd9Sstevel@tonic-gate 		NEEDBITS(3);
43737c478bd9Sstevel@tonic-gate 		t = (uInt)b & 7;
43747c478bd9Sstevel@tonic-gate 		s->last = t & 1;
43757c478bd9Sstevel@tonic-gate 		switch (t >> 1)
43767c478bd9Sstevel@tonic-gate 		{
43777c478bd9Sstevel@tonic-gate 		case 0:			/* stored */
43787c478bd9Sstevel@tonic-gate 			Trace((stderr, "inflate:     stored block%s\n",
43797c478bd9Sstevel@tonic-gate 			    s->last ? " (last)" : ""));
43807c478bd9Sstevel@tonic-gate 			DUMPBITS(3);
43817c478bd9Sstevel@tonic-gate 			t = k & 7;	/* go to byte boundary */
43827c478bd9Sstevel@tonic-gate 			DUMPBITS(t);
43837c478bd9Sstevel@tonic-gate 			s->mode = LENS;	/* get length of stored block */
43847c478bd9Sstevel@tonic-gate 			break;
43857c478bd9Sstevel@tonic-gate 		case 1:			/* fixed */
43867c478bd9Sstevel@tonic-gate 			Trace((stderr, "inflate:     fixed codes block%s\n",
43877c478bd9Sstevel@tonic-gate 			    s->last ? " (last)" : ""));
43887c478bd9Sstevel@tonic-gate 			{
43897c478bd9Sstevel@tonic-gate 				uInt bl, bd;
43907c478bd9Sstevel@tonic-gate 				const inflate_huft *tl, *td;
43917c478bd9Sstevel@tonic-gate 
43927c478bd9Sstevel@tonic-gate 				(void) inflate_trees_fixed(&bl, &bd, &tl, &td,
43937c478bd9Sstevel@tonic-gate 				    z);
43947c478bd9Sstevel@tonic-gate 				s->sub.decode.codes = inflate_codes_new(bl,
43957c478bd9Sstevel@tonic-gate 				    bd, tl, td, z);
43967c478bd9Sstevel@tonic-gate 				if (s->sub.decode.codes == Z_NULL)
43977c478bd9Sstevel@tonic-gate 				{
43987c478bd9Sstevel@tonic-gate 					r = Z_MEM_ERROR;
43997c478bd9Sstevel@tonic-gate 					LEAVE
44007c478bd9Sstevel@tonic-gate 				}
44017c478bd9Sstevel@tonic-gate 			}
44027c478bd9Sstevel@tonic-gate 			DUMPBITS(3);
44037c478bd9Sstevel@tonic-gate 			s->mode = CODES;
44047c478bd9Sstevel@tonic-gate 			break;
44057c478bd9Sstevel@tonic-gate 		case 2:			/* dynamic */
44067c478bd9Sstevel@tonic-gate 			Trace((stderr, "inflate:     dynamic codes block%s\n",
44077c478bd9Sstevel@tonic-gate 			    s->last ? " (last)" : ""));
44087c478bd9Sstevel@tonic-gate 			DUMPBITS(3);
44097c478bd9Sstevel@tonic-gate 			s->mode = TABLE;
44107c478bd9Sstevel@tonic-gate 			break;
44117c478bd9Sstevel@tonic-gate 		case 3:			/* illegal */
44127c478bd9Sstevel@tonic-gate 			DUMPBITS(3);
44137c478bd9Sstevel@tonic-gate 			s->mode = BADB;
44147c478bd9Sstevel@tonic-gate 			z->msg = "invalid block type";
44157c478bd9Sstevel@tonic-gate 			r = Z_DATA_ERROR;
44167c478bd9Sstevel@tonic-gate 			LEAVE
44177c478bd9Sstevel@tonic-gate 		}
44187c478bd9Sstevel@tonic-gate 		break;
44197c478bd9Sstevel@tonic-gate 	case LENS:
44207c478bd9Sstevel@tonic-gate 		NEEDBITS(32);
44217c478bd9Sstevel@tonic-gate 		if ((((~b) >> 16) & 0xffff) != (b & 0xffff))
44227c478bd9Sstevel@tonic-gate 		{
44237c478bd9Sstevel@tonic-gate 			s->mode = BADB;
44247c478bd9Sstevel@tonic-gate 			z->msg = "invalid stored block lengths";
44257c478bd9Sstevel@tonic-gate 			r = Z_DATA_ERROR;
44267c478bd9Sstevel@tonic-gate 			LEAVE
44277c478bd9Sstevel@tonic-gate 		}
44287c478bd9Sstevel@tonic-gate 		s->sub.left = (uInt)b & 0xffff;
44297c478bd9Sstevel@tonic-gate 		b = k = 0;	/* dump bits */
44307c478bd9Sstevel@tonic-gate 		Tracev((stderr, "inflate:       stored length %u\n",
44317c478bd9Sstevel@tonic-gate 		    s->sub.left));
44327c478bd9Sstevel@tonic-gate 		s->mode = s->sub.left ? STORED : (s->last ? DRY : TYPE);
44337c478bd9Sstevel@tonic-gate 		break;
44347c478bd9Sstevel@tonic-gate 	case STORED:
44357c478bd9Sstevel@tonic-gate 		if (n == 0)
44367c478bd9Sstevel@tonic-gate 			LEAVE
44377c478bd9Sstevel@tonic-gate 		NEEDOUT;
44387c478bd9Sstevel@tonic-gate 		t = s->sub.left;
44397c478bd9Sstevel@tonic-gate 		if (t > n) t = n;
44407c478bd9Sstevel@tonic-gate 		if (t > m) t = m;
44417c478bd9Sstevel@tonic-gate 		zmemcpy(q, p, t);
44427c478bd9Sstevel@tonic-gate 		p += t;  n -= t;
44437c478bd9Sstevel@tonic-gate 		q += t;  m -= t;
44447c478bd9Sstevel@tonic-gate 		if ((s->sub.left -= t) != 0)
44457c478bd9Sstevel@tonic-gate 			break;
44467c478bd9Sstevel@tonic-gate 		Tracev((stderr,
44477c478bd9Sstevel@tonic-gate 		    "inflate:       stored end, %lu total out\n",
44487c478bd9Sstevel@tonic-gate 		    z->total_out + (q >= s->read ? q - s->read :
44497c478bd9Sstevel@tonic-gate 			(s->end - s->read) + (q - s->window))));
44507c478bd9Sstevel@tonic-gate 		s->mode = s->last ? DRY : TYPE;
44517c478bd9Sstevel@tonic-gate 		break;
44527c478bd9Sstevel@tonic-gate 	case TABLE:
44537c478bd9Sstevel@tonic-gate 		NEEDBITS(14);
44547c478bd9Sstevel@tonic-gate 		s->sub.trees.table = t = (uInt)b & 0x3fff;
44557c478bd9Sstevel@tonic-gate #ifndef PKZIP_BUG_WORKAROUND
44567c478bd9Sstevel@tonic-gate 		if ((t & 0x1f) > 29 || ((t >> 5) & 0x1f) > 29)
44577c478bd9Sstevel@tonic-gate 		{
44587c478bd9Sstevel@tonic-gate 			s->mode = BADB;
44597c478bd9Sstevel@tonic-gate 			z->msg =
44607c478bd9Sstevel@tonic-gate 			    (char *)"too many length or distance symbols";
44617c478bd9Sstevel@tonic-gate 			r = Z_DATA_ERROR;
44627c478bd9Sstevel@tonic-gate 			LEAVE
44637c478bd9Sstevel@tonic-gate 		}
44647c478bd9Sstevel@tonic-gate #endif
44657c478bd9Sstevel@tonic-gate 		t = 258 + (t & 0x1f) + ((t >> 5) & 0x1f);
44667c478bd9Sstevel@tonic-gate 		/* if (t < 19) t = 19; */
44677c478bd9Sstevel@tonic-gate 		if ((s->sub.trees.blens = (uIntf*)ZALLOC(z, t,
44687c478bd9Sstevel@tonic-gate 		    sizeof (uInt))) == Z_NULL)
44697c478bd9Sstevel@tonic-gate 		{
44707c478bd9Sstevel@tonic-gate 			r = Z_MEM_ERROR;
44717c478bd9Sstevel@tonic-gate 			LEAVE
44727c478bd9Sstevel@tonic-gate 		}
44737c478bd9Sstevel@tonic-gate 		DUMPBITS(14);
44747c478bd9Sstevel@tonic-gate 		s->sub.trees.index = 0;
44757c478bd9Sstevel@tonic-gate 		Tracev((stderr, "inflate:       table sizes ok\n"));
44767c478bd9Sstevel@tonic-gate 		s->mode = BTREE;
44777c478bd9Sstevel@tonic-gate 		/* FALLTHRU */
44787c478bd9Sstevel@tonic-gate 	case BTREE:
44797c478bd9Sstevel@tonic-gate 		while (s->sub.trees.index < 4 + (s->sub.trees.table >> 10))
44807c478bd9Sstevel@tonic-gate 		{
44817c478bd9Sstevel@tonic-gate 			NEEDBITS(3);
44827c478bd9Sstevel@tonic-gate 			s->sub.trees.blens[border[s->sub.trees.index++]] =
44837c478bd9Sstevel@tonic-gate 			    (uInt)b & 7;
44847c478bd9Sstevel@tonic-gate 			DUMPBITS(3);
44857c478bd9Sstevel@tonic-gate 		}
44867c478bd9Sstevel@tonic-gate 		while (s->sub.trees.index < 19)
44877c478bd9Sstevel@tonic-gate 			s->sub.trees.blens[border[s->sub.trees.index++]] =
44887c478bd9Sstevel@tonic-gate 			    0;
44897c478bd9Sstevel@tonic-gate 		s->sub.trees.bb = 7;
44907c478bd9Sstevel@tonic-gate 		t = inflate_trees_bits(s->sub.trees.blens, &s->sub.trees.bb,
44917c478bd9Sstevel@tonic-gate 		    &s->sub.trees.tb, s->hufts, z);
44927c478bd9Sstevel@tonic-gate 		if (t != Z_OK)
44937c478bd9Sstevel@tonic-gate 		{
44947c478bd9Sstevel@tonic-gate 			ZFREE(z, s->sub.trees.blens);
44957c478bd9Sstevel@tonic-gate 			s->sub.trees.blens = Z_NULL;
44967c478bd9Sstevel@tonic-gate 			r = t;
44977c478bd9Sstevel@tonic-gate 			if (r == Z_DATA_ERROR)
44987c478bd9Sstevel@tonic-gate 				s->mode = BADB;
44997c478bd9Sstevel@tonic-gate 			LEAVE
45007c478bd9Sstevel@tonic-gate 		}
45017c478bd9Sstevel@tonic-gate 		s->sub.trees.index = 0;
45027c478bd9Sstevel@tonic-gate 		Tracev((stderr, "inflate:       bits tree ok\n"));
45037c478bd9Sstevel@tonic-gate 		s->mode = DTREE;
45047c478bd9Sstevel@tonic-gate 		/* FALLTHRU */
45057c478bd9Sstevel@tonic-gate 	case DTREE:
45067c478bd9Sstevel@tonic-gate 		while (t = s->sub.trees.table,
45077c478bd9Sstevel@tonic-gate 		    s->sub.trees.index < 258 + (t & 0x1f) +
45087c478bd9Sstevel@tonic-gate 		    ((t >> 5) & 0x1f))
45097c478bd9Sstevel@tonic-gate 		{
45107c478bd9Sstevel@tonic-gate 			inflate_huft *h;
45117c478bd9Sstevel@tonic-gate 			uInt i, j, c;
45127c478bd9Sstevel@tonic-gate 
45137c478bd9Sstevel@tonic-gate 			t = s->sub.trees.bb;
45147c478bd9Sstevel@tonic-gate 			NEEDBITS(t);
45157c478bd9Sstevel@tonic-gate 			h = s->sub.trees.tb + ((uInt)b & inflate_mask[t]);
45167c478bd9Sstevel@tonic-gate 			t = h->word.what.Bits;
45177c478bd9Sstevel@tonic-gate 			c = h->base;
45187c478bd9Sstevel@tonic-gate 			if (c < 16)
45197c478bd9Sstevel@tonic-gate 			{
45207c478bd9Sstevel@tonic-gate 				DUMPBITS(t);
45217c478bd9Sstevel@tonic-gate 				s->sub.trees.blens[s->sub.trees.index++] =
45227c478bd9Sstevel@tonic-gate 				    c;
45237c478bd9Sstevel@tonic-gate 			} else { /* c == 16..18 */
45247c478bd9Sstevel@tonic-gate 				i = c == 18 ? 7 : c - 14;
45257c478bd9Sstevel@tonic-gate 				j = c == 18 ? 11 : 3;
45267c478bd9Sstevel@tonic-gate 				NEEDBITS(t + i);
45277c478bd9Sstevel@tonic-gate 				DUMPBITS(t);
45287c478bd9Sstevel@tonic-gate 				j += (uInt)b & inflate_mask[i];
45297c478bd9Sstevel@tonic-gate 				DUMPBITS(i);
45307c478bd9Sstevel@tonic-gate 				i = s->sub.trees.index;
45317c478bd9Sstevel@tonic-gate 				t = s->sub.trees.table;
45327c478bd9Sstevel@tonic-gate 				if (i + j > 258 + (t & 0x1f) +
45337c478bd9Sstevel@tonic-gate 				    ((t >> 5) & 0x1f) ||
45347c478bd9Sstevel@tonic-gate 				    (c == 16 && i < 1))
45357c478bd9Sstevel@tonic-gate 				{
45367c478bd9Sstevel@tonic-gate 					ZFREE(z, s->sub.trees.blens);
45377c478bd9Sstevel@tonic-gate 					s->sub.trees.blens = Z_NULL;
45387c478bd9Sstevel@tonic-gate 					s->mode = BADB;
45397c478bd9Sstevel@tonic-gate 					z->msg = "invalid bit length repeat";
45407c478bd9Sstevel@tonic-gate 					r = Z_DATA_ERROR;
45417c478bd9Sstevel@tonic-gate 					LEAVE
45427c478bd9Sstevel@tonic-gate 				}
45437c478bd9Sstevel@tonic-gate 				c = c == 16 ? s->sub.trees.blens[i - 1] : 0;
45447c478bd9Sstevel@tonic-gate 				do {
45457c478bd9Sstevel@tonic-gate 					s->sub.trees.blens[i++] = c;
45467c478bd9Sstevel@tonic-gate 				} while (--j);
45477c478bd9Sstevel@tonic-gate 				s->sub.trees.index = i;
45487c478bd9Sstevel@tonic-gate 			}
45497c478bd9Sstevel@tonic-gate 		}
45507c478bd9Sstevel@tonic-gate 		s->sub.trees.tb = Z_NULL;
45517c478bd9Sstevel@tonic-gate 		{
45527c478bd9Sstevel@tonic-gate 			uInt bl, bd;
45537c478bd9Sstevel@tonic-gate 			inflate_huft *tl, *td;
45547c478bd9Sstevel@tonic-gate 			inflate_codes_statef *c;
45557c478bd9Sstevel@tonic-gate 
45567c478bd9Sstevel@tonic-gate 				/* must be <= 9 for lookahead assumptions */
45577c478bd9Sstevel@tonic-gate 			bl = 9;
45587c478bd9Sstevel@tonic-gate 				/* must be <= 9 for lookahead assumptions */
45597c478bd9Sstevel@tonic-gate 			bd = 6;
45607c478bd9Sstevel@tonic-gate 			t = s->sub.trees.table;
45617c478bd9Sstevel@tonic-gate 			t = inflate_trees_dynamic(257 + (t & 0x1f),
45627c478bd9Sstevel@tonic-gate 			    1 + ((t >> 5) & 0x1f),
45637c478bd9Sstevel@tonic-gate 			    s->sub.trees.blens, &bl, &bd, &tl, &td,
45647c478bd9Sstevel@tonic-gate 			    s->hufts, z);
45657c478bd9Sstevel@tonic-gate 			ZFREE(z, s->sub.trees.blens);
45667c478bd9Sstevel@tonic-gate 			s->sub.trees.blens = Z_NULL;
45677c478bd9Sstevel@tonic-gate 			if (t != Z_OK)
45687c478bd9Sstevel@tonic-gate 			{
45697c478bd9Sstevel@tonic-gate 				if (t == (uInt)Z_DATA_ERROR)
45707c478bd9Sstevel@tonic-gate 					s->mode = BADB;
45717c478bd9Sstevel@tonic-gate 				r = t;
45727c478bd9Sstevel@tonic-gate 				LEAVE
45737c478bd9Sstevel@tonic-gate 			}
45747c478bd9Sstevel@tonic-gate 			Tracev((stderr, "inflate:       trees ok\n"));
45757c478bd9Sstevel@tonic-gate 			if ((c = inflate_codes_new(bl, bd, tl, td, z)) ==
45767c478bd9Sstevel@tonic-gate 			    Z_NULL)
45777c478bd9Sstevel@tonic-gate 			{
45787c478bd9Sstevel@tonic-gate 				r = Z_MEM_ERROR;
45797c478bd9Sstevel@tonic-gate 				LEAVE
45807c478bd9Sstevel@tonic-gate 			}
45817c478bd9Sstevel@tonic-gate 			s->sub.decode.codes = c;
45827c478bd9Sstevel@tonic-gate 		}
45837c478bd9Sstevel@tonic-gate 		s->mode = CODES;
45847c478bd9Sstevel@tonic-gate 		/* FALLTHRU */
45857c478bd9Sstevel@tonic-gate 	case CODES:
45867c478bd9Sstevel@tonic-gate 		UPDATE;
45877c478bd9Sstevel@tonic-gate 		if ((r = inflate_codes(s, z, r)) != Z_STREAM_END)
45887c478bd9Sstevel@tonic-gate 			return (inflate_flush(s, z, r));
45897c478bd9Sstevel@tonic-gate 		r = Z_OK;
45907c478bd9Sstevel@tonic-gate 		(void) inflate_codes_free(s->sub.decode.codes, z);
45917c478bd9Sstevel@tonic-gate 		LOAD;
45927c478bd9Sstevel@tonic-gate 		Tracev((stderr, "inflate:       codes end, %lu total out\n",
45937c478bd9Sstevel@tonic-gate 		    z->total_out + (q >= s->read ? q - s->read :
45947c478bd9Sstevel@tonic-gate 			(s->end - s->read) + (q - s->window))));
45957c478bd9Sstevel@tonic-gate 		if (!s->last)
45967c478bd9Sstevel@tonic-gate 		{
45977c478bd9Sstevel@tonic-gate 			s->mode = TYPE;
45987c478bd9Sstevel@tonic-gate 			break;
45997c478bd9Sstevel@tonic-gate 		}
46007c478bd9Sstevel@tonic-gate 		s->mode = DRY;
46017c478bd9Sstevel@tonic-gate 		/* FALLTHRU */
46027c478bd9Sstevel@tonic-gate 	case DRY:
46037c478bd9Sstevel@tonic-gate 		FLUSH;
46047c478bd9Sstevel@tonic-gate 		if (s->read != s->write)
46057c478bd9Sstevel@tonic-gate 			LEAVE
46067c478bd9Sstevel@tonic-gate 		s->mode = DONEB;
46077c478bd9Sstevel@tonic-gate 		/* FALLTHRU */
46087c478bd9Sstevel@tonic-gate 	case DONEB:
46097c478bd9Sstevel@tonic-gate 		r = Z_STREAM_END;
46107c478bd9Sstevel@tonic-gate 		LEAVE
46117c478bd9Sstevel@tonic-gate 	case BADB:
46127c478bd9Sstevel@tonic-gate 		r = Z_DATA_ERROR;
46137c478bd9Sstevel@tonic-gate 		LEAVE
46147c478bd9Sstevel@tonic-gate 	default:
46157c478bd9Sstevel@tonic-gate 		r = Z_STREAM_ERROR;
46167c478bd9Sstevel@tonic-gate 		LEAVE
46177c478bd9Sstevel@tonic-gate 	}
46187c478bd9Sstevel@tonic-gate 	/* NOTREACHED */
46197c478bd9Sstevel@tonic-gate 	/* otherwise lint complains */
46207c478bd9Sstevel@tonic-gate }
46217c478bd9Sstevel@tonic-gate 
46227c478bd9Sstevel@tonic-gate 
46237c478bd9Sstevel@tonic-gate int
inflate_blocks_free(s,z)46247c478bd9Sstevel@tonic-gate inflate_blocks_free(s, z)
46257c478bd9Sstevel@tonic-gate inflate_blocks_statef *s;
46267c478bd9Sstevel@tonic-gate z_streamp z;
46277c478bd9Sstevel@tonic-gate {
46287c478bd9Sstevel@tonic-gate 	inflate_blocks_reset(s, z, Z_NULL);
46297c478bd9Sstevel@tonic-gate 	ZFREE(z, s->window);
46307c478bd9Sstevel@tonic-gate 	s->window = Z_NULL;
46317c478bd9Sstevel@tonic-gate 	ZFREE(z, s->hufts);
46327c478bd9Sstevel@tonic-gate 	s->hufts = Z_NULL;
46337c478bd9Sstevel@tonic-gate 	ZFREE(z, s);
46347c478bd9Sstevel@tonic-gate 	Trace((stderr, "inflate:   blocks freed\n"));
46357c478bd9Sstevel@tonic-gate 	return (Z_OK);
46367c478bd9Sstevel@tonic-gate }
46377c478bd9Sstevel@tonic-gate 
46387c478bd9Sstevel@tonic-gate 
46397c478bd9Sstevel@tonic-gate void
inflate_set_dictionary(s,d,n)46407c478bd9Sstevel@tonic-gate inflate_set_dictionary(s, d, n)
46417c478bd9Sstevel@tonic-gate inflate_blocks_statef *s;
46427c478bd9Sstevel@tonic-gate const Bytef *d;
46437c478bd9Sstevel@tonic-gate uInt  n;
46447c478bd9Sstevel@tonic-gate {
46457c478bd9Sstevel@tonic-gate 	Assert(s->window + n <= s->end, "set dict");
46467c478bd9Sstevel@tonic-gate 	zmemcpy((charf *)s->window, d, n);
46477c478bd9Sstevel@tonic-gate 	s->read = s->write = s->window + n;
46487c478bd9Sstevel@tonic-gate }
46497c478bd9Sstevel@tonic-gate 
46507c478bd9Sstevel@tonic-gate /*
46517c478bd9Sstevel@tonic-gate  * Returns true if inflate is currently at the end of a block
46527c478bd9Sstevel@tonic-gate  * generated by Z_SYNC_FLUSH or Z_FULL_FLUSH.
46537c478bd9Sstevel@tonic-gate  * IN assertion: s != Z_NULL
46547c478bd9Sstevel@tonic-gate  */
46557c478bd9Sstevel@tonic-gate int
inflate_blocks_sync_point(s)46567c478bd9Sstevel@tonic-gate inflate_blocks_sync_point(s)
46577c478bd9Sstevel@tonic-gate inflate_blocks_statef *s;
46587c478bd9Sstevel@tonic-gate {
46597c478bd9Sstevel@tonic-gate 	return (s->mode == LENS);
46607c478bd9Sstevel@tonic-gate }
46617c478bd9Sstevel@tonic-gate 
46627c478bd9Sstevel@tonic-gate /*
46637c478bd9Sstevel@tonic-gate  * This subroutine adds the data at next_in/avail_in to the output history
46647c478bd9Sstevel@tonic-gate  * without performing any output.  The output buffer must be "caught up";
46657c478bd9Sstevel@tonic-gate  * i.e. no pending output (hence s->read equals s->write), and the state must
46667c478bd9Sstevel@tonic-gate  * be BLOCKS (i.e. we should be willing to see the start of a series of
46677c478bd9Sstevel@tonic-gate  * BLOCKS).  On exit, the output will also be caught up, and the checksum
46687c478bd9Sstevel@tonic-gate  * will have been updated if need be.
46697c478bd9Sstevel@tonic-gate  */
46707c478bd9Sstevel@tonic-gate int
inflate_addhistory(s,z)46717c478bd9Sstevel@tonic-gate inflate_addhistory(s, z)
46727c478bd9Sstevel@tonic-gate inflate_blocks_statef *s;
46737c478bd9Sstevel@tonic-gate z_stream *z;
46747c478bd9Sstevel@tonic-gate {
46757c478bd9Sstevel@tonic-gate 	uLong b;	/* bit buffer */  /* NOT USED HERE */
46767c478bd9Sstevel@tonic-gate 	uInt k;	/* bits in bit buffer */ /* NOT USED HERE */
46777c478bd9Sstevel@tonic-gate 	uInt t;	/* temporary storage */
46787c478bd9Sstevel@tonic-gate 	Bytef *p;	/* input data pointer */
46797c478bd9Sstevel@tonic-gate 	uInt n;	/* bytes available there */
46807c478bd9Sstevel@tonic-gate 	Bytef *q;	/* output window write pointer */
46817c478bd9Sstevel@tonic-gate 	uInt m;	/* bytes to end of window or read pointer */
46827c478bd9Sstevel@tonic-gate 
46837c478bd9Sstevel@tonic-gate 	if (s->read != s->write)
46847c478bd9Sstevel@tonic-gate 		return (Z_STREAM_ERROR);
46857c478bd9Sstevel@tonic-gate 	if (s->mode != TYPE)
46867c478bd9Sstevel@tonic-gate 		return (Z_DATA_ERROR);
46877c478bd9Sstevel@tonic-gate 
46887c478bd9Sstevel@tonic-gate 	/* we're ready to rock */
46897c478bd9Sstevel@tonic-gate 	LOAD;
46907c478bd9Sstevel@tonic-gate 	/*
46917c478bd9Sstevel@tonic-gate 	 * while there is input ready, copy to output buffer, moving
46927c478bd9Sstevel@tonic-gate 	 * pointers as needed.
46937c478bd9Sstevel@tonic-gate 	 */
46947c478bd9Sstevel@tonic-gate 	while (n) {
46957c478bd9Sstevel@tonic-gate 		t = n;	/* how many to do */
46967c478bd9Sstevel@tonic-gate 		/* is there room until end of buffer? */
46977c478bd9Sstevel@tonic-gate 		if (t > m) t = m;
46987c478bd9Sstevel@tonic-gate 		/* update check information */
46997c478bd9Sstevel@tonic-gate 		if (s->checkfn != Z_NULL)
47007c478bd9Sstevel@tonic-gate 			s->check = (*s->checkfn)(s->check, q, t);
47017c478bd9Sstevel@tonic-gate 		zmemcpy(q, p, t);
47027c478bd9Sstevel@tonic-gate 		q += t;
47037c478bd9Sstevel@tonic-gate 		p += t;
47047c478bd9Sstevel@tonic-gate 		n -= t;
47057c478bd9Sstevel@tonic-gate 		z->total_out += t;
47067c478bd9Sstevel@tonic-gate 		s->read = q;	/* drag read pointer forward */
47077c478bd9Sstevel@tonic-gate /* WWRAP */	/* expand WWRAP macro by hand to handle s->read */
47087c478bd9Sstevel@tonic-gate 		if (q == s->end) {
47097c478bd9Sstevel@tonic-gate 			s->read = q = s->window;
47107c478bd9Sstevel@tonic-gate 			m = WAVAIL;
47117c478bd9Sstevel@tonic-gate 		}
47127c478bd9Sstevel@tonic-gate 	}
47137c478bd9Sstevel@tonic-gate 	UPDATE;
47147c478bd9Sstevel@tonic-gate 	return (Z_OK);
47157c478bd9Sstevel@tonic-gate }
47167c478bd9Sstevel@tonic-gate 
47177c478bd9Sstevel@tonic-gate 
47187c478bd9Sstevel@tonic-gate /*
47197c478bd9Sstevel@tonic-gate  * At the end of a Deflate-compressed PPP packet, we expect to have seen
47207c478bd9Sstevel@tonic-gate  * a `stored' block type value but not the (zero) length bytes.
47217c478bd9Sstevel@tonic-gate  */
47227c478bd9Sstevel@tonic-gate int
inflate_packet_flush(s)47237c478bd9Sstevel@tonic-gate inflate_packet_flush(s)
47247c478bd9Sstevel@tonic-gate     inflate_blocks_statef *s;
47257c478bd9Sstevel@tonic-gate {
47267c478bd9Sstevel@tonic-gate 	if (s->mode != LENS)
47277c478bd9Sstevel@tonic-gate 		return (Z_DATA_ERROR);
47287c478bd9Sstevel@tonic-gate 	s->mode = TYPE;
47297c478bd9Sstevel@tonic-gate 	return (Z_OK);
47307c478bd9Sstevel@tonic-gate }
47317c478bd9Sstevel@tonic-gate /* --- infblock.c */
47327c478bd9Sstevel@tonic-gate 
47337c478bd9Sstevel@tonic-gate /* +++ inftrees.c */
47347c478bd9Sstevel@tonic-gate /*
47357c478bd9Sstevel@tonic-gate  * inftrees.c -- generate Huffman trees for efficient decoding
47367c478bd9Sstevel@tonic-gate  * Copyright (C) 1995-1998 Mark Adler
47377c478bd9Sstevel@tonic-gate  * For conditions of distribution and use, see copyright notice in zlib.h
47387c478bd9Sstevel@tonic-gate  */
47397c478bd9Sstevel@tonic-gate 
47407c478bd9Sstevel@tonic-gate /* #include "zutil.h" */
47417c478bd9Sstevel@tonic-gate /* #include "inftrees.h" */
47427c478bd9Sstevel@tonic-gate 
47437c478bd9Sstevel@tonic-gate const char inflate_copyright[] =
47447c478bd9Sstevel@tonic-gate " inflate 1.1.3 Copyright 1995-1998 Mark Adler ";
47457c478bd9Sstevel@tonic-gate /*
47467c478bd9Sstevel@tonic-gate  * If you use the zlib library in a product, an acknowledgment is
47477c478bd9Sstevel@tonic-gate  * welcome in the documentation of your product. If for some reason
47487c478bd9Sstevel@tonic-gate  * you cannot include such an acknowledgment, I would appreciate that
47497c478bd9Sstevel@tonic-gate  * you keep this copyright string in the executable of your product.
47507c478bd9Sstevel@tonic-gate  */
47517c478bd9Sstevel@tonic-gate 
47527c478bd9Sstevel@tonic-gate #ifndef NO_DUMMY_DECL
47537c478bd9Sstevel@tonic-gate struct internal_state  {int dummy; };	/* for buggy compilers */
47547c478bd9Sstevel@tonic-gate #endif
47557c478bd9Sstevel@tonic-gate 
47567c478bd9Sstevel@tonic-gate /* simplify the use of the inflate_huft type with some defines */
47577c478bd9Sstevel@tonic-gate #define	exop word.what.Exop
47587c478bd9Sstevel@tonic-gate #define	bits word.what.Bits
47597c478bd9Sstevel@tonic-gate 
47607c478bd9Sstevel@tonic-gate 
47617c478bd9Sstevel@tonic-gate local int huft_build OF((
47627c478bd9Sstevel@tonic-gate 	uIntf *,	/* code lengths in bits */
47637c478bd9Sstevel@tonic-gate 	uInt,		/* number of codes */
47647c478bd9Sstevel@tonic-gate 	uInt,		/* number of "simple" codes */
47657c478bd9Sstevel@tonic-gate 	const uIntf *,	/* list of base values for non-simple codes */
47667c478bd9Sstevel@tonic-gate 	const uIntf *,	/* list of extra bits for non-simple codes */
47677c478bd9Sstevel@tonic-gate 	inflate_huft * FAR*, /* result: starting table */
47687c478bd9Sstevel@tonic-gate 	uIntf *,	/* maximum lookup bits (returns actual) */
47697c478bd9Sstevel@tonic-gate 	inflate_huft *hp,	/* space for trees */
47707c478bd9Sstevel@tonic-gate 	uInt *hn,	/* hufts used in space */
47717c478bd9Sstevel@tonic-gate 	uIntf *v));	/* working area: values in order of bit length */
47727c478bd9Sstevel@tonic-gate 
47737c478bd9Sstevel@tonic-gate /* Tables for deflate from PKZIP's appnote.txt. */
47747c478bd9Sstevel@tonic-gate local const uInt cplens[31] = { /* Copy lengths for literal codes 257..285 */
47757c478bd9Sstevel@tonic-gate 	3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31,
47767c478bd9Sstevel@tonic-gate 	35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0};
47777c478bd9Sstevel@tonic-gate 	/* see note #13 above about 258 */
47787c478bd9Sstevel@tonic-gate local const uInt cplext[31] = { /* Extra bits for literal codes 257..285 */
47797c478bd9Sstevel@tonic-gate 	0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2,
47807c478bd9Sstevel@tonic-gate 	3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0, 112, 112};
47817c478bd9Sstevel@tonic-gate 	/* 112==invalid */
47827c478bd9Sstevel@tonic-gate local const uInt cpdist[30] = { /* Copy offsets for distance codes 0..29 */
47837c478bd9Sstevel@tonic-gate 	1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193,
47847c478bd9Sstevel@tonic-gate 	257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145,
47857c478bd9Sstevel@tonic-gate 	8193, 12289, 16385, 24577};
47867c478bd9Sstevel@tonic-gate local const uInt cpdext[30] = { /* Extra bits for distance codes */
47877c478bd9Sstevel@tonic-gate 	0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6,
47887c478bd9Sstevel@tonic-gate 	7, 7, 8, 8, 9, 9, 10, 10, 11, 11,
47897c478bd9Sstevel@tonic-gate 	12, 12, 13, 13};
47907c478bd9Sstevel@tonic-gate 
47917c478bd9Sstevel@tonic-gate /*
47927c478bd9Sstevel@tonic-gate  * Huffman code decoding is performed using a multi-level table
47937c478bd9Sstevel@tonic-gate  * lookup.  The fastest way to decode is to simply build a lookup
47947c478bd9Sstevel@tonic-gate  * table whose size is determined by the longest code.  However, the
47957c478bd9Sstevel@tonic-gate  * time it takes to build this table can also be a factor if the data
47967c478bd9Sstevel@tonic-gate  * being decoded is not very long.  The most common codes are
47977c478bd9Sstevel@tonic-gate  * necessarily the shortest codes, so those codes dominate the
47987c478bd9Sstevel@tonic-gate  * decoding time, and hence the speed.  The idea is you can have a
47997c478bd9Sstevel@tonic-gate  * shorter table that decodes the shorter, more probable codes, and
48007c478bd9Sstevel@tonic-gate  * then point to subsidiary tables for the longer codes.  The time it
48017c478bd9Sstevel@tonic-gate  * costs to decode the longer codes is then traded against the time it
48027c478bd9Sstevel@tonic-gate  * takes to make longer tables.
48037c478bd9Sstevel@tonic-gate  *
48047c478bd9Sstevel@tonic-gate  * This results of this trade are in the variables lbits and dbits
48057c478bd9Sstevel@tonic-gate  * below.  lbits is the number of bits the first level table for
48067c478bd9Sstevel@tonic-gate  * literal/ length codes can decode in one step, and dbits is the same
48077c478bd9Sstevel@tonic-gate  * thing for the distance codes.  Subsequent tables are also less than
48087c478bd9Sstevel@tonic-gate  * or equal to those sizes.  These values may be adjusted either when
48097c478bd9Sstevel@tonic-gate  * all of the codes are shorter than that, in which case the longest
48107c478bd9Sstevel@tonic-gate  * code length in bits is used, or when the shortest code is *longer*
48117c478bd9Sstevel@tonic-gate  * than the requested table size, in which case the length of the
48127c478bd9Sstevel@tonic-gate  * shortest code in bits is used.
48137c478bd9Sstevel@tonic-gate  *
48147c478bd9Sstevel@tonic-gate  * There are two different values for the two tables, since they code
48157c478bd9Sstevel@tonic-gate  * a different number of possibilities each.  The literal/length table
48167c478bd9Sstevel@tonic-gate  * codes 286 possible values, or in a flat code, a little over eight
48177c478bd9Sstevel@tonic-gate  * bits.  The distance table codes 30 possible values, or a little
48187c478bd9Sstevel@tonic-gate  * less than five bits, flat.  The optimum values for speed end up
48197c478bd9Sstevel@tonic-gate  * being about one bit more than those, so lbits is 8+1 and dbits is
48207c478bd9Sstevel@tonic-gate  * 5+1.  The optimum values may differ though from machine to machine,
48217c478bd9Sstevel@tonic-gate  * and possibly even between compilers.  Your mileage may vary.
48227c478bd9Sstevel@tonic-gate  */
48237c478bd9Sstevel@tonic-gate 
48247c478bd9Sstevel@tonic-gate 
48257c478bd9Sstevel@tonic-gate /* If BMAX needs to be larger than 16, then h and x[] should be uLong. */
48267c478bd9Sstevel@tonic-gate #define	BMAX 15		/* maximum bit length of any code */
48277c478bd9Sstevel@tonic-gate 
48287c478bd9Sstevel@tonic-gate 
48297c478bd9Sstevel@tonic-gate local int
huft_build(b,n,s,d,e,t,m,hp,hn,v)48307c478bd9Sstevel@tonic-gate huft_build(b, n, s, d, e, t, m, hp, hn, v)
48317c478bd9Sstevel@tonic-gate uIntf *b;	/* code lengths in bits (all assumed <= BMAX) */
48327c478bd9Sstevel@tonic-gate uInt n;	/* number of codes (assumed <= 288) */
48337c478bd9Sstevel@tonic-gate uInt s;	/* number of simple-valued codes (0..s-1) */
48347c478bd9Sstevel@tonic-gate const uIntf *d;	/* list of base values for non-simple codes */
48357c478bd9Sstevel@tonic-gate const uIntf *e;	/* list of extra bits for non-simple codes */
48367c478bd9Sstevel@tonic-gate inflate_huft * FAR *t;	/* result: starting table */
48377c478bd9Sstevel@tonic-gate uIntf *m;	/* maximum lookup bits, returns actual */
48387c478bd9Sstevel@tonic-gate inflate_huft *hp;	/* space for trees */
48397c478bd9Sstevel@tonic-gate uInt *hn;		/* hufts used in space */
48407c478bd9Sstevel@tonic-gate uIntf *v;		/* working area: values in order of bit length */
48417c478bd9Sstevel@tonic-gate /*
48427c478bd9Sstevel@tonic-gate  * Given a list of code lengths and a maximum table size, make a set
48437c478bd9Sstevel@tonic-gate  * of tables to decode that set of codes.  Return Z_OK on success,
48447c478bd9Sstevel@tonic-gate  * Z_BUF_ERROR if the given code set is incomplete (the tables are
48457c478bd9Sstevel@tonic-gate  * still built in this case), Z_DATA_ERROR if the input is invalid (an
48467c478bd9Sstevel@tonic-gate  * over-subscribed set of lengths), or Z_MEM_ERROR if not enough
48477c478bd9Sstevel@tonic-gate  * memory.
48487c478bd9Sstevel@tonic-gate  */
48497c478bd9Sstevel@tonic-gate {
48507c478bd9Sstevel@tonic-gate 
48517c478bd9Sstevel@tonic-gate 	uInt a;	/* counter for codes of length k */
48527c478bd9Sstevel@tonic-gate 	uInt c[BMAX+1];	/* bit length count table */
48537c478bd9Sstevel@tonic-gate 	uInt f;	/* i repeats in table every f entries */
48547c478bd9Sstevel@tonic-gate 	int g;	/* maximum code length */
48557c478bd9Sstevel@tonic-gate 	int h;	/* table level */
48567c478bd9Sstevel@tonic-gate 	register uInt i;	/* counter, current code */
48577c478bd9Sstevel@tonic-gate 	register uInt j;	/* counter */
48587c478bd9Sstevel@tonic-gate 	register int k;	/* number of bits in current code */
48597c478bd9Sstevel@tonic-gate 	int l;	/* bits per table (returned in m) */
48607c478bd9Sstevel@tonic-gate 	register uIntf *p;	/* pointer into c[], b[], or v[] */
48617c478bd9Sstevel@tonic-gate 	inflate_huft *q;	/* points to current table */
48627c478bd9Sstevel@tonic-gate 	struct inflate_huft_s r; /* table entry for structure assignment */
48637c478bd9Sstevel@tonic-gate 	inflate_huft *u[BMAX];	/* table stack */
48647c478bd9Sstevel@tonic-gate 	uInt mask;	/* (1 << w) - 1, to avoid cc -O bug on HP */
48657c478bd9Sstevel@tonic-gate 	register int w;	/* bits before this table == (l * h) */
48667c478bd9Sstevel@tonic-gate 	uInt x[BMAX+1];	/* bit offsets, then code stack */
48677c478bd9Sstevel@tonic-gate 	uIntf *xp;	/* pointer into x */
48687c478bd9Sstevel@tonic-gate 	int y;	/* number of dummy codes added */
48697c478bd9Sstevel@tonic-gate 	uInt z;	/* number of entries in current table */
48707c478bd9Sstevel@tonic-gate 
48717c478bd9Sstevel@tonic-gate 	(void) inflate_copyright;
48727c478bd9Sstevel@tonic-gate 	/* Generate counts for each bit length */
48737c478bd9Sstevel@tonic-gate 	p = c;
48747c478bd9Sstevel@tonic-gate #define	C0 *p++ = 0;
48757c478bd9Sstevel@tonic-gate #define	C2 C0 C0 C0 C0
48767c478bd9Sstevel@tonic-gate #define	C4 C2 C2 C2 C2
48777c478bd9Sstevel@tonic-gate 	C4	/* clear c[]--assume BMAX+1 is 16 */
48787c478bd9Sstevel@tonic-gate 	    p = b;  i = n;
48797c478bd9Sstevel@tonic-gate 	do {
48807c478bd9Sstevel@tonic-gate 		c[*p++]++;	/* assume all entries <= BMAX */
48817c478bd9Sstevel@tonic-gate 	} while (--i);
48827c478bd9Sstevel@tonic-gate 	if (c[0] == n)		/* null input--all zero length codes */
48837c478bd9Sstevel@tonic-gate 	{
48847c478bd9Sstevel@tonic-gate 		*t = (inflate_huft *)Z_NULL;
48857c478bd9Sstevel@tonic-gate 		*m = 0;
48867c478bd9Sstevel@tonic-gate 		return (Z_OK);
48877c478bd9Sstevel@tonic-gate 	}
48887c478bd9Sstevel@tonic-gate 
48897c478bd9Sstevel@tonic-gate 
48907c478bd9Sstevel@tonic-gate 	/* Find minimum and maximum length, bound *m by those */
48917c478bd9Sstevel@tonic-gate 	l = *m;
48927c478bd9Sstevel@tonic-gate 	for (j = 1; j <= BMAX; j++)
48937c478bd9Sstevel@tonic-gate 		if (c[j])
48947c478bd9Sstevel@tonic-gate 			break;
48957c478bd9Sstevel@tonic-gate 	k = j;	/* minimum code length */
48967c478bd9Sstevel@tonic-gate 	if ((uInt)l < j)
48977c478bd9Sstevel@tonic-gate 		l = j;
48987c478bd9Sstevel@tonic-gate 	for (i = BMAX; i; i--)
48997c478bd9Sstevel@tonic-gate 		if (c[i])
49007c478bd9Sstevel@tonic-gate 			break;
49017c478bd9Sstevel@tonic-gate 	g = i;	/* maximum code length */
49027c478bd9Sstevel@tonic-gate 	if ((uInt)l > i)
49037c478bd9Sstevel@tonic-gate 		l = i;
49047c478bd9Sstevel@tonic-gate 	*m = l;
49057c478bd9Sstevel@tonic-gate 
49067c478bd9Sstevel@tonic-gate 
49077c478bd9Sstevel@tonic-gate 	/* Adjust last length count to fill out codes, if needed */
49087c478bd9Sstevel@tonic-gate 	for (y = 1 << j; j < i; j++, y <<= 1)
49097c478bd9Sstevel@tonic-gate 		if ((y -= c[j]) < 0)
49107c478bd9Sstevel@tonic-gate 			return (Z_DATA_ERROR);
49117c478bd9Sstevel@tonic-gate 	if ((y -= c[i]) < 0)
49127c478bd9Sstevel@tonic-gate 		return (Z_DATA_ERROR);
49137c478bd9Sstevel@tonic-gate 	c[i] += y;
49147c478bd9Sstevel@tonic-gate 
49157c478bd9Sstevel@tonic-gate 
49167c478bd9Sstevel@tonic-gate 	/* Generate starting offsets into the value table for each length */
49177c478bd9Sstevel@tonic-gate 	x[1] = j = 0;
49187c478bd9Sstevel@tonic-gate 	p = c + 1;  xp = x + 2;
49197c478bd9Sstevel@tonic-gate 	while (--i) {		/* note that i == g from above */
49207c478bd9Sstevel@tonic-gate 		*xp++ = (j += *p++);
49217c478bd9Sstevel@tonic-gate 	}
49227c478bd9Sstevel@tonic-gate 
49237c478bd9Sstevel@tonic-gate 
49247c478bd9Sstevel@tonic-gate 	/* Make a table of values in order of bit lengths */
49257c478bd9Sstevel@tonic-gate 	p = b;  i = 0;
49267c478bd9Sstevel@tonic-gate 	do {
49277c478bd9Sstevel@tonic-gate 		if ((j = *p++) != 0)
49287c478bd9Sstevel@tonic-gate 			v[x[j]++] = i;
49297c478bd9Sstevel@tonic-gate 	} while (++i < n);
49307c478bd9Sstevel@tonic-gate 	n = x[g];	/* set n to length of v */
49317c478bd9Sstevel@tonic-gate 
49327c478bd9Sstevel@tonic-gate 
49337c478bd9Sstevel@tonic-gate 	/* Generate the Huffman codes and for each, make the table entries */
49347c478bd9Sstevel@tonic-gate 	x[0] = i = 0;	/* first Huffman code is zero */
49357c478bd9Sstevel@tonic-gate 	p = v;	/* grab values in bit order */
49367c478bd9Sstevel@tonic-gate 	h = -1;	/* no tables yet--level -1 */
49377c478bd9Sstevel@tonic-gate 	w = -l;	/* bits decoded == (l * h) */
49387c478bd9Sstevel@tonic-gate 	u[0] = (inflate_huft *)Z_NULL;	/* just to keep compilers happy */
49397c478bd9Sstevel@tonic-gate 	q = (inflate_huft *)Z_NULL;	/* ditto */
49407c478bd9Sstevel@tonic-gate 	z = 0;	/* ditto */
49417c478bd9Sstevel@tonic-gate 
49427c478bd9Sstevel@tonic-gate 	/* go through the bit lengths (k already is bits in shortest code) */
49437c478bd9Sstevel@tonic-gate 	for (; k <= g; k++) {
49447c478bd9Sstevel@tonic-gate 		a = c[k];
49457c478bd9Sstevel@tonic-gate 		while (a--) {
49467c478bd9Sstevel@tonic-gate 			/*
49477c478bd9Sstevel@tonic-gate 			 * here i is the Huffman code of length k bits
49487c478bd9Sstevel@tonic-gate 			 * for value *p.  make tables up to required
49497c478bd9Sstevel@tonic-gate 			 * level.
49507c478bd9Sstevel@tonic-gate 			 */
49517c478bd9Sstevel@tonic-gate 			while (k > w + l) {
49527c478bd9Sstevel@tonic-gate 				h++;
49537c478bd9Sstevel@tonic-gate 				w += l;	/* previous table always l bits */
49547c478bd9Sstevel@tonic-gate 
49557c478bd9Sstevel@tonic-gate 				/*
49567c478bd9Sstevel@tonic-gate 				 * compute minimum size table less
49577c478bd9Sstevel@tonic-gate 				 * than or equal to l bits
49587c478bd9Sstevel@tonic-gate 				 */
49597c478bd9Sstevel@tonic-gate 				z = g - w;
49607c478bd9Sstevel@tonic-gate 				/* table size upper limit */
49617c478bd9Sstevel@tonic-gate 				z = z > (uInt)l ? l : z;
49627c478bd9Sstevel@tonic-gate 				/* try a k-w bit table */
49637c478bd9Sstevel@tonic-gate 				if ((f = 1 << (j = k - w)) > a + 1) {
49647c478bd9Sstevel@tonic-gate 					/* too few codes for k-w bit table */
49657c478bd9Sstevel@tonic-gate 					/* deduct codes from patterns left */
49667c478bd9Sstevel@tonic-gate 					f -= a + 1;
49677c478bd9Sstevel@tonic-gate 					xp = c + k;
49687c478bd9Sstevel@tonic-gate 					if (j < z)
49697c478bd9Sstevel@tonic-gate 						/*
49707c478bd9Sstevel@tonic-gate 						 * try smaller tables
49717c478bd9Sstevel@tonic-gate 						 * up to z bits
49727c478bd9Sstevel@tonic-gate 						 */
49737c478bd9Sstevel@tonic-gate 						while (++j < z) {
49747c478bd9Sstevel@tonic-gate 							/*
49757c478bd9Sstevel@tonic-gate 							 * enough
49767c478bd9Sstevel@tonic-gate 							 * codes to
49777c478bd9Sstevel@tonic-gate 							 * use up j
49787c478bd9Sstevel@tonic-gate 							 * bits
49797c478bd9Sstevel@tonic-gate 							 */
49807c478bd9Sstevel@tonic-gate 							if ((f <<= 1) <= *++xp)
49817c478bd9Sstevel@tonic-gate 								break;
49827c478bd9Sstevel@tonic-gate 							f -= *xp;
49837c478bd9Sstevel@tonic-gate 							/*
49847c478bd9Sstevel@tonic-gate 							 * else deduct
49857c478bd9Sstevel@tonic-gate 							 * codes from
49867c478bd9Sstevel@tonic-gate 							 * patterns
49877c478bd9Sstevel@tonic-gate 							 */
49887c478bd9Sstevel@tonic-gate 						}
49897c478bd9Sstevel@tonic-gate 				}
49907c478bd9Sstevel@tonic-gate 				/* table entries for j-bit table */
49917c478bd9Sstevel@tonic-gate 				z = 1 << j;
49927c478bd9Sstevel@tonic-gate 
49937c478bd9Sstevel@tonic-gate 				/* allocate new table */
49947c478bd9Sstevel@tonic-gate 				/* (note: doesn't matter for fixed) */
49957c478bd9Sstevel@tonic-gate 				/* not enough memory */
49967c478bd9Sstevel@tonic-gate 				if (*hn + z > MANY)
49977c478bd9Sstevel@tonic-gate 					return (Z_MEM_ERROR);
49987c478bd9Sstevel@tonic-gate 				u[h] = q = hp + *hn;
49997c478bd9Sstevel@tonic-gate 				*hn += z;
50007c478bd9Sstevel@tonic-gate 
50017c478bd9Sstevel@tonic-gate 				/* connect to last table, if there is one */
50027c478bd9Sstevel@tonic-gate 				if (h) {
50037c478bd9Sstevel@tonic-gate 					/* save pattern for backing up */
50047c478bd9Sstevel@tonic-gate 					x[h] = i;
50057c478bd9Sstevel@tonic-gate 					/* bits to dump before this table */
50067c478bd9Sstevel@tonic-gate 					r.bits = (Byte)l;
50077c478bd9Sstevel@tonic-gate 					/* bits in this table */
50087c478bd9Sstevel@tonic-gate 					r.exop = (Byte)j;
50097c478bd9Sstevel@tonic-gate 					j = i >> (w - l);
50107c478bd9Sstevel@tonic-gate 					/* offset to this table */
50117c478bd9Sstevel@tonic-gate 					r.base = (uInt)(q - u[h-1] - j);
50127c478bd9Sstevel@tonic-gate 					/* connect to last table */
50137c478bd9Sstevel@tonic-gate 					u[h-1][j] = r;
50147c478bd9Sstevel@tonic-gate 				} else
50157c478bd9Sstevel@tonic-gate 					/* first table is returned result */
50167c478bd9Sstevel@tonic-gate 					*t = q;
50177c478bd9Sstevel@tonic-gate 			}
50187c478bd9Sstevel@tonic-gate 
50197c478bd9Sstevel@tonic-gate 			/* set up table entry in r */
50207c478bd9Sstevel@tonic-gate 			r.bits = (Byte)(k - w);
50217c478bd9Sstevel@tonic-gate 			if (p >= v + n)
50227c478bd9Sstevel@tonic-gate 				/* out of values--invalid code */
50237c478bd9Sstevel@tonic-gate 				r.exop = 128 + 64;
50247c478bd9Sstevel@tonic-gate 			else if (*p < s)
50257c478bd9Sstevel@tonic-gate 			{
50267c478bd9Sstevel@tonic-gate 				/* 256 is end-of-block */
50277c478bd9Sstevel@tonic-gate 				r.exop = (Byte)(*p < 256 ? 0 : 32 + 64);
50287c478bd9Sstevel@tonic-gate 				/* simple code is just the value */
50297c478bd9Sstevel@tonic-gate 				r.base = *p++;
50307c478bd9Sstevel@tonic-gate 			}
50317c478bd9Sstevel@tonic-gate 			else
50327c478bd9Sstevel@tonic-gate 			{
50337c478bd9Sstevel@tonic-gate 				/* non-simple--look up in lists */
50347c478bd9Sstevel@tonic-gate 				r.exop = (Byte)(e[*p - s] + 16 + 64);
50357c478bd9Sstevel@tonic-gate 				r.base = d[*p++ - s];
50367c478bd9Sstevel@tonic-gate 			}
50377c478bd9Sstevel@tonic-gate 
50387c478bd9Sstevel@tonic-gate 			/* fill code-like entries with r */
50397c478bd9Sstevel@tonic-gate 			f = 1 << (k - w);
50407c478bd9Sstevel@tonic-gate 			for (j = i >> w; j < z; j += f)
50417c478bd9Sstevel@tonic-gate 				q[j] = r;
50427c478bd9Sstevel@tonic-gate 
50437c478bd9Sstevel@tonic-gate 			/* backwards increment the k-bit code i */
50447c478bd9Sstevel@tonic-gate 			for (j = 1 << (k - 1); i & j; j >>= 1)
50457c478bd9Sstevel@tonic-gate 				i ^= j;
50467c478bd9Sstevel@tonic-gate 			i ^= j;
50477c478bd9Sstevel@tonic-gate 
50487c478bd9Sstevel@tonic-gate 			/* backup over finished tables */
50497c478bd9Sstevel@tonic-gate 			mask = (1 << w) - 1;	/* needed on HP, cc -O bug */
50507c478bd9Sstevel@tonic-gate 			while ((i & mask) != x[h])
50517c478bd9Sstevel@tonic-gate 			{
50527c478bd9Sstevel@tonic-gate 				h--;	/* don't need to update q */
50537c478bd9Sstevel@tonic-gate 				w -= l;
50547c478bd9Sstevel@tonic-gate 				mask = (1 << w) - 1;
50557c478bd9Sstevel@tonic-gate 			}
50567c478bd9Sstevel@tonic-gate 		}
50577c478bd9Sstevel@tonic-gate 	}
50587c478bd9Sstevel@tonic-gate 
50597c478bd9Sstevel@tonic-gate 
50607c478bd9Sstevel@tonic-gate 	/* Return Z_BUF_ERROR if we were given an incomplete table */
50617c478bd9Sstevel@tonic-gate 	return (y != 0 && g != 1 ? Z_BUF_ERROR : Z_OK);
50627c478bd9Sstevel@tonic-gate }
50637c478bd9Sstevel@tonic-gate 
50647c478bd9Sstevel@tonic-gate 
50657c478bd9Sstevel@tonic-gate int
inflate_trees_bits(c,bb,tb,hp,z)50667c478bd9Sstevel@tonic-gate inflate_trees_bits(c, bb, tb, hp, z)
50677c478bd9Sstevel@tonic-gate uIntf *c;	/* 19 code lengths */
50687c478bd9Sstevel@tonic-gate uIntf *bb;	/* bits tree desired/actual depth */
50697c478bd9Sstevel@tonic-gate inflate_huft * FAR *tb;	/* bits tree result */
50707c478bd9Sstevel@tonic-gate inflate_huft *hp;	/* space for trees */
50717c478bd9Sstevel@tonic-gate z_streamp z;	/* for zfree function */
50727c478bd9Sstevel@tonic-gate {
50737c478bd9Sstevel@tonic-gate 	int r;
50747c478bd9Sstevel@tonic-gate 	uInt hn = 0;		/* hufts used in space */
50757c478bd9Sstevel@tonic-gate 	uIntf v[19];		/* work area for huft_build */
50767c478bd9Sstevel@tonic-gate 
50777c478bd9Sstevel@tonic-gate 	r = huft_build(c, 19, 19, (uIntf*)Z_NULL, (uIntf*)Z_NULL, tb, bb,
50787c478bd9Sstevel@tonic-gate 	    hp, &hn, v);
50797c478bd9Sstevel@tonic-gate 	if (r == Z_DATA_ERROR)
50807c478bd9Sstevel@tonic-gate 		z->msg = "oversubscribed dynamic bit lengths tree";
50817c478bd9Sstevel@tonic-gate 	else if (r == Z_BUF_ERROR || *bb == 0)
50827c478bd9Sstevel@tonic-gate 	{
50837c478bd9Sstevel@tonic-gate 		z->msg = "incomplete dynamic bit lengths tree";
50847c478bd9Sstevel@tonic-gate 		r = Z_DATA_ERROR;
50857c478bd9Sstevel@tonic-gate 	}
50867c478bd9Sstevel@tonic-gate 	return (r);
50877c478bd9Sstevel@tonic-gate }
50887c478bd9Sstevel@tonic-gate 
50897c478bd9Sstevel@tonic-gate 
50907c478bd9Sstevel@tonic-gate int
inflate_trees_dynamic(nl,nd,c,bl,bd,tl,td,hp,z)50917c478bd9Sstevel@tonic-gate inflate_trees_dynamic(nl, nd, c, bl, bd, tl, td, hp, z)
50927c478bd9Sstevel@tonic-gate uInt nl;	/* number of literal/length codes */
50937c478bd9Sstevel@tonic-gate uInt nd;	/* number of distance codes */
50947c478bd9Sstevel@tonic-gate uIntf *c;	/* that many (total) code lengths */
50957c478bd9Sstevel@tonic-gate uIntf *bl;	/* literal desired/actual bit depth */
50967c478bd9Sstevel@tonic-gate uIntf *bd;	/* distance desired/actual bit depth */
50977c478bd9Sstevel@tonic-gate inflate_huft * FAR *tl;	/* literal/length tree result */
50987c478bd9Sstevel@tonic-gate inflate_huft * FAR *td;	/* distance tree result */
50997c478bd9Sstevel@tonic-gate inflate_huft *hp;	/* space for trees */
51007c478bd9Sstevel@tonic-gate z_streamp z;	/* for zfree function */
51017c478bd9Sstevel@tonic-gate {
51027c478bd9Sstevel@tonic-gate 	int r;
51037c478bd9Sstevel@tonic-gate 	uInt hn = 0;		/* hufts used in space */
51047c478bd9Sstevel@tonic-gate 	uIntf v[288];		/* work area for huft_build */
51057c478bd9Sstevel@tonic-gate 
51067c478bd9Sstevel@tonic-gate 	/* build literal/length tree */
51077c478bd9Sstevel@tonic-gate 	r = huft_build(c, nl, 257, cplens, cplext, tl, bl, hp, &hn, v);
51087c478bd9Sstevel@tonic-gate 	if (r != Z_OK || *bl == 0)
51097c478bd9Sstevel@tonic-gate 	{
51107c478bd9Sstevel@tonic-gate 		if (r == Z_DATA_ERROR)
51117c478bd9Sstevel@tonic-gate 			z->msg = "oversubscribed literal/length tree";
51127c478bd9Sstevel@tonic-gate 		else if (r != Z_MEM_ERROR)
51137c478bd9Sstevel@tonic-gate 		{
51147c478bd9Sstevel@tonic-gate 			z->msg = "incomplete literal/length tree";
51157c478bd9Sstevel@tonic-gate 			r = Z_DATA_ERROR;
51167c478bd9Sstevel@tonic-gate 		}
51177c478bd9Sstevel@tonic-gate 		return (r);
51187c478bd9Sstevel@tonic-gate 	}
51197c478bd9Sstevel@tonic-gate 
51207c478bd9Sstevel@tonic-gate 	/* build distance tree */
51217c478bd9Sstevel@tonic-gate 	r = huft_build(c + nl, nd, 0, cpdist, cpdext, td, bd, hp, &hn, v);
51227c478bd9Sstevel@tonic-gate 	if (r != Z_OK || (*bd == 0 && nl > 257))
51237c478bd9Sstevel@tonic-gate 	{
51247c478bd9Sstevel@tonic-gate 		if (r == Z_DATA_ERROR)
51257c478bd9Sstevel@tonic-gate 			z->msg = "oversubscribed distance tree";
51267c478bd9Sstevel@tonic-gate 		else if (r == Z_BUF_ERROR) {
51277c478bd9Sstevel@tonic-gate #ifdef PKZIP_BUG_WORKAROUND
51287c478bd9Sstevel@tonic-gate 			r = Z_OK;
51297c478bd9Sstevel@tonic-gate #else
51307c478bd9Sstevel@tonic-gate 			z->msg = "incomplete distance tree";
51317c478bd9Sstevel@tonic-gate 			r = Z_DATA_ERROR;
51327c478bd9Sstevel@tonic-gate 		} else if (r != Z_MEM_ERROR) {
51337c478bd9Sstevel@tonic-gate 			z->msg = "empty distance tree with lengths";
51347c478bd9Sstevel@tonic-gate 			r = Z_DATA_ERROR;
51357c478bd9Sstevel@tonic-gate #endif
51367c478bd9Sstevel@tonic-gate 		}
51377c478bd9Sstevel@tonic-gate 		return (r);
51387c478bd9Sstevel@tonic-gate 	}
51397c478bd9Sstevel@tonic-gate 
51407c478bd9Sstevel@tonic-gate /* done */
51417c478bd9Sstevel@tonic-gate 	return (Z_OK);
51427c478bd9Sstevel@tonic-gate }
51437c478bd9Sstevel@tonic-gate 
51447c478bd9Sstevel@tonic-gate 
51457c478bd9Sstevel@tonic-gate /* build fixed tables only once--keep them here */
51467c478bd9Sstevel@tonic-gate /* #define	BUILDFIXED */
51477c478bd9Sstevel@tonic-gate #ifdef BUILDFIXED
51487c478bd9Sstevel@tonic-gate local int fixed_built = 0;
51497c478bd9Sstevel@tonic-gate #define	FIXEDH 544	/* number of hufts used by fixed tables */
51507c478bd9Sstevel@tonic-gate local inflate_huft fixed_mem[FIXEDH];
51517c478bd9Sstevel@tonic-gate local uInt fixed_bl;
51527c478bd9Sstevel@tonic-gate local uInt fixed_bd;
51537c478bd9Sstevel@tonic-gate local inflate_huft *fixed_tl;
51547c478bd9Sstevel@tonic-gate local inflate_huft *fixed_td;
51557c478bd9Sstevel@tonic-gate #else
51567c478bd9Sstevel@tonic-gate #include "inffixed.h"
51577c478bd9Sstevel@tonic-gate #endif
51587c478bd9Sstevel@tonic-gate 
51597c478bd9Sstevel@tonic-gate /*ARGSUSED*/
51607c478bd9Sstevel@tonic-gate int
inflate_trees_fixed(bl,bd,tl,td,z)51617c478bd9Sstevel@tonic-gate inflate_trees_fixed(bl, bd, tl, td, z)
51627c478bd9Sstevel@tonic-gate uIntf *bl;	/* literal desired/actual bit depth */
51637c478bd9Sstevel@tonic-gate uIntf *bd;	/* distance desired/actual bit depth */
51647c478bd9Sstevel@tonic-gate const inflate_huft * FAR *tl;	/* literal/length tree result */
51657c478bd9Sstevel@tonic-gate const inflate_huft * FAR *td;	/* distance tree result */
51667c478bd9Sstevel@tonic-gate z_streamp z;	/* for memory allocation */
51677c478bd9Sstevel@tonic-gate {
51687c478bd9Sstevel@tonic-gate #ifdef BUILDFIXED
51697c478bd9Sstevel@tonic-gate 	/*
51707c478bd9Sstevel@tonic-gate 	 * build fixed tables if not already (multiple overlapped
51717c478bd9Sstevel@tonic-gate 	 * executions ok)
51727c478bd9Sstevel@tonic-gate 	 */
51737c478bd9Sstevel@tonic-gate 	if (!fixed_built)
51747c478bd9Sstevel@tonic-gate 	{
51757c478bd9Sstevel@tonic-gate 		int k;	/* temporary variable */
51767c478bd9Sstevel@tonic-gate 		uInt f = 0;	/* number of hufts used in fixed_mem */
51777c478bd9Sstevel@tonic-gate 		uIntf *c;	/* length list for huft_build */
51787c478bd9Sstevel@tonic-gate 		uIntf *v;
51797c478bd9Sstevel@tonic-gate 
51807c478bd9Sstevel@tonic-gate 		/* allocate memory */
51817c478bd9Sstevel@tonic-gate 		if ((c = (uIntf*)ZALLOC(z, 288, sizeof (uInt))) == Z_NULL)
51827c478bd9Sstevel@tonic-gate 			return (Z_MEM_ERROR);
51837c478bd9Sstevel@tonic-gate 		if ((v = (uIntf*)ZALLOC(z, 288, sizeof (uInt))) == Z_NULL)
51847c478bd9Sstevel@tonic-gate 		{
51857c478bd9Sstevel@tonic-gate 			ZFREE(z, c);
51867c478bd9Sstevel@tonic-gate 			return (Z_MEM_ERROR);
51877c478bd9Sstevel@tonic-gate 		}
51887c478bd9Sstevel@tonic-gate 		/* literal table */
51897c478bd9Sstevel@tonic-gate 		for (k = 0; k < 144; k++)
51907c478bd9Sstevel@tonic-gate 			c[k] = 8;
51917c478bd9Sstevel@tonic-gate 		for (; k < 256; k++)
51927c478bd9Sstevel@tonic-gate 			c[k] = 9;
51937c478bd9Sstevel@tonic-gate 		for (; k < 280; k++)
51947c478bd9Sstevel@tonic-gate 			c[k] = 7;
51957c478bd9Sstevel@tonic-gate 		for (; k < 288; k++)
51967c478bd9Sstevel@tonic-gate 			c[k] = 8;
51977c478bd9Sstevel@tonic-gate 		fixed_bl = 9;
51987c478bd9Sstevel@tonic-gate 		(void) huft_build(c, 288, 257, cplens, cplext, &fixed_tl,
51997c478bd9Sstevel@tonic-gate 		    &fixed_bl, fixed_mem, &f, v);
52007c478bd9Sstevel@tonic-gate 
52017c478bd9Sstevel@tonic-gate 		/* distance table */
52027c478bd9Sstevel@tonic-gate 		for (k = 0; k < 30; k++)
52037c478bd9Sstevel@tonic-gate 			c[k] = 5;
52047c478bd9Sstevel@tonic-gate 		fixed_bd = 5;
52057c478bd9Sstevel@tonic-gate 		(void) huft_build(c, 30, 0, cpdist, cpdext, &fixed_td,
52067c478bd9Sstevel@tonic-gate 		    &fixed_bd, fixed_mem, &f, v);
52077c478bd9Sstevel@tonic-gate 
52087c478bd9Sstevel@tonic-gate 		/* done */
52097c478bd9Sstevel@tonic-gate 		ZFREE(z, v);
52107c478bd9Sstevel@tonic-gate 		ZFREE(z, c);
52117c478bd9Sstevel@tonic-gate 		fixed_built = 1;
52127c478bd9Sstevel@tonic-gate 	}
52137c478bd9Sstevel@tonic-gate #endif
52147c478bd9Sstevel@tonic-gate 	*bl = fixed_bl;
52157c478bd9Sstevel@tonic-gate 	*bd = fixed_bd;
52167c478bd9Sstevel@tonic-gate 	*tl = fixed_tl;
52177c478bd9Sstevel@tonic-gate 	*td = fixed_td;
52187c478bd9Sstevel@tonic-gate 	return (Z_OK);
52197c478bd9Sstevel@tonic-gate }
52207c478bd9Sstevel@tonic-gate /* --- inftrees.c */
52217c478bd9Sstevel@tonic-gate 
52227c478bd9Sstevel@tonic-gate /* +++ infcodes.c */
52237c478bd9Sstevel@tonic-gate /*
52247c478bd9Sstevel@tonic-gate  * infcodes.c -- process literals and length/distance pairs
52257c478bd9Sstevel@tonic-gate  * Copyright (C) 1995-1998 Mark Adler
52267c478bd9Sstevel@tonic-gate  * For conditions of distribution and use, see copyright notice in zlib.h
52277c478bd9Sstevel@tonic-gate  */
52287c478bd9Sstevel@tonic-gate 
52297c478bd9Sstevel@tonic-gate /* #include "zutil.h" */
52307c478bd9Sstevel@tonic-gate /* #include "inftrees.h" */
52317c478bd9Sstevel@tonic-gate /* #include "infblock.h" */
52327c478bd9Sstevel@tonic-gate /* #include "infcodes.h" */
52337c478bd9Sstevel@tonic-gate /* #include "infutil.h" */
52347c478bd9Sstevel@tonic-gate 
52357c478bd9Sstevel@tonic-gate /* +++ inffast.h */
52367c478bd9Sstevel@tonic-gate /*
52377c478bd9Sstevel@tonic-gate  * inffast.h -- header to use inffast.c
52387c478bd9Sstevel@tonic-gate  * Copyright (C) 1995-1998 Mark Adler
52397c478bd9Sstevel@tonic-gate  * For conditions of distribution and use, see copyright notice in zlib.h
52407c478bd9Sstevel@tonic-gate  */
52417c478bd9Sstevel@tonic-gate 
52427c478bd9Sstevel@tonic-gate /*
52437c478bd9Sstevel@tonic-gate  * WARNING: this file should *not* be used by applications. It is part
52447c478bd9Sstevel@tonic-gate  * of the implementation of the compression library and is subject to
52457c478bd9Sstevel@tonic-gate  * change. Applications should only use zlib.h.
52467c478bd9Sstevel@tonic-gate  */
52477c478bd9Sstevel@tonic-gate 
52487c478bd9Sstevel@tonic-gate extern int inflate_fast OF((
52497c478bd9Sstevel@tonic-gate     uInt,
52507c478bd9Sstevel@tonic-gate     uInt,
52517c478bd9Sstevel@tonic-gate     const inflate_huft *,
52527c478bd9Sstevel@tonic-gate     const inflate_huft *,
52537c478bd9Sstevel@tonic-gate     inflate_blocks_statef *,
52547c478bd9Sstevel@tonic-gate     z_streamp));
52557c478bd9Sstevel@tonic-gate /* --- inffast.h */
52567c478bd9Sstevel@tonic-gate 
52577c478bd9Sstevel@tonic-gate /* simplify the use of the inflate_huft type with some defines */
52587c478bd9Sstevel@tonic-gate #define	exop word.what.Exop
52597c478bd9Sstevel@tonic-gate #define	bits word.what.Bits
52607c478bd9Sstevel@tonic-gate 
52617c478bd9Sstevel@tonic-gate /* inflate codes private state */
52627c478bd9Sstevel@tonic-gate struct inflate_codes_state {
52637c478bd9Sstevel@tonic-gate 
52647c478bd9Sstevel@tonic-gate 	/* mode */
52657c478bd9Sstevel@tonic-gate 	enum {	/* waiting for "i:"=input, "o:"=output, "x:"=nothing */
52667c478bd9Sstevel@tonic-gate 		START,	/* x: set up for LEN */
52677c478bd9Sstevel@tonic-gate 		LEN,	/* i: get length/literal/eob next */
52687c478bd9Sstevel@tonic-gate 		LENEXT,	/* i: getting length extra (have base) */
52697c478bd9Sstevel@tonic-gate 		DIST,	/* i: get distance next */
52707c478bd9Sstevel@tonic-gate 		DISTEXT,	/* i: getting distance extra */
52717c478bd9Sstevel@tonic-gate 		COPY,	/* o: copying bytes in window, waiting for space */
52727c478bd9Sstevel@tonic-gate 		LIT,	/* o: got literal, waiting for output space */
52737c478bd9Sstevel@tonic-gate 		WASH,	/* o: got eob, possibly still output waiting */
52747c478bd9Sstevel@tonic-gate 		END,	/* x: got eob and all data flushed */
52757c478bd9Sstevel@tonic-gate 		BADCODE}	/* x: got error */
52767c478bd9Sstevel@tonic-gate 	mode;	/* current inflate_codes mode */
52777c478bd9Sstevel@tonic-gate 
52787c478bd9Sstevel@tonic-gate 	/* mode dependent information */
52797c478bd9Sstevel@tonic-gate 	uInt len;
52807c478bd9Sstevel@tonic-gate 	union {
52817c478bd9Sstevel@tonic-gate 		struct {
52827c478bd9Sstevel@tonic-gate 			const inflate_huft *tree;	/* pointer into tree */
52837c478bd9Sstevel@tonic-gate 			uInt need;	/* bits needed */
52847c478bd9Sstevel@tonic-gate 		} code;	/* if LEN or DIST, where in tree */
52857c478bd9Sstevel@tonic-gate 		uInt lit;	/* if LIT, literal */
52867c478bd9Sstevel@tonic-gate 		struct {
52877c478bd9Sstevel@tonic-gate 			uInt get;	/* bits to get for extra */
52887c478bd9Sstevel@tonic-gate 			uInt dist;	/* distance back to copy from */
52897c478bd9Sstevel@tonic-gate 		} copy;	/* if EXT or COPY, where and how much */
52907c478bd9Sstevel@tonic-gate 	} sub;	/* submode */
52917c478bd9Sstevel@tonic-gate 
52927c478bd9Sstevel@tonic-gate 	/* mode independent information */
52937c478bd9Sstevel@tonic-gate 	Byte lbits;	/* ltree bits decoded per branch */
52947c478bd9Sstevel@tonic-gate 	Byte dbits;	/* dtree bits decoder per branch */
52957c478bd9Sstevel@tonic-gate 	const inflate_huft *ltree;	/* literal/length/eob tree */
52967c478bd9Sstevel@tonic-gate 	const inflate_huft *dtree;	/* distance tree */
52977c478bd9Sstevel@tonic-gate 
52987c478bd9Sstevel@tonic-gate };
52997c478bd9Sstevel@tonic-gate 
53007c478bd9Sstevel@tonic-gate 
53017c478bd9Sstevel@tonic-gate inflate_codes_statef *
inflate_codes_new(bl,bd,tl,td,z)53027c478bd9Sstevel@tonic-gate inflate_codes_new(bl, bd, tl, td, z)
53037c478bd9Sstevel@tonic-gate uInt bl, bd;
53047c478bd9Sstevel@tonic-gate const inflate_huft *tl;
53057c478bd9Sstevel@tonic-gate const inflate_huft *td;	/* need separate declaration for Borland C++ */
53067c478bd9Sstevel@tonic-gate z_streamp z;
53077c478bd9Sstevel@tonic-gate {
53087c478bd9Sstevel@tonic-gate 	inflate_codes_statef *c;
53097c478bd9Sstevel@tonic-gate 
53107c478bd9Sstevel@tonic-gate 	if ((c = (inflate_codes_statef *)
53117c478bd9Sstevel@tonic-gate 	    ZALLOC(z, 1, sizeof (struct inflate_codes_state))) != Z_NULL)
53127c478bd9Sstevel@tonic-gate 	{
53137c478bd9Sstevel@tonic-gate 		c->mode = START;
53147c478bd9Sstevel@tonic-gate 		c->lbits = (Byte)bl;
53157c478bd9Sstevel@tonic-gate 		c->dbits = (Byte)bd;
53167c478bd9Sstevel@tonic-gate 		c->ltree = tl;
53177c478bd9Sstevel@tonic-gate 		c->dtree = td;
53187c478bd9Sstevel@tonic-gate 		Tracev((stderr, "inflate:       codes new\n"));
53197c478bd9Sstevel@tonic-gate 	}
53207c478bd9Sstevel@tonic-gate 	return (c);
53217c478bd9Sstevel@tonic-gate }
53227c478bd9Sstevel@tonic-gate 
53237c478bd9Sstevel@tonic-gate 
53247c478bd9Sstevel@tonic-gate int
inflate_codes(s,z,r)53257c478bd9Sstevel@tonic-gate inflate_codes(s, z, r)
53267c478bd9Sstevel@tonic-gate inflate_blocks_statef *s;
53277c478bd9Sstevel@tonic-gate z_streamp z;
53287c478bd9Sstevel@tonic-gate int r;
53297c478bd9Sstevel@tonic-gate {
53307c478bd9Sstevel@tonic-gate 	uInt j;	/* temporary storage */
53317c478bd9Sstevel@tonic-gate 	const inflate_huft *t;	/* temporary pointer */
53327c478bd9Sstevel@tonic-gate 	uInt e;	/* extra bits or operation */
53337c478bd9Sstevel@tonic-gate 	uLong b;	/* bit buffer */
53347c478bd9Sstevel@tonic-gate 	uInt k;	/* bits in bit buffer */
53357c478bd9Sstevel@tonic-gate 	Bytef *p;	/* input data pointer */
53367c478bd9Sstevel@tonic-gate 	uInt n;	/* bytes available there */
53377c478bd9Sstevel@tonic-gate 	Bytef *q;	/* output window write pointer */
53387c478bd9Sstevel@tonic-gate 	uInt m;	/* bytes to end of window or read pointer */
53397c478bd9Sstevel@tonic-gate 	Bytef *f;	/* pointer to copy strings from */
53407c478bd9Sstevel@tonic-gate 	inflate_codes_statef *c = s->sub.decode.codes;	/* codes state */
53417c478bd9Sstevel@tonic-gate 
53427c478bd9Sstevel@tonic-gate 	/* copy input/output information to locals (UPDATE macro restores) */
53437c478bd9Sstevel@tonic-gate 	LOAD;
53447c478bd9Sstevel@tonic-gate 
53457c478bd9Sstevel@tonic-gate 	/* process input and output based on current state */
53467c478bd9Sstevel@tonic-gate 	/* CONSTCOND */
53477c478bd9Sstevel@tonic-gate 	while (1)
53487c478bd9Sstevel@tonic-gate 		/* waiting for "i:"=input, "o:"=output, "x:"=nothing */
53497c478bd9Sstevel@tonic-gate 		switch (c->mode) {
53507c478bd9Sstevel@tonic-gate 		case START:	/* x: set up for LEN */
53517c478bd9Sstevel@tonic-gate #ifndef SLOW
53527c478bd9Sstevel@tonic-gate 			if (m >= 258 && n >= 10)
53537c478bd9Sstevel@tonic-gate 			{
53547c478bd9Sstevel@tonic-gate 				UPDATE;
53557c478bd9Sstevel@tonic-gate 				r = inflate_fast(c->lbits, c->dbits,
53567c478bd9Sstevel@tonic-gate 				    c->ltree, c->dtree, s, z);
53577c478bd9Sstevel@tonic-gate 				LOAD;
53587c478bd9Sstevel@tonic-gate 				if (r != Z_OK) {
53597c478bd9Sstevel@tonic-gate 					c->mode = r == Z_STREAM_END ?
53607c478bd9Sstevel@tonic-gate 					    WASH : BADCODE;
53617c478bd9Sstevel@tonic-gate 					break;
53627c478bd9Sstevel@tonic-gate 				}
53637c478bd9Sstevel@tonic-gate 			}
53647c478bd9Sstevel@tonic-gate #endif /* !SLOW */
53657c478bd9Sstevel@tonic-gate 			c->sub.code.need = c->lbits;
53667c478bd9Sstevel@tonic-gate 			c->sub.code.tree = c->ltree;
53677c478bd9Sstevel@tonic-gate 			c->mode = LEN;
53687c478bd9Sstevel@tonic-gate 			/* FALLTHRU */
53697c478bd9Sstevel@tonic-gate 		case LEN:	/* i: get length/literal/eob next */
53707c478bd9Sstevel@tonic-gate 			j = c->sub.code.need;
53717c478bd9Sstevel@tonic-gate 			NEEDBITS(j);
53727c478bd9Sstevel@tonic-gate 			t = c->sub.code.tree +
53737c478bd9Sstevel@tonic-gate 			    ((uInt)b & inflate_mask[j]);
53747c478bd9Sstevel@tonic-gate 			DUMPBITS(t->bits);
53757c478bd9Sstevel@tonic-gate 			e = (uInt)(t->exop);
53767c478bd9Sstevel@tonic-gate 			if (e == 0) {	/* literal */
53777c478bd9Sstevel@tonic-gate 				c->sub.lit = t->base;
53787c478bd9Sstevel@tonic-gate 				Tracevv((stderr, t->base >= 0x20 &&
53797c478bd9Sstevel@tonic-gate 				    t->base < 0x7f ?
53807c478bd9Sstevel@tonic-gate 				    "inflate:         literal '%c'\n" :
53817c478bd9Sstevel@tonic-gate 				    "inflate:         literal 0x%02x\n",
53827c478bd9Sstevel@tonic-gate 				    t->base));
53837c478bd9Sstevel@tonic-gate 				c->mode = LIT;
53847c478bd9Sstevel@tonic-gate 				break;
53857c478bd9Sstevel@tonic-gate 			}
53867c478bd9Sstevel@tonic-gate 			if (e & 16) {	/* length */
53877c478bd9Sstevel@tonic-gate 				c->sub.copy.get = e & 15;
53887c478bd9Sstevel@tonic-gate 				c->len = t->base;
53897c478bd9Sstevel@tonic-gate 				c->mode = LENEXT;
53907c478bd9Sstevel@tonic-gate 				break;
53917c478bd9Sstevel@tonic-gate 			}
53927c478bd9Sstevel@tonic-gate 			if ((e & 64) == 0) {	/* next table */
53937c478bd9Sstevel@tonic-gate 				c->sub.code.need = e;
53947c478bd9Sstevel@tonic-gate 				c->sub.code.tree = t + t->base;
53957c478bd9Sstevel@tonic-gate 				break;
53967c478bd9Sstevel@tonic-gate 			}
53977c478bd9Sstevel@tonic-gate 			if (e & 32) {	/* end of block */
53987c478bd9Sstevel@tonic-gate 				Tracevv((stderr,
53997c478bd9Sstevel@tonic-gate 				    "inflate:         end of block\n"));
54007c478bd9Sstevel@tonic-gate 				c->mode = WASH;
54017c478bd9Sstevel@tonic-gate 				break;
54027c478bd9Sstevel@tonic-gate 			}
54037c478bd9Sstevel@tonic-gate 			c->mode = BADCODE;	/* invalid code */
54047c478bd9Sstevel@tonic-gate 			z->msg = "invalid literal/length code";
54057c478bd9Sstevel@tonic-gate 			r = Z_DATA_ERROR;
54067c478bd9Sstevel@tonic-gate 			LEAVE
54077c478bd9Sstevel@tonic-gate 		case LENEXT:	/* i: getting length extra (have base) */
54087c478bd9Sstevel@tonic-gate 			j = c->sub.copy.get;
54097c478bd9Sstevel@tonic-gate 			NEEDBITS(j);
54107c478bd9Sstevel@tonic-gate 			c->len += (uInt)b & inflate_mask[j];
54117c478bd9Sstevel@tonic-gate 			DUMPBITS(j);
54127c478bd9Sstevel@tonic-gate 			c->sub.code.need = c->dbits;
54137c478bd9Sstevel@tonic-gate 			c->sub.code.tree = c->dtree;
54147c478bd9Sstevel@tonic-gate 			Tracevv((stderr,
54157c478bd9Sstevel@tonic-gate 			    "inflate:         length %u\n", c->len));
54167c478bd9Sstevel@tonic-gate 			c->mode = DIST;
54177c478bd9Sstevel@tonic-gate 			/* FALLTHRU */
54187c478bd9Sstevel@tonic-gate 		case DIST:	/* i: get distance next */
54197c478bd9Sstevel@tonic-gate 			j = c->sub.code.need;
54207c478bd9Sstevel@tonic-gate 			NEEDBITS(j);
54217c478bd9Sstevel@tonic-gate 			t = c->sub.code.tree + ((uInt)b & inflate_mask[j]);
54227c478bd9Sstevel@tonic-gate 			DUMPBITS(t->bits);
54237c478bd9Sstevel@tonic-gate 			e = (uInt)(t->exop);
54247c478bd9Sstevel@tonic-gate 			if (e & 16) {	/* distance */
54257c478bd9Sstevel@tonic-gate 				c->sub.copy.get = e & 15;
54267c478bd9Sstevel@tonic-gate 				c->sub.copy.dist = t->base;
54277c478bd9Sstevel@tonic-gate 				c->mode = DISTEXT;
54287c478bd9Sstevel@tonic-gate 				break;
54297c478bd9Sstevel@tonic-gate 			}
54307c478bd9Sstevel@tonic-gate 			if ((e & 64) == 0) {	/* next table */
54317c478bd9Sstevel@tonic-gate 				c->sub.code.need = e;
54327c478bd9Sstevel@tonic-gate 				c->sub.code.tree = t + t->base;
54337c478bd9Sstevel@tonic-gate 				break;
54347c478bd9Sstevel@tonic-gate 			}
54357c478bd9Sstevel@tonic-gate 			c->mode = BADCODE;	/* invalid code */
54367c478bd9Sstevel@tonic-gate 			z->msg = "invalid distance code";
54377c478bd9Sstevel@tonic-gate 			r = Z_DATA_ERROR;
54387c478bd9Sstevel@tonic-gate 			LEAVE
54397c478bd9Sstevel@tonic-gate 		case DISTEXT:	/* i: getting distance extra */
54407c478bd9Sstevel@tonic-gate 			j = c->sub.copy.get;
54417c478bd9Sstevel@tonic-gate 			NEEDBITS(j);
54427c478bd9Sstevel@tonic-gate 			c->sub.copy.dist += (uInt)b & inflate_mask[j];
54437c478bd9Sstevel@tonic-gate 			DUMPBITS(j);
54447c478bd9Sstevel@tonic-gate 			Tracevv((stderr,
54457c478bd9Sstevel@tonic-gate 			    "inflate:         distance %u\n",
54467c478bd9Sstevel@tonic-gate 			    c->sub.copy.dist));
54477c478bd9Sstevel@tonic-gate 			c->mode = COPY;
54487c478bd9Sstevel@tonic-gate 			/* FALLTHRU */
54497c478bd9Sstevel@tonic-gate 		case COPY:
54507c478bd9Sstevel@tonic-gate 			/* o: copying bytes in window, waiting for space */
54517c478bd9Sstevel@tonic-gate #ifndef __TURBOC__ /* Turbo C bug for following expression */
54527c478bd9Sstevel@tonic-gate 			f = (uInt)(q - s->window) < c->sub.copy.dist ?
54537c478bd9Sstevel@tonic-gate 			    s->end - (c->sub.copy.dist - (q - s->window)) :
54547c478bd9Sstevel@tonic-gate 				q - c->sub.copy.dist;
54557c478bd9Sstevel@tonic-gate #else
54567c478bd9Sstevel@tonic-gate 			f = q - c->sub.copy.dist;
54577c478bd9Sstevel@tonic-gate 			if ((uInt)(q - s->window) < c->sub.copy.dist)
54587c478bd9Sstevel@tonic-gate 				f = s->end - (c->sub.copy.dist -
54597c478bd9Sstevel@tonic-gate 				    (uInt)(q - s->window));
54607c478bd9Sstevel@tonic-gate #endif
54617c478bd9Sstevel@tonic-gate 			while (c->len)
54627c478bd9Sstevel@tonic-gate 			{
54637c478bd9Sstevel@tonic-gate 				NEEDOUT;
54647c478bd9Sstevel@tonic-gate 				OUTBYTE(*f++);
54657c478bd9Sstevel@tonic-gate 				if (f == s->end)
54667c478bd9Sstevel@tonic-gate 					f = s->window;
54677c478bd9Sstevel@tonic-gate 				c->len--;
54687c478bd9Sstevel@tonic-gate 			}
54697c478bd9Sstevel@tonic-gate 			c->mode = START;
54707c478bd9Sstevel@tonic-gate 			break;
54717c478bd9Sstevel@tonic-gate 		case LIT:	/* o: got literal, waiting for output space */
54727c478bd9Sstevel@tonic-gate 			NEEDOUT;
54737c478bd9Sstevel@tonic-gate 			OUTBYTE(c->sub.lit);
54747c478bd9Sstevel@tonic-gate 			c->mode = START;
54757c478bd9Sstevel@tonic-gate 			break;
54767c478bd9Sstevel@tonic-gate 		case WASH:	/* o: got eob, possibly more output */
54777c478bd9Sstevel@tonic-gate 			if (k > 7) {	/* return unused byte, if any */
54787c478bd9Sstevel@tonic-gate 				Assert(k < 16,
54797c478bd9Sstevel@tonic-gate 				    "inflate_codes grabbed too many bytes");
54807c478bd9Sstevel@tonic-gate 				k -= 8;
54817c478bd9Sstevel@tonic-gate 				n++;
54827c478bd9Sstevel@tonic-gate 				p--;	/* can always return one */
54837c478bd9Sstevel@tonic-gate 			}
54847c478bd9Sstevel@tonic-gate 			FLUSH;
54857c478bd9Sstevel@tonic-gate 			if (s->read != s->write)
54867c478bd9Sstevel@tonic-gate 				LEAVE
54877c478bd9Sstevel@tonic-gate 			c->mode = END;
54887c478bd9Sstevel@tonic-gate 			/* FALLTHRU */
54897c478bd9Sstevel@tonic-gate 		case END:
54907c478bd9Sstevel@tonic-gate 			r = Z_STREAM_END;
54917c478bd9Sstevel@tonic-gate 			LEAVE
54927c478bd9Sstevel@tonic-gate 		case BADCODE:	/* x: got error */
54937c478bd9Sstevel@tonic-gate 			r = Z_DATA_ERROR;
54947c478bd9Sstevel@tonic-gate 			LEAVE
54957c478bd9Sstevel@tonic-gate 		default:
54967c478bd9Sstevel@tonic-gate 			r = Z_STREAM_ERROR;
54977c478bd9Sstevel@tonic-gate 			LEAVE
54987c478bd9Sstevel@tonic-gate 		}
54997c478bd9Sstevel@tonic-gate 	/* NOTREACHED */
55007c478bd9Sstevel@tonic-gate 	/* otherwise lint complains */
55017c478bd9Sstevel@tonic-gate }
55027c478bd9Sstevel@tonic-gate 
55037c478bd9Sstevel@tonic-gate 
55047c478bd9Sstevel@tonic-gate void
inflate_codes_free(c,z)55057c478bd9Sstevel@tonic-gate inflate_codes_free(c, z)
55067c478bd9Sstevel@tonic-gate inflate_codes_statef *c;
55077c478bd9Sstevel@tonic-gate z_streamp z;
55087c478bd9Sstevel@tonic-gate {
55097c478bd9Sstevel@tonic-gate 	ZFREE(z, c);
55107c478bd9Sstevel@tonic-gate 	Tracev((stderr, "inflate:       codes free\n"));
55117c478bd9Sstevel@tonic-gate }
55127c478bd9Sstevel@tonic-gate /* --- infcodes.c */
55137c478bd9Sstevel@tonic-gate 
55147c478bd9Sstevel@tonic-gate /* +++ infutil.c */
55157c478bd9Sstevel@tonic-gate /*
55167c478bd9Sstevel@tonic-gate  * inflate_util.c -- data and routines common to blocks and codes
55177c478bd9Sstevel@tonic-gate  * Copyright (C) 1995-1998 Mark Adler
55187c478bd9Sstevel@tonic-gate  * For conditions of distribution and use, see copyright notice in zlib.h
55197c478bd9Sstevel@tonic-gate  */
55207c478bd9Sstevel@tonic-gate 
55217c478bd9Sstevel@tonic-gate /* #include "zutil.h" */
55227c478bd9Sstevel@tonic-gate /* #include "infblock.h" */
55237c478bd9Sstevel@tonic-gate /* #include "inftrees.h" */
55247c478bd9Sstevel@tonic-gate /* #include "infcodes.h" */
55257c478bd9Sstevel@tonic-gate /* #include "infutil.h" */
55267c478bd9Sstevel@tonic-gate 
55277c478bd9Sstevel@tonic-gate #ifndef NO_DUMMY_DECL
55287c478bd9Sstevel@tonic-gate struct inflate_codes_state {int dummy; };	/* for buggy compilers */
55297c478bd9Sstevel@tonic-gate #endif
55307c478bd9Sstevel@tonic-gate 
55317c478bd9Sstevel@tonic-gate /* And'ing with mask[n] masks the lower n bits */
55327c478bd9Sstevel@tonic-gate uInt inflate_mask[17] = {
55337c478bd9Sstevel@tonic-gate 	0x0000,
55347c478bd9Sstevel@tonic-gate 	0x0001, 0x0003, 0x0007, 0x000f, 0x001f, 0x003f, 0x007f, 0x00ff,
55357c478bd9Sstevel@tonic-gate 	0x01ff, 0x03ff, 0x07ff, 0x0fff, 0x1fff, 0x3fff, 0x7fff, 0xffff
55367c478bd9Sstevel@tonic-gate };
55377c478bd9Sstevel@tonic-gate 
55387c478bd9Sstevel@tonic-gate 
55397c478bd9Sstevel@tonic-gate /* copy as much as possible from the sliding window to the output area */
55407c478bd9Sstevel@tonic-gate int
inflate_flush(s,z,r)55417c478bd9Sstevel@tonic-gate inflate_flush(s, z, r)
55427c478bd9Sstevel@tonic-gate inflate_blocks_statef *s;
55437c478bd9Sstevel@tonic-gate z_streamp z;
55447c478bd9Sstevel@tonic-gate int r;
55457c478bd9Sstevel@tonic-gate {
55467c478bd9Sstevel@tonic-gate 	uInt n;
55477c478bd9Sstevel@tonic-gate 	Bytef *p;
55487c478bd9Sstevel@tonic-gate 	Bytef *q;
55497c478bd9Sstevel@tonic-gate 
55507c478bd9Sstevel@tonic-gate 	/* local copies of source and destination pointers */
55517c478bd9Sstevel@tonic-gate 	p = z->next_out;
55527c478bd9Sstevel@tonic-gate 	q = s->read;
55537c478bd9Sstevel@tonic-gate 
55547c478bd9Sstevel@tonic-gate 	/* compute number of bytes to copy as far as end of window */
55557c478bd9Sstevel@tonic-gate 	n = (uInt)((q <= s->write ? s->write : s->end) - q);
55567c478bd9Sstevel@tonic-gate 	if (n > z->avail_out) n = z->avail_out;
55577c478bd9Sstevel@tonic-gate 	if (n && r == Z_BUF_ERROR) r = Z_OK;
55587c478bd9Sstevel@tonic-gate 
55597c478bd9Sstevel@tonic-gate 	/* update counters */
55607c478bd9Sstevel@tonic-gate 	z->avail_out -= n;
55617c478bd9Sstevel@tonic-gate 	z->total_out += n;
55627c478bd9Sstevel@tonic-gate 
55637c478bd9Sstevel@tonic-gate 	/* update check information */
55647c478bd9Sstevel@tonic-gate 	if (s->checkfn != Z_NULL)
55657c478bd9Sstevel@tonic-gate 		z->adler = s->check = (*s->checkfn)(s->check, q, n);
55667c478bd9Sstevel@tonic-gate 
55677c478bd9Sstevel@tonic-gate 	/* copy as far as end of window */
55687c478bd9Sstevel@tonic-gate 	if (p != Z_NULL) {	/* PPP */
55697c478bd9Sstevel@tonic-gate 		zmemcpy(p, q, n);
55707c478bd9Sstevel@tonic-gate 		p += n;
55717c478bd9Sstevel@tonic-gate 	}	/* PPP */
55727c478bd9Sstevel@tonic-gate 	q += n;
55737c478bd9Sstevel@tonic-gate 
55747c478bd9Sstevel@tonic-gate 	/* see if more to copy at beginning of window */
55757c478bd9Sstevel@tonic-gate 	if (q == s->end)
55767c478bd9Sstevel@tonic-gate 	{
55777c478bd9Sstevel@tonic-gate 		/* wrap pointers */
55787c478bd9Sstevel@tonic-gate 		q = s->window;
55797c478bd9Sstevel@tonic-gate 		if (s->write == s->end)
55807c478bd9Sstevel@tonic-gate 			s->write = s->window;
55817c478bd9Sstevel@tonic-gate 
55827c478bd9Sstevel@tonic-gate 		/* compute bytes to copy */
55837c478bd9Sstevel@tonic-gate 		n = (uInt)(s->write - q);
55847c478bd9Sstevel@tonic-gate 		if (n > z->avail_out) n = z->avail_out;
55857c478bd9Sstevel@tonic-gate 		if (n && r == Z_BUF_ERROR) r = Z_OK;
55867c478bd9Sstevel@tonic-gate 
55877c478bd9Sstevel@tonic-gate 		/* update counters */
55887c478bd9Sstevel@tonic-gate 		z->avail_out -= n;
55897c478bd9Sstevel@tonic-gate 		z->total_out += n;
55907c478bd9Sstevel@tonic-gate 
55917c478bd9Sstevel@tonic-gate 		/* update check information */
55927c478bd9Sstevel@tonic-gate 		if (s->checkfn != Z_NULL)
55937c478bd9Sstevel@tonic-gate 			z->adler = s->check = (*s->checkfn)(s->check, q, n);
55947c478bd9Sstevel@tonic-gate 
55957c478bd9Sstevel@tonic-gate 		/* copy */
55967c478bd9Sstevel@tonic-gate 		if (p != Z_NULL) {	/* PPP */
55977c478bd9Sstevel@tonic-gate 			zmemcpy(p, q, n);
55987c478bd9Sstevel@tonic-gate 			p += n;
55997c478bd9Sstevel@tonic-gate 		}	/* PPP */
56007c478bd9Sstevel@tonic-gate 		q += n;
56017c478bd9Sstevel@tonic-gate 	}
56027c478bd9Sstevel@tonic-gate 
56037c478bd9Sstevel@tonic-gate 	/* update pointers */
56047c478bd9Sstevel@tonic-gate 	z->next_out = p;
56057c478bd9Sstevel@tonic-gate 	s->read = q;
56067c478bd9Sstevel@tonic-gate 
56077c478bd9Sstevel@tonic-gate 	/* done */
56087c478bd9Sstevel@tonic-gate 	return (r);
56097c478bd9Sstevel@tonic-gate }
56107c478bd9Sstevel@tonic-gate /* --- infutil.c */
56117c478bd9Sstevel@tonic-gate 
56127c478bd9Sstevel@tonic-gate /* +++ inffast.c */
56137c478bd9Sstevel@tonic-gate /*
56147c478bd9Sstevel@tonic-gate  * inffast.c -- process literals and length/distance pairs fast
56157c478bd9Sstevel@tonic-gate  * Copyright (C) 1995-1998 Mark Adler
56167c478bd9Sstevel@tonic-gate  * For conditions of distribution and use, see copyright notice in zlib.h
56177c478bd9Sstevel@tonic-gate  */
56187c478bd9Sstevel@tonic-gate 
56197c478bd9Sstevel@tonic-gate /* #include "zutil.h" */
56207c478bd9Sstevel@tonic-gate /* #include "inftrees.h" */
56217c478bd9Sstevel@tonic-gate /* #include "infblock.h" */
56227c478bd9Sstevel@tonic-gate /* #include "infcodes.h" */
56237c478bd9Sstevel@tonic-gate /* #include "infutil.h" */
56247c478bd9Sstevel@tonic-gate /* #include "inffast.h" */
56257c478bd9Sstevel@tonic-gate 
56267c478bd9Sstevel@tonic-gate #ifndef NO_DUMMY_DECL
56277c478bd9Sstevel@tonic-gate struct inflate_codes_state {int dummy; };	/* for buggy compilers */
56287c478bd9Sstevel@tonic-gate #endif
56297c478bd9Sstevel@tonic-gate 
56307c478bd9Sstevel@tonic-gate /* simplify the use of the inflate_huft type with some defines */
56317c478bd9Sstevel@tonic-gate #define	exop word.what.Exop
56327c478bd9Sstevel@tonic-gate #define	bits word.what.Bits
56337c478bd9Sstevel@tonic-gate 
56347c478bd9Sstevel@tonic-gate /* macros for bit input with no checking and for returning unused bytes */
56357c478bd9Sstevel@tonic-gate #define	GRABBITS(j) { while (k < (j)) {b |= ((uLong)NEXTBYTE)<<k; k += 8; }}
56367c478bd9Sstevel@tonic-gate #define	UNGRAB {c = z->avail_in-n; c = (k>>3) < c?k>>3:c; n += c; p -= c; \
56377c478bd9Sstevel@tonic-gate 	k -= c<<3; }
56387c478bd9Sstevel@tonic-gate 
56397c478bd9Sstevel@tonic-gate /*
56407c478bd9Sstevel@tonic-gate  * Called with number of bytes left to write in window at least 258
56417c478bd9Sstevel@tonic-gate  * (the maximum string length) and number of input bytes available at
56427c478bd9Sstevel@tonic-gate  * least ten.  The ten bytes are six bytes for the longest length/
56437c478bd9Sstevel@tonic-gate  * distance pair plus four bytes for overloading the bit buffer.
56447c478bd9Sstevel@tonic-gate  */
56457c478bd9Sstevel@tonic-gate 
56467c478bd9Sstevel@tonic-gate int
inflate_fast(bl,bd,tl,td,s,z)56477c478bd9Sstevel@tonic-gate inflate_fast(bl, bd, tl, td, s, z)
56487c478bd9Sstevel@tonic-gate uInt bl, bd;
56497c478bd9Sstevel@tonic-gate const inflate_huft *tl;
56507c478bd9Sstevel@tonic-gate const inflate_huft *td;	/* need separate declaration for Borland C++ */
56517c478bd9Sstevel@tonic-gate inflate_blocks_statef *s;
56527c478bd9Sstevel@tonic-gate z_streamp z;
56537c478bd9Sstevel@tonic-gate {
56547c478bd9Sstevel@tonic-gate 	const inflate_huft *t;	/* temporary pointer */
56557c478bd9Sstevel@tonic-gate 	uInt e;	/* extra bits or operation */
56567c478bd9Sstevel@tonic-gate 	uLong b;	/* bit buffer */
56577c478bd9Sstevel@tonic-gate 	uInt k;	/* bits in bit buffer */
56587c478bd9Sstevel@tonic-gate 	Bytef *p;	/* input data pointer */
56597c478bd9Sstevel@tonic-gate 	uInt n;	/* bytes available there */
56607c478bd9Sstevel@tonic-gate 	Bytef *q;	/* output window write pointer */
56617c478bd9Sstevel@tonic-gate 	uInt m;	/* bytes to end of window or read pointer */
56627c478bd9Sstevel@tonic-gate 	uInt ml;	/* mask for literal/length tree */
56637c478bd9Sstevel@tonic-gate 	uInt md;	/* mask for distance tree */
56647c478bd9Sstevel@tonic-gate 	uInt c;	/* bytes to copy */
56657c478bd9Sstevel@tonic-gate 	uInt d;	/* distance back to copy from */
56667c478bd9Sstevel@tonic-gate 	Bytef *r;	/* copy source pointer */
56677c478bd9Sstevel@tonic-gate 
56687c478bd9Sstevel@tonic-gate 	/* load input, output, bit values */
56697c478bd9Sstevel@tonic-gate 	LOAD;
56707c478bd9Sstevel@tonic-gate 
56717c478bd9Sstevel@tonic-gate 	/* initialize masks */
56727c478bd9Sstevel@tonic-gate 	ml = inflate_mask[bl];
56737c478bd9Sstevel@tonic-gate 	md = inflate_mask[bd];
56747c478bd9Sstevel@tonic-gate 
56757c478bd9Sstevel@tonic-gate 	/* do until not enough input or output space for fast loop */
56767c478bd9Sstevel@tonic-gate 	do {	/* assume called with m >= 258 && n >= 10 */
56777c478bd9Sstevel@tonic-gate 		/* get literal/length code */
56787c478bd9Sstevel@tonic-gate 		/* max bits for literal/length code */
56797c478bd9Sstevel@tonic-gate 		GRABBITS(20);
56807c478bd9Sstevel@tonic-gate 		if ((e = (t = tl + ((uInt)b & ml))->exop) == 0) {
56817c478bd9Sstevel@tonic-gate 			DUMPBITS(t->bits);
56827c478bd9Sstevel@tonic-gate 			Tracevv((stderr, t->base >= 0x20 && t->base < 0x7f ?
56837c478bd9Sstevel@tonic-gate 			    "inflate:         * literal '%c'\n" :
56847c478bd9Sstevel@tonic-gate 			    "inflate:         * literal 0x%02x\n", t->base));
56857c478bd9Sstevel@tonic-gate 			*q++ = (Byte)t->base;
56867c478bd9Sstevel@tonic-gate 			m--;
56877c478bd9Sstevel@tonic-gate 			continue;
56887c478bd9Sstevel@tonic-gate 		}
56897c478bd9Sstevel@tonic-gate 		do {
56907c478bd9Sstevel@tonic-gate 			DUMPBITS(t->bits);
56917c478bd9Sstevel@tonic-gate 			if (e & 16) {
56927c478bd9Sstevel@tonic-gate 				/* get extra bits for length */
56937c478bd9Sstevel@tonic-gate 				e &= 15;
56947c478bd9Sstevel@tonic-gate 				c = t->base + ((uInt)b & inflate_mask[e]);
56957c478bd9Sstevel@tonic-gate 				DUMPBITS(e);
56967c478bd9Sstevel@tonic-gate 				Tracevv((stderr,
56977c478bd9Sstevel@tonic-gate 				    "inflate:         * length %u\n", c));
56987c478bd9Sstevel@tonic-gate 
56997c478bd9Sstevel@tonic-gate 				/* decode distance base of block to copy */
57007c478bd9Sstevel@tonic-gate 				GRABBITS(15);	/* max bits for distance code */
57017c478bd9Sstevel@tonic-gate 				e = (t = td + ((uInt)b & md))->exop;
57027c478bd9Sstevel@tonic-gate 				do {
57037c478bd9Sstevel@tonic-gate 					DUMPBITS(t->bits);
57047c478bd9Sstevel@tonic-gate 					if (e & 16) {
57057c478bd9Sstevel@tonic-gate 						/*
57067c478bd9Sstevel@tonic-gate 						 * get extra bits to
57077c478bd9Sstevel@tonic-gate 						 * add to distance
57087c478bd9Sstevel@tonic-gate 						 * base
57097c478bd9Sstevel@tonic-gate 						 */
57107c478bd9Sstevel@tonic-gate 						e &= 15;
57117c478bd9Sstevel@tonic-gate 						/* get extra bits (up to 13) */
57127c478bd9Sstevel@tonic-gate 						GRABBITS(e);
57137c478bd9Sstevel@tonic-gate 						d = t->base + ((uInt)b &
57147c478bd9Sstevel@tonic-gate 						    inflate_mask[e]);
57157c478bd9Sstevel@tonic-gate 						DUMPBITS(e);
57167c478bd9Sstevel@tonic-gate 						Tracevv((stderr,
57177c478bd9Sstevel@tonic-gate 						    "inflate:         * "
57187c478bd9Sstevel@tonic-gate 						    "distance %u\n", d));
57197c478bd9Sstevel@tonic-gate 
57207c478bd9Sstevel@tonic-gate 						/* do the copy */
57217c478bd9Sstevel@tonic-gate 						m -= c;
57227c478bd9Sstevel@tonic-gate 						/* offset before dest */
57237c478bd9Sstevel@tonic-gate 						if ((uInt)(q - s->window) >= d)
57247c478bd9Sstevel@tonic-gate 							/*  just copy */
57257c478bd9Sstevel@tonic-gate 						{
57267c478bd9Sstevel@tonic-gate 							r = q - d;
57277c478bd9Sstevel@tonic-gate 							/*
57287c478bd9Sstevel@tonic-gate 							 * minimum
57297c478bd9Sstevel@tonic-gate 							 * count is
57307c478bd9Sstevel@tonic-gate 							 * three, so
57317c478bd9Sstevel@tonic-gate 							 * unroll loop
57327c478bd9Sstevel@tonic-gate 							 * a little
57337c478bd9Sstevel@tonic-gate 							 */
57347c478bd9Sstevel@tonic-gate 							*q++ = *r++;  c--;
57357c478bd9Sstevel@tonic-gate 							*q++ = *r++;  c--;
57367c478bd9Sstevel@tonic-gate 						}
57377c478bd9Sstevel@tonic-gate 					/* else offset after destination */
57387c478bd9Sstevel@tonic-gate 						else {
57397c478bd9Sstevel@tonic-gate 	/* bytes from offset to end */
57407c478bd9Sstevel@tonic-gate 							e = d - (uInt)(q -
57417c478bd9Sstevel@tonic-gate 							    s->window);
57427c478bd9Sstevel@tonic-gate 	/* pointer to offset */
57437c478bd9Sstevel@tonic-gate 							r = s->end - e;
57447c478bd9Sstevel@tonic-gate 							/* if source crosses */
57457c478bd9Sstevel@tonic-gate 							if (c > e) {
57467c478bd9Sstevel@tonic-gate 	/* copy to end of window */
57477c478bd9Sstevel@tonic-gate 								c -= e;
57487c478bd9Sstevel@tonic-gate 								do {
57497c478bd9Sstevel@tonic-gate 									*q++ =
57507c478bd9Sstevel@tonic-gate 									    *r
57517c478bd9Sstevel@tonic-gate 									    ++;
57527c478bd9Sstevel@tonic-gate 								} while (--e);
57537c478bd9Sstevel@tonic-gate 	/* copy rest from start of window */
57547c478bd9Sstevel@tonic-gate 								r = s->window;
57557c478bd9Sstevel@tonic-gate 							}
57567c478bd9Sstevel@tonic-gate 						}
57577c478bd9Sstevel@tonic-gate 						/* copy all or what's left */
57587c478bd9Sstevel@tonic-gate 						do {
57597c478bd9Sstevel@tonic-gate 							*q++ = *r++;
57607c478bd9Sstevel@tonic-gate 						} while (--c);
57617c478bd9Sstevel@tonic-gate 						break;
57627c478bd9Sstevel@tonic-gate 					} else if ((e & 64) == 0) {
57637c478bd9Sstevel@tonic-gate 						t += t->base;
57647c478bd9Sstevel@tonic-gate 						e = (t += ((uInt)b &
57657c478bd9Sstevel@tonic-gate 						    inflate_mask[e]))->exop;
57667c478bd9Sstevel@tonic-gate 					} else {
57677c478bd9Sstevel@tonic-gate 						z->msg =
57687c478bd9Sstevel@tonic-gate 						    "invalid distance code";
57697c478bd9Sstevel@tonic-gate 						UNGRAB;
57707c478bd9Sstevel@tonic-gate 						UPDATE;
57717c478bd9Sstevel@tonic-gate 						return (Z_DATA_ERROR);
57727c478bd9Sstevel@tonic-gate 					}
57737c478bd9Sstevel@tonic-gate 					/* CONSTCOND */
57747c478bd9Sstevel@tonic-gate 				} while (1);
57757c478bd9Sstevel@tonic-gate 				break;
57767c478bd9Sstevel@tonic-gate 			}
57777c478bd9Sstevel@tonic-gate 			if ((e & 64) == 0)
57787c478bd9Sstevel@tonic-gate 			{
57797c478bd9Sstevel@tonic-gate 				t += t->base;
57807c478bd9Sstevel@tonic-gate 				if ((e = (t += ((uInt)b &
57817c478bd9Sstevel@tonic-gate 				    inflate_mask[e]))->exop) == 0)
57827c478bd9Sstevel@tonic-gate 				{
57837c478bd9Sstevel@tonic-gate 					DUMPBITS(t->bits);
57847c478bd9Sstevel@tonic-gate 					Tracevv((stderr, t->base >= 0x20 &&
57857c478bd9Sstevel@tonic-gate 					    t->base < 0x7f ?
57867c478bd9Sstevel@tonic-gate 					    "inflate:         * literal '%c'\n"
57877c478bd9Sstevel@tonic-gate 					    :
57887c478bd9Sstevel@tonic-gate 					    "inflate:         * literal "
57897c478bd9Sstevel@tonic-gate 					    "0x%02x\n", t->base));
57907c478bd9Sstevel@tonic-gate 					*q++ = (Byte)t->base;
57917c478bd9Sstevel@tonic-gate 					m--;
57927c478bd9Sstevel@tonic-gate 					break;
57937c478bd9Sstevel@tonic-gate 				}
57947c478bd9Sstevel@tonic-gate 			} else if (e & 32) {
57957c478bd9Sstevel@tonic-gate 				Tracevv((stderr,
57967c478bd9Sstevel@tonic-gate 				    "inflate:         * end of block\n"));
57977c478bd9Sstevel@tonic-gate 				UNGRAB;
57987c478bd9Sstevel@tonic-gate 				UPDATE;
57997c478bd9Sstevel@tonic-gate 				return (Z_STREAM_END);
58007c478bd9Sstevel@tonic-gate 			} else {
58017c478bd9Sstevel@tonic-gate 				z->msg = "invalid literal/length code";
58027c478bd9Sstevel@tonic-gate 				UNGRAB;
58037c478bd9Sstevel@tonic-gate 				UPDATE;
58047c478bd9Sstevel@tonic-gate 				return (Z_DATA_ERROR);
58057c478bd9Sstevel@tonic-gate 			}
58067c478bd9Sstevel@tonic-gate 			/* CONSTCOND */
58077c478bd9Sstevel@tonic-gate 		} while (1);
58087c478bd9Sstevel@tonic-gate 	} while (m >= 258 && n >= 10);
58097c478bd9Sstevel@tonic-gate 
58107c478bd9Sstevel@tonic-gate 	/* not enough input or output--restore pointers and return */
58117c478bd9Sstevel@tonic-gate 	UNGRAB;
58127c478bd9Sstevel@tonic-gate 	UPDATE;
58137c478bd9Sstevel@tonic-gate 	return (Z_OK);
58147c478bd9Sstevel@tonic-gate }
58157c478bd9Sstevel@tonic-gate /* --- inffast.c */
58167c478bd9Sstevel@tonic-gate 
58177c478bd9Sstevel@tonic-gate /* +++ zutil.c */
58187c478bd9Sstevel@tonic-gate /*
58197c478bd9Sstevel@tonic-gate  * zutil.c -- target dependent utility functions for the compression library
58207c478bd9Sstevel@tonic-gate  * Copyright (C) 1995-1998 Jean-loup Gailly.
58217c478bd9Sstevel@tonic-gate  * For conditions of distribution and use, see copyright notice in zlib.h
58227c478bd9Sstevel@tonic-gate  */
58237c478bd9Sstevel@tonic-gate 
58247c478bd9Sstevel@tonic-gate /* From: zutil.c,v 1.17 1996/07/24 13:41:12 me Exp $ */
58257c478bd9Sstevel@tonic-gate 
58267c478bd9Sstevel@tonic-gate #ifdef DEBUG_ZLIB
58277c478bd9Sstevel@tonic-gate #include <stdio.h>
58287c478bd9Sstevel@tonic-gate #endif
58297c478bd9Sstevel@tonic-gate 
58307c478bd9Sstevel@tonic-gate /* #include "zutil.h" */
58317c478bd9Sstevel@tonic-gate 
58327c478bd9Sstevel@tonic-gate #ifndef NO_DUMMY_DECL
58337c478bd9Sstevel@tonic-gate struct internal_state	{int dummy; };	/* for buggy compilers */
58347c478bd9Sstevel@tonic-gate #endif
58357c478bd9Sstevel@tonic-gate 
58367c478bd9Sstevel@tonic-gate #ifndef STDC
58377c478bd9Sstevel@tonic-gate extern void exit OF((int));
58387c478bd9Sstevel@tonic-gate #endif
58397c478bd9Sstevel@tonic-gate 
5840*c9431fa1Sahl static const char *z_errmsg[10] = {
58417c478bd9Sstevel@tonic-gate "need dictionary",	/* Z_NEED_DICT		2 */
58427c478bd9Sstevel@tonic-gate "stream end",		/* Z_STREAM_END		1 */
58437c478bd9Sstevel@tonic-gate "",			/* Z_OK			0 */
58447c478bd9Sstevel@tonic-gate "file error",		/* Z_ERRNO		(-1) */
58457c478bd9Sstevel@tonic-gate "stream error",		/* Z_STREAM_ERROR	(-2) */
58467c478bd9Sstevel@tonic-gate "data error",		/* Z_DATA_ERROR		(-3) */
58477c478bd9Sstevel@tonic-gate "insufficient memory",	/* Z_MEM_ERROR		(-4) */
58487c478bd9Sstevel@tonic-gate "buffer error",		/* Z_BUF_ERROR		(-5) */
58497c478bd9Sstevel@tonic-gate "incompatible version",	/* Z_VERSION_ERROR	(-6) */
58507c478bd9Sstevel@tonic-gate ""};
58517c478bd9Sstevel@tonic-gate 
58527c478bd9Sstevel@tonic-gate 
58537c478bd9Sstevel@tonic-gate const char *
zlibVersion()58547c478bd9Sstevel@tonic-gate zlibVersion()
58557c478bd9Sstevel@tonic-gate {
58567c478bd9Sstevel@tonic-gate 	return (ZLIB_VERSION);
58577c478bd9Sstevel@tonic-gate }
58587c478bd9Sstevel@tonic-gate 
58597c478bd9Sstevel@tonic-gate #ifdef DEBUG_ZLIB
58607c478bd9Sstevel@tonic-gate void
z_error(m)58617c478bd9Sstevel@tonic-gate z_error(m)
58627c478bd9Sstevel@tonic-gate     char *m;
58637c478bd9Sstevel@tonic-gate {
58647c478bd9Sstevel@tonic-gate 	fprintf(stderr, "%s\n", m);
58657c478bd9Sstevel@tonic-gate 	exit(1);
58667c478bd9Sstevel@tonic-gate }
58677c478bd9Sstevel@tonic-gate #endif
58687c478bd9Sstevel@tonic-gate 
58697c478bd9Sstevel@tonic-gate #ifndef HAVE_MEMCPY
58707c478bd9Sstevel@tonic-gate 
58717c478bd9Sstevel@tonic-gate void
zmemcpy(dest,source,len)58727c478bd9Sstevel@tonic-gate zmemcpy(dest, source, len)
58737c478bd9Sstevel@tonic-gate     Bytef* dest;
58747c478bd9Sstevel@tonic-gate     const Bytef* source;
58757c478bd9Sstevel@tonic-gate     uInt  len;
58767c478bd9Sstevel@tonic-gate {
58777c478bd9Sstevel@tonic-gate 	if (len == 0)
58787c478bd9Sstevel@tonic-gate 		return;
58797c478bd9Sstevel@tonic-gate 	do {
58807c478bd9Sstevel@tonic-gate 		*dest++ = *source++;	/* ??? to be unrolled */
58817c478bd9Sstevel@tonic-gate 	} while (--len != 0);
58827c478bd9Sstevel@tonic-gate }
58837c478bd9Sstevel@tonic-gate 
58847c478bd9Sstevel@tonic-gate int
zmemcmp(s1,s2,len)58857c478bd9Sstevel@tonic-gate zmemcmp(s1, s2, len)
58867c478bd9Sstevel@tonic-gate const Bytef* s1;
58877c478bd9Sstevel@tonic-gate const Bytef* s2;
58887c478bd9Sstevel@tonic-gate uInt  len;
58897c478bd9Sstevel@tonic-gate {
58907c478bd9Sstevel@tonic-gate 	uInt j;
58917c478bd9Sstevel@tonic-gate 
58927c478bd9Sstevel@tonic-gate 	for (j = 0; j < len; j++) {
58937c478bd9Sstevel@tonic-gate 		if (s1[j] != s2[j])
58947c478bd9Sstevel@tonic-gate 			return (2*(s1[j] > s2[j])-1);
58957c478bd9Sstevel@tonic-gate 	}
58967c478bd9Sstevel@tonic-gate 	return (0);
58977c478bd9Sstevel@tonic-gate }
58987c478bd9Sstevel@tonic-gate 
58997c478bd9Sstevel@tonic-gate void
zmemzero(dest,len)59007c478bd9Sstevel@tonic-gate zmemzero(dest, len)
59017c478bd9Sstevel@tonic-gate     Bytef* dest;
59027c478bd9Sstevel@tonic-gate     uInt  len;
59037c478bd9Sstevel@tonic-gate {
59047c478bd9Sstevel@tonic-gate 	if (len == 0)
59057c478bd9Sstevel@tonic-gate 		return;
59067c478bd9Sstevel@tonic-gate 	do {
59077c478bd9Sstevel@tonic-gate 		*dest++ = 0;	/* ??? to be unrolled */
59087c478bd9Sstevel@tonic-gate 	} while (--len != 0);
59097c478bd9Sstevel@tonic-gate }
59107c478bd9Sstevel@tonic-gate #endif
59117c478bd9Sstevel@tonic-gate 
59127c478bd9Sstevel@tonic-gate #ifdef __TURBOC__
59137c478bd9Sstevel@tonic-gate #if (defined(__BORLANDC__) || !defined(SMALL_MEDIUM)) && !defined(__32BIT__)
59147c478bd9Sstevel@tonic-gate /*
59157c478bd9Sstevel@tonic-gate  * Small and medium model in Turbo C are for now limited to near
59167c478bd9Sstevel@tonic-gate  * allocation with reduced MAX_WBITS and MAX_MEM_LEVEL
59177c478bd9Sstevel@tonic-gate  */
59187c478bd9Sstevel@tonic-gate #define	MY_ZCALLOC
59197c478bd9Sstevel@tonic-gate 
59207c478bd9Sstevel@tonic-gate /*
59217c478bd9Sstevel@tonic-gate  * Turbo C malloc() does not allow dynamic allocation of 64K bytes and
59227c478bd9Sstevel@tonic-gate  * farmalloc(64K) returns a pointer with an offset of 8, so we must
59237c478bd9Sstevel@tonic-gate  * fix the pointer. Warning: the pointer must be put back to its
59247c478bd9Sstevel@tonic-gate  * original form in order to free it, use zcfree().
59257c478bd9Sstevel@tonic-gate  */
59267c478bd9Sstevel@tonic-gate 
59277c478bd9Sstevel@tonic-gate #define	MAX_PTR 10
59287c478bd9Sstevel@tonic-gate /* 10*64K = 640K */
59297c478bd9Sstevel@tonic-gate 
59307c478bd9Sstevel@tonic-gate local int next_ptr = 0;
59317c478bd9Sstevel@tonic-gate 
59327c478bd9Sstevel@tonic-gate typedef struct ptr_table_s {
59337c478bd9Sstevel@tonic-gate 	voidpf org_ptr;
59347c478bd9Sstevel@tonic-gate 	voidpf new_ptr;
59357c478bd9Sstevel@tonic-gate } ptr_table;
59367c478bd9Sstevel@tonic-gate 
59377c478bd9Sstevel@tonic-gate local ptr_table table[MAX_PTR];
59387c478bd9Sstevel@tonic-gate /*
59397c478bd9Sstevel@tonic-gate  * This table is used to remember the original form of pointers to
59407c478bd9Sstevel@tonic-gate  * large buffers (64K). Such pointers are normalized with a zero
59417c478bd9Sstevel@tonic-gate  * offset.  Since MSDOS is not a preemptive multitasking OS, this
59427c478bd9Sstevel@tonic-gate  * table is not protected from concurrent access. This hack doesn't
59437c478bd9Sstevel@tonic-gate  * work anyway on a protected system like OS/2. Use Microsoft C
59447c478bd9Sstevel@tonic-gate  * instead.
59457c478bd9Sstevel@tonic-gate  */
59467c478bd9Sstevel@tonic-gate 
59477c478bd9Sstevel@tonic-gate voidpf
zcalloc(voidpf opaque,unsigned items,unsigned size)59487c478bd9Sstevel@tonic-gate zcalloc(voidpf opaque, unsigned items, unsigned size)
59497c478bd9Sstevel@tonic-gate {
59507c478bd9Sstevel@tonic-gate 	voidpf buf = opaque;	/* just to make some compilers happy */
59517c478bd9Sstevel@tonic-gate 	ulg bsize = (ulg)items*size;
59527c478bd9Sstevel@tonic-gate 
59537c478bd9Sstevel@tonic-gate 	/*
59547c478bd9Sstevel@tonic-gate 	 * If we allocate less than 65520 bytes, we assume that
59557c478bd9Sstevel@tonic-gate 	 * farmalloc will return a usable pointer which doesn't have
59567c478bd9Sstevel@tonic-gate 	 * to be normalized.
59577c478bd9Sstevel@tonic-gate 	 */
59587c478bd9Sstevel@tonic-gate 	if (bsize < 65520L) {
59597c478bd9Sstevel@tonic-gate 		buf = farmalloc(bsize);
59607c478bd9Sstevel@tonic-gate 		if (*(ush *)&buf != 0)
59617c478bd9Sstevel@tonic-gate 			return (buf);
59627c478bd9Sstevel@tonic-gate 	} else {
59637c478bd9Sstevel@tonic-gate 		buf = farmalloc(bsize + 16L);
59647c478bd9Sstevel@tonic-gate 	}
59657c478bd9Sstevel@tonic-gate 	if (buf == NULL || next_ptr >= MAX_PTR)
59667c478bd9Sstevel@tonic-gate 		return (NULL);
59677c478bd9Sstevel@tonic-gate 	table[next_ptr].org_ptr = buf;
59687c478bd9Sstevel@tonic-gate 
59697c478bd9Sstevel@tonic-gate 	/* Normalize the pointer to seg:0 */
59707c478bd9Sstevel@tonic-gate 	*((ush *)&buf+1) += ((ush)((uch *)buf-0) + 15) >> 4;
59717c478bd9Sstevel@tonic-gate 	*(ush *)&buf = 0;
59727c478bd9Sstevel@tonic-gate 	table[next_ptr++].new_ptr = buf;
59737c478bd9Sstevel@tonic-gate 	return (buf);
59747c478bd9Sstevel@tonic-gate }
59757c478bd9Sstevel@tonic-gate 
59767c478bd9Sstevel@tonic-gate void
zcfree(voidpf opaque,voidpf ptr)59777c478bd9Sstevel@tonic-gate zcfree(voidpf opaque, voidpf ptr)
59787c478bd9Sstevel@tonic-gate {
59797c478bd9Sstevel@tonic-gate 	int n;
59807c478bd9Sstevel@tonic-gate 	if (*(ush*)&ptr != 0) { /* object < 64K */
59817c478bd9Sstevel@tonic-gate 		farfree(ptr);
59827c478bd9Sstevel@tonic-gate 		return;
59837c478bd9Sstevel@tonic-gate 	}
59847c478bd9Sstevel@tonic-gate 	/* Find the original pointer */
59857c478bd9Sstevel@tonic-gate 	for (n = 0; n < next_ptr; n++) {
59867c478bd9Sstevel@tonic-gate 		if (ptr != table[n].new_ptr)
59877c478bd9Sstevel@tonic-gate 			continue;
59887c478bd9Sstevel@tonic-gate 
59897c478bd9Sstevel@tonic-gate 		farfree(table[n].org_ptr);
59907c478bd9Sstevel@tonic-gate 		while (++n < next_ptr) {
59917c478bd9Sstevel@tonic-gate 			table[n-1] = table[n];
59927c478bd9Sstevel@tonic-gate 		}
59937c478bd9Sstevel@tonic-gate 		next_ptr--;
59947c478bd9Sstevel@tonic-gate 		return;
59957c478bd9Sstevel@tonic-gate 	}
59967c478bd9Sstevel@tonic-gate 	ptr = opaque;	/* just to make some compilers happy */
59977c478bd9Sstevel@tonic-gate 	Assert(0, "zcfree: ptr not found");
59987c478bd9Sstevel@tonic-gate }
59997c478bd9Sstevel@tonic-gate #endif
60007c478bd9Sstevel@tonic-gate #endif /* __TURBOC__ */
60017c478bd9Sstevel@tonic-gate 
60027c478bd9Sstevel@tonic-gate 
60037c478bd9Sstevel@tonic-gate #if defined(M_I86) && !defined(__32BIT__)
60047c478bd9Sstevel@tonic-gate /* Microsoft C in 16-bit mode */
60057c478bd9Sstevel@tonic-gate 
60067c478bd9Sstevel@tonic-gate #define	MY_ZCALLOC
60077c478bd9Sstevel@tonic-gate 
60087c478bd9Sstevel@tonic-gate #if (!defined(_MSC_VER) || (_MSC_VER <= 600))
60097c478bd9Sstevel@tonic-gate #define	_halloc  halloc
60107c478bd9Sstevel@tonic-gate #define	_hfree   hfree
60117c478bd9Sstevel@tonic-gate #endif
60127c478bd9Sstevel@tonic-gate 
60137c478bd9Sstevel@tonic-gate voidpf
zcalloc(voidpf opaque,unsigned items,unsigned size)60147c478bd9Sstevel@tonic-gate zcalloc(voidpf opaque, unsigned items, unsigned size)
60157c478bd9Sstevel@tonic-gate {
60167c478bd9Sstevel@tonic-gate 	if (opaque) opaque = 0;	/* to make compiler happy */
60177c478bd9Sstevel@tonic-gate 	return (_halloc((long)items, size));
60187c478bd9Sstevel@tonic-gate }
60197c478bd9Sstevel@tonic-gate 
60207c478bd9Sstevel@tonic-gate void
zcfree(voidpf opaque,voidpf ptr)60217c478bd9Sstevel@tonic-gate zcfree(voidpf opaque, voidpf ptr)
60227c478bd9Sstevel@tonic-gate {
60237c478bd9Sstevel@tonic-gate 	if (opaque) opaque = 0;	/* to make compiler happy */
60247c478bd9Sstevel@tonic-gate 	_hfree(ptr);
60257c478bd9Sstevel@tonic-gate }
60267c478bd9Sstevel@tonic-gate 
60277c478bd9Sstevel@tonic-gate #endif /* MSC */
60287c478bd9Sstevel@tonic-gate 
60297c478bd9Sstevel@tonic-gate 
60307c478bd9Sstevel@tonic-gate #ifndef MY_ZCALLOC /* Any system without a special alloc function */
60317c478bd9Sstevel@tonic-gate 
60327c478bd9Sstevel@tonic-gate #ifndef STDC
60337c478bd9Sstevel@tonic-gate extern voidp  calloc OF((uInt items, uInt size));
60347c478bd9Sstevel@tonic-gate extern void   free   OF((voidpf ptr));
60357c478bd9Sstevel@tonic-gate #endif
60367c478bd9Sstevel@tonic-gate 
60377c478bd9Sstevel@tonic-gate voidpf
zcalloc(opaque,items,size)60387c478bd9Sstevel@tonic-gate zcalloc(opaque, items, size)
60397c478bd9Sstevel@tonic-gate     voidpf opaque;
60407c478bd9Sstevel@tonic-gate     unsigned items;
60417c478bd9Sstevel@tonic-gate     unsigned size;
60427c478bd9Sstevel@tonic-gate {
60437c478bd9Sstevel@tonic-gate 	if (opaque) items += size - size;	/* make compiler happy */
60447c478bd9Sstevel@tonic-gate 	return ((voidpf)calloc(items, size));
60457c478bd9Sstevel@tonic-gate }
60467c478bd9Sstevel@tonic-gate 
60477c478bd9Sstevel@tonic-gate /*ARGSUSED*/
60487c478bd9Sstevel@tonic-gate void
zcfree(opaque,ptr)60497c478bd9Sstevel@tonic-gate zcfree(opaque, ptr)
60507c478bd9Sstevel@tonic-gate     voidpf opaque;
60517c478bd9Sstevel@tonic-gate     voidpf ptr;
60527c478bd9Sstevel@tonic-gate {
60537c478bd9Sstevel@tonic-gate 	free(ptr);
60547c478bd9Sstevel@tonic-gate }
60557c478bd9Sstevel@tonic-gate 
60567c478bd9Sstevel@tonic-gate #endif /* MY_ZCALLOC */
60577c478bd9Sstevel@tonic-gate /* --- zutil.c */
60587c478bd9Sstevel@tonic-gate 
60597c478bd9Sstevel@tonic-gate /* +++ adler32.c */
60607c478bd9Sstevel@tonic-gate /*
60617c478bd9Sstevel@tonic-gate  * adler32.c -- compute the Adler-32 checksum of a data stream
60627c478bd9Sstevel@tonic-gate  * Copyright (C) 1995-1998 Mark Adler
60637c478bd9Sstevel@tonic-gate  * For conditions of distribution and use, see copyright notice in zlib.h
60647c478bd9Sstevel@tonic-gate  */
60657c478bd9Sstevel@tonic-gate 
60667c478bd9Sstevel@tonic-gate /* From: adler32.c,v 1.10 1996/05/22 11:52:18 me Exp $ */
60677c478bd9Sstevel@tonic-gate 
60687c478bd9Sstevel@tonic-gate /* #include "zlib.h" */
60697c478bd9Sstevel@tonic-gate 
60707c478bd9Sstevel@tonic-gate #define	BASE 65521L /* largest prime smaller than 65536 */
60717c478bd9Sstevel@tonic-gate #define	NMAX 5552
60727c478bd9Sstevel@tonic-gate /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
60737c478bd9Sstevel@tonic-gate 
60747c478bd9Sstevel@tonic-gate #define	DO1(buf, i)  {s1 += buf[i]; s2 += s1; }
60757c478bd9Sstevel@tonic-gate #define	DO2(buf, i)  DO1(buf, i); DO1(buf, i+1);
60767c478bd9Sstevel@tonic-gate #define	DO4(buf, i)  DO2(buf, i); DO2(buf, i+2);
60777c478bd9Sstevel@tonic-gate #define	DO8(buf, i)  DO4(buf, i); DO4(buf, i+4);
60787c478bd9Sstevel@tonic-gate #define	DO16(buf)   DO8(buf, 0); DO8(buf, 8);
60797c478bd9Sstevel@tonic-gate 
60807c478bd9Sstevel@tonic-gate /* ========================================================================= */
60817c478bd9Sstevel@tonic-gate uLong
adler32(adler,buf,len)60827c478bd9Sstevel@tonic-gate adler32(adler, buf, len)
60837c478bd9Sstevel@tonic-gate     uLong adler;
60847c478bd9Sstevel@tonic-gate     const Bytef *buf;
60857c478bd9Sstevel@tonic-gate     uInt len;
60867c478bd9Sstevel@tonic-gate {
60877c478bd9Sstevel@tonic-gate 	unsigned long s1 = adler & 0xffff;
60887c478bd9Sstevel@tonic-gate 	unsigned long s2 = (adler >> 16) & 0xffff;
60897c478bd9Sstevel@tonic-gate 	int k;
60907c478bd9Sstevel@tonic-gate 
60917c478bd9Sstevel@tonic-gate 	if (buf == Z_NULL)
60927c478bd9Sstevel@tonic-gate 		return (1L);
60937c478bd9Sstevel@tonic-gate 
60947c478bd9Sstevel@tonic-gate 	while (len > 0) {
60957c478bd9Sstevel@tonic-gate 		k = len < NMAX ? len : NMAX;
60967c478bd9Sstevel@tonic-gate 		len -= k;
60977c478bd9Sstevel@tonic-gate 		while (k >= 16) {
60987c478bd9Sstevel@tonic-gate 			DO16(buf);
60997c478bd9Sstevel@tonic-gate 			buf += 16;
61007c478bd9Sstevel@tonic-gate 			k -= 16;
61017c478bd9Sstevel@tonic-gate 		}
61027c478bd9Sstevel@tonic-gate 		if (k != 0) do {
61037c478bd9Sstevel@tonic-gate 			s1 += *buf++;
61047c478bd9Sstevel@tonic-gate 			s2 += s1;
61057c478bd9Sstevel@tonic-gate 		} while (--k);
61067c478bd9Sstevel@tonic-gate 		s1 %= BASE;
61077c478bd9Sstevel@tonic-gate 		s2 %= BASE;
61087c478bd9Sstevel@tonic-gate 	}
61097c478bd9Sstevel@tonic-gate 	return ((s2 << 16) | s1);
61107c478bd9Sstevel@tonic-gate }
61117c478bd9Sstevel@tonic-gate /* --- adler32.c */
6112