blob: 94ec3b36a8e8396f9859bd7521fff2c5d2c6f44b [file] [log] [blame]
Richard Hartmann9472d762010-02-16 20:32:13 +08001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Cryptographic API.
3 *
4 * Deflate algorithm (RFC 1951), implemented here primarily for use
5 * by IPCOMP (RFC 3173 & RFC 2394).
6 *
7 * Copyright (c) 2003 James Morris <jmorris@intercode.com.au>
Richard Hartmann9472d762010-02-16 20:32:13 +08008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the Free
Richard Hartmann9472d762010-02-16 20:32:13 +080011 * Software Foundation; either version 2 of the License, or (at your option)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * any later version.
13 *
14 * FIXME: deflate transforms will require up to a total of about 436k of kernel
15 * memory on i386 (390k for compression, the rest for decompression), as the
16 * current zlib kernel code uses a worst case pre-allocation system by default.
17 * This needs to be fixed so that the amount of memory required is properly
18 * related to the winbits and memlevel parameters.
19 *
20 * The default winbits of 11 should suit most packets, and it may be something
21 * to configure on a per-tfm basis in the future.
22 *
23 * Currently, compression history is not maintained between tfm calls, as
24 * it is not needed for IPCOMP and keeps the code simpler. It can be
25 * implemented if someone wants it.
26 */
27#include <linux/init.h>
28#include <linux/module.h>
29#include <linux/crypto.h>
30#include <linux/zlib.h>
31#include <linux/vmalloc.h>
32#include <linux/interrupt.h>
33#include <linux/mm.h>
34#include <linux/net.h>
Giovanni Cabidduf6ded092016-10-21 13:19:53 +010035#include <crypto/internal/scompress.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#define DEFLATE_DEF_LEVEL Z_DEFAULT_COMPRESSION
38#define DEFLATE_DEF_WINBITS 11
39#define DEFLATE_DEF_MEMLEVEL MAX_MEM_LEVEL
40
41struct deflate_ctx {
42 struct z_stream_s comp_stream;
43 struct z_stream_s decomp_stream;
44};
45
Giovanni Cabiddua368f432017-04-21 21:54:30 +010046static int deflate_comp_init(struct deflate_ctx *ctx, int format)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047{
48 int ret = 0;
49 struct z_stream_s *stream = &ctx->comp_stream;
50
Jim Keniston565d76c2011-03-22 16:35:12 -070051 stream->workspace = vzalloc(zlib_deflate_workspacesize(
Giovanni Cabiddua368f432017-04-21 21:54:30 +010052 MAX_WBITS, MAX_MEM_LEVEL));
Richard Hartmann9472d762010-02-16 20:32:13 +080053 if (!stream->workspace) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 ret = -ENOMEM;
55 goto out;
56 }
Giovanni Cabiddua368f432017-04-21 21:54:30 +010057 if (format)
58 ret = zlib_deflateInit(stream, 3);
59 else
60 ret = zlib_deflateInit2(stream, DEFLATE_DEF_LEVEL, Z_DEFLATED,
61 -DEFLATE_DEF_WINBITS,
62 DEFLATE_DEF_MEMLEVEL,
63 Z_DEFAULT_STRATEGY);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 if (ret != Z_OK) {
65 ret = -EINVAL;
66 goto out_free;
67 }
Richard Hartmann9472d762010-02-16 20:32:13 +080068out:
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 return ret;
70out_free:
71 vfree(stream->workspace);
72 goto out;
73}
74
Giovanni Cabiddua368f432017-04-21 21:54:30 +010075static int deflate_decomp_init(struct deflate_ctx *ctx, int format)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
77 int ret = 0;
78 struct z_stream_s *stream = &ctx->decomp_stream;
79
David S. Miller7ab24bf2011-06-29 05:48:41 -070080 stream->workspace = vzalloc(zlib_inflate_workspacesize());
Richard Hartmann9472d762010-02-16 20:32:13 +080081 if (!stream->workspace) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 ret = -ENOMEM;
83 goto out;
84 }
Giovanni Cabiddua368f432017-04-21 21:54:30 +010085 if (format)
86 ret = zlib_inflateInit(stream);
87 else
88 ret = zlib_inflateInit2(stream, -DEFLATE_DEF_WINBITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 if (ret != Z_OK) {
90 ret = -EINVAL;
91 goto out_free;
92 }
93out:
94 return ret;
95out_free:
David S. Miller7ab24bf2011-06-29 05:48:41 -070096 vfree(stream->workspace);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 goto out;
98}
99
100static void deflate_comp_exit(struct deflate_ctx *ctx)
101{
Artem B. Bityuckiy9ffb7142005-04-16 15:23:58 -0700102 zlib_deflateEnd(&ctx->comp_stream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 vfree(ctx->comp_stream.workspace);
104}
105
106static void deflate_decomp_exit(struct deflate_ctx *ctx)
107{
Artem B. Bityuckiy9ffb7142005-04-16 15:23:58 -0700108 zlib_inflateEnd(&ctx->decomp_stream);
David S. Miller7ab24bf2011-06-29 05:48:41 -0700109 vfree(ctx->decomp_stream.workspace);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
Giovanni Cabiddua368f432017-04-21 21:54:30 +0100112static int __deflate_init(void *ctx, int format)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 int ret;
Richard Hartmann9472d762010-02-16 20:32:13 +0800115
Giovanni Cabiddua368f432017-04-21 21:54:30 +0100116 ret = deflate_comp_init(ctx, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 if (ret)
118 goto out;
Giovanni Cabiddua368f432017-04-21 21:54:30 +0100119 ret = deflate_decomp_init(ctx, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 if (ret)
121 deflate_comp_exit(ctx);
122out:
123 return ret;
124}
125
Giovanni Cabiddua368f432017-04-21 21:54:30 +0100126static void *gen_deflate_alloc_ctx(struct crypto_scomp *tfm, int format)
Giovanni Cabidduf6ded092016-10-21 13:19:53 +0100127{
128 struct deflate_ctx *ctx;
129 int ret;
130
131 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
132 if (!ctx)
133 return ERR_PTR(-ENOMEM);
134
Giovanni Cabiddua368f432017-04-21 21:54:30 +0100135 ret = __deflate_init(ctx, format);
Giovanni Cabidduf6ded092016-10-21 13:19:53 +0100136 if (ret) {
137 kfree(ctx);
138 return ERR_PTR(ret);
139 }
140
141 return ctx;
142}
143
Giovanni Cabiddua368f432017-04-21 21:54:30 +0100144static void *deflate_alloc_ctx(struct crypto_scomp *tfm)
145{
146 return gen_deflate_alloc_ctx(tfm, 0);
147}
148
149static void *zlib_deflate_alloc_ctx(struct crypto_scomp *tfm)
150{
151 return gen_deflate_alloc_ctx(tfm, 1);
152}
153
Giovanni Cabidduf6ded092016-10-21 13:19:53 +0100154static int deflate_init(struct crypto_tfm *tfm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
Herbert Xu6c2bb982006-05-16 22:09:29 +1000156 struct deflate_ctx *ctx = crypto_tfm_ctx(tfm);
157
Giovanni Cabiddua368f432017-04-21 21:54:30 +0100158 return __deflate_init(ctx, 0);
Giovanni Cabidduf6ded092016-10-21 13:19:53 +0100159}
160
161static void __deflate_exit(void *ctx)
162{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 deflate_comp_exit(ctx);
164 deflate_decomp_exit(ctx);
165}
166
Giovanni Cabidduf6ded092016-10-21 13:19:53 +0100167static void deflate_free_ctx(struct crypto_scomp *tfm, void *ctx)
168{
169 __deflate_exit(ctx);
170 kzfree(ctx);
171}
172
173static void deflate_exit(struct crypto_tfm *tfm)
174{
175 struct deflate_ctx *ctx = crypto_tfm_ctx(tfm);
176
177 __deflate_exit(ctx);
178}
179
180static int __deflate_compress(const u8 *src, unsigned int slen,
181 u8 *dst, unsigned int *dlen, void *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
183 int ret = 0;
Giovanni Cabidduf6ded092016-10-21 13:19:53 +0100184 struct deflate_ctx *dctx = ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 struct z_stream_s *stream = &dctx->comp_stream;
186
187 ret = zlib_deflateReset(stream);
188 if (ret != Z_OK) {
189 ret = -EINVAL;
190 goto out;
191 }
192
193 stream->next_in = (u8 *)src;
194 stream->avail_in = slen;
195 stream->next_out = (u8 *)dst;
196 stream->avail_out = *dlen;
197
198 ret = zlib_deflate(stream, Z_FINISH);
199 if (ret != Z_STREAM_END) {
200 ret = -EINVAL;
201 goto out;
202 }
203 ret = 0;
204 *dlen = stream->total_out;
205out:
206 return ret;
207}
Richard Hartmann9472d762010-02-16 20:32:13 +0800208
Giovanni Cabidduf6ded092016-10-21 13:19:53 +0100209static int deflate_compress(struct crypto_tfm *tfm, const u8 *src,
210 unsigned int slen, u8 *dst, unsigned int *dlen)
211{
212 struct deflate_ctx *dctx = crypto_tfm_ctx(tfm);
213
214 return __deflate_compress(src, slen, dst, dlen, dctx);
215}
216
217static int deflate_scompress(struct crypto_scomp *tfm, const u8 *src,
218 unsigned int slen, u8 *dst, unsigned int *dlen,
219 void *ctx)
220{
221 return __deflate_compress(src, slen, dst, dlen, ctx);
222}
223
224static int __deflate_decompress(const u8 *src, unsigned int slen,
225 u8 *dst, unsigned int *dlen, void *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
Richard Hartmann9472d762010-02-16 20:32:13 +0800227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 int ret = 0;
Giovanni Cabidduf6ded092016-10-21 13:19:53 +0100229 struct deflate_ctx *dctx = ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 struct z_stream_s *stream = &dctx->decomp_stream;
231
232 ret = zlib_inflateReset(stream);
233 if (ret != Z_OK) {
234 ret = -EINVAL;
235 goto out;
236 }
237
238 stream->next_in = (u8 *)src;
239 stream->avail_in = slen;
240 stream->next_out = (u8 *)dst;
241 stream->avail_out = *dlen;
242
243 ret = zlib_inflate(stream, Z_SYNC_FLUSH);
244 /*
245 * Work around a bug in zlib, which sometimes wants to taste an extra
246 * byte when being used in the (undocumented) raw deflate mode.
247 * (From USAGI).
248 */
249 if (ret == Z_OK && !stream->avail_in && stream->avail_out) {
250 u8 zerostuff = 0;
251 stream->next_in = &zerostuff;
Richard Hartmann9472d762010-02-16 20:32:13 +0800252 stream->avail_in = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 ret = zlib_inflate(stream, Z_FINISH);
254 }
255 if (ret != Z_STREAM_END) {
256 ret = -EINVAL;
257 goto out;
258 }
259 ret = 0;
260 *dlen = stream->total_out;
261out:
262 return ret;
263}
264
Giovanni Cabidduf6ded092016-10-21 13:19:53 +0100265static int deflate_decompress(struct crypto_tfm *tfm, const u8 *src,
266 unsigned int slen, u8 *dst, unsigned int *dlen)
267{
268 struct deflate_ctx *dctx = crypto_tfm_ctx(tfm);
269
270 return __deflate_decompress(src, slen, dst, dlen, dctx);
271}
272
273static int deflate_sdecompress(struct crypto_scomp *tfm, const u8 *src,
274 unsigned int slen, u8 *dst, unsigned int *dlen,
275 void *ctx)
276{
277 return __deflate_decompress(src, slen, dst, dlen, ctx);
278}
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280static struct crypto_alg alg = {
281 .cra_name = "deflate",
282 .cra_flags = CRYPTO_ALG_TYPE_COMPRESS,
283 .cra_ctxsize = sizeof(struct deflate_ctx),
284 .cra_module = THIS_MODULE,
Herbert Xuc7fc0592006-05-24 13:02:26 +1000285 .cra_init = deflate_init,
286 .cra_exit = deflate_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 .cra_u = { .compress = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 .coa_compress = deflate_compress,
289 .coa_decompress = deflate_decompress } }
290};
291
Giovanni Cabiddua368f432017-04-21 21:54:30 +0100292static struct scomp_alg scomp[] = { {
Giovanni Cabidduf6ded092016-10-21 13:19:53 +0100293 .alloc_ctx = deflate_alloc_ctx,
294 .free_ctx = deflate_free_ctx,
295 .compress = deflate_scompress,
296 .decompress = deflate_sdecompress,
297 .base = {
298 .cra_name = "deflate",
299 .cra_driver_name = "deflate-scomp",
300 .cra_module = THIS_MODULE,
301 }
Giovanni Cabiddua368f432017-04-21 21:54:30 +0100302}, {
303 .alloc_ctx = zlib_deflate_alloc_ctx,
304 .free_ctx = deflate_free_ctx,
305 .compress = deflate_scompress,
306 .decompress = deflate_sdecompress,
307 .base = {
308 .cra_name = "zlib-deflate",
309 .cra_driver_name = "zlib-deflate-scomp",
310 .cra_module = THIS_MODULE,
311 }
312} };
Giovanni Cabidduf6ded092016-10-21 13:19:53 +0100313
Kamalesh Babulal3af5b902008-04-05 21:00:57 +0800314static int __init deflate_mod_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Giovanni Cabidduf6ded092016-10-21 13:19:53 +0100316 int ret;
317
318 ret = crypto_register_alg(&alg);
319 if (ret)
320 return ret;
321
Giovanni Cabiddua368f432017-04-21 21:54:30 +0100322 ret = crypto_register_scomps(scomp, ARRAY_SIZE(scomp));
Giovanni Cabidduf6ded092016-10-21 13:19:53 +0100323 if (ret) {
324 crypto_unregister_alg(&alg);
325 return ret;
326 }
327
328 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
Kamalesh Babulal3af5b902008-04-05 21:00:57 +0800331static void __exit deflate_mod_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
333 crypto_unregister_alg(&alg);
Giovanni Cabiddua368f432017-04-21 21:54:30 +0100334 crypto_unregister_scomps(scomp, ARRAY_SIZE(scomp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
Kamalesh Babulal3af5b902008-04-05 21:00:57 +0800337module_init(deflate_mod_init);
338module_exit(deflate_mod_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340MODULE_LICENSE("GPL");
341MODULE_DESCRIPTION("Deflate Compression Algorithm for IPCOMP");
342MODULE_AUTHOR("James Morris <jmorris@intercode.com.au>");
Kees Cook5d26a102014-11-20 17:05:53 -0800343MODULE_ALIAS_CRYPTO("deflate");