1 /* $FreeBSD: src/sys/opencrypto/deflate.c,v 1.5 2008/10/23 15:53:51 des Exp $ */
2 /* $OpenBSD: deflate.c,v 1.3 2001/08/20 02:45:22 hugh Exp $ */
5 * Copyright (c) 2001 Jean-Jacques Bernard-Gundol (jj@wabbitt.org)
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. The name of the author may not be used to endorse or promote products
17 * derived from this software without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 * This file contains a wrapper around the deflate algo compression
33 * functions using the zlib library (see net/zlib.{c,h})
36 #include <sys/types.h>
37 #include <sys/param.h>
38 #include <sys/malloc.h>
39 #include <sys/param.h>
40 #include <sys/systm.h>
43 #include <opencrypto/cryptodev.h>
44 #include <opencrypto/deflate.h>
46 int window_inflate
= -1 * MAX_WBITS
;
47 int window_deflate
= -12;
50 * This function takes a block of data and (de)compress it using the deflate
55 deflate_global(u_int8_t
*data
, u_int32_t size
, int decomp
, u_int8_t
**out
)
57 /* decomp indicates whether we compress (0) or decompress (1) */
61 u_int32_t count
, result
;
63 struct deflate_buf buf
[ZBUF
];
65 bzero(&zbuf
, sizeof(z_stream
));
66 for (j
= 0; j
< ZBUF
; j
++)
69 zbuf
.next_in
= data
; /* data that is going to be processed */
70 zbuf
.zalloc
= z_alloc
;
73 zbuf
.avail_in
= size
; /* Total length of data to be processed */
76 buf
[i
].out
= kmalloc((u_long
) size
, M_CRYPTO_DATA
, M_WAITOK
);
82 * Choose a buffer with 4x the size of the input buffer
83 * for the size of the output buffer in the case of
84 * decompression. If it's not sufficient, it will need to be
85 * updated while the decompression is going on
88 buf
[i
].out
= kmalloc((u_long
) (size
* 4),
89 M_CRYPTO_DATA
, M_WAITOK
);
90 buf
[i
].size
= size
* 4;
95 zbuf
.next_out
= buf
[0].out
;
96 zbuf
.avail_out
= buf
[0].size
;
98 error
= decomp
? inflateInit2(&zbuf
, window_inflate
) :
99 deflateInit2(&zbuf
, Z_DEFAULT_COMPRESSION
, Z_METHOD
,
100 window_deflate
, Z_MEMLEVEL
, Z_DEFAULT_STRATEGY
);
105 error
= decomp
? inflate(&zbuf
, Z_PARTIAL_FLUSH
) :
106 deflate(&zbuf
, Z_PARTIAL_FLUSH
);
107 if (error
!= Z_OK
&& error
!= Z_STREAM_END
)
109 else if (zbuf
.avail_in
== 0 && zbuf
.avail_out
!= 0)
111 else if (zbuf
.avail_out
== 0 && i
< (ZBUF
- 1)) {
112 /* we need more output space, allocate size */
113 buf
[i
].out
= kmalloc((u_long
) size
,
114 M_CRYPTO_DATA
, M_WAITOK
);
115 zbuf
.next_out
= buf
[i
].out
;
118 zbuf
.avail_out
= buf
[i
].size
;
125 result
= count
= zbuf
.total_out
;
127 *out
= kmalloc((u_long
) result
, M_CRYPTO_DATA
, M_WAITOK
);
133 for (j
= 0; buf
[j
].flag
!= 0; j
++) {
134 if (count
> buf
[j
].size
) {
135 bcopy(buf
[j
].out
, *out
, buf
[j
].size
);
137 kfree(buf
[j
].out
, M_CRYPTO_DATA
);
138 count
-= buf
[j
].size
;
140 /* it should be the last buffer */
141 bcopy(buf
[j
].out
, *out
, count
);
143 kfree(buf
[j
].out
, M_CRYPTO_DATA
);
152 for (j
= 0; buf
[j
].flag
!= 0; j
++)
153 kfree(buf
[j
].out
, M_CRYPTO_DATA
);
162 z_alloc(void *nil
, u_int type
, u_int size
)
166 ptr
= kmalloc(type
*size
, M_CRYPTO_DATA
, M_WAITOK
);
171 z_free(void *nil
, void *ptr
)
173 kfree(ptr
, M_CRYPTO_DATA
);