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