4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 #include <sys/modctl.h>
34 * Uncompress the buffer 'src' into the buffer 'dst'. The caller must store
35 * the expected decompressed data size externally so it can be passed in.
36 * The resulting decompressed size is then returned through dstlen. This
37 * function return Z_OK on success, or another error code on failure.
40 z_uncompress(void *dst
, size_t *dstlen
, const void *src
, size_t srclen
)
45 bzero(&zs
, sizeof (zs
));
46 zs
.next_in
= (uchar_t
*)src
;
49 zs
.avail_out
= *dstlen
;
52 * Call inflateInit2() specifying a window size of DEF_WBITS
53 * with the 6th bit set to indicate that the compression format
54 * type (zlib or gzip) should be automatically detected.
56 if ((err
= inflateInit2(&zs
, DEF_WBITS
| 0x20)) != Z_OK
)
59 if ((err
= inflate(&zs
, Z_FINISH
)) != Z_STREAM_END
) {
60 (void) inflateEnd(&zs
);
61 return (err
== Z_OK
? Z_BUF_ERROR
: err
);
64 *dstlen
= zs
.total_out
;
65 return (inflateEnd(&zs
));
69 z_compress_level(void *dst
, size_t *dstlen
, const void *src
, size_t srclen
,
76 bzero(&zs
, sizeof (zs
));
77 zs
.next_in
= (uchar_t
*)src
;
80 zs
.avail_out
= *dstlen
;
82 if ((err
= deflateInit(&zs
, level
)) != Z_OK
)
85 if ((err
= deflate(&zs
, Z_FINISH
)) != Z_STREAM_END
) {
86 (void) deflateEnd(&zs
);
87 return (err
== Z_OK
? Z_BUF_ERROR
: err
);
90 *dstlen
= zs
.total_out
;
91 return (deflateEnd(&zs
));
95 z_compress(void *dst
, size_t *dstlen
, const void *src
, size_t srclen
)
97 return (z_compress_level(dst
, dstlen
, src
, srclen
,
98 Z_DEFAULT_COMPRESSION
));
102 * Convert a zlib error code into a string error message.
107 int i
= Z_NEED_DICT
- err
;
109 if (i
< 0 || i
> Z_NEED_DICT
- Z_VERSION_ERROR
)
110 return ("unknown error");
112 return (zError(err
));