1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Cryptographic API.
*
* Deflate algorithm (RFC 1951), implemented here primarily for use
* by IPCOMP (RFC 3173 & RFC 2394).
*
* Copyright (c) 2003 James Morris <jmorris@intercode.com.au>
* Copyright (c) 2023 Google, LLC. <ardb@kernel.org>
* Copyright (c) 2025 Herbert Xu <herbert@gondor.apana.org.au>
*/
#include <crypto/internal/acompress.h>
#include <crypto/scatterwalk.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/mutex.h>
#include <linux/percpu.h>
#include <linux/scatterlist.h>
#include <linux/slab.h>
#include <linux/spinlock.h>
#include <linux/zlib.h>
#define DEFLATE_DEF_LEVEL Z_DEFAULT_COMPRESSION
#define DEFLATE_DEF_WINBITS 11
#define DEFLATE_DEF_MEMLEVEL MAX_MEM_LEVEL
struct deflate_stream {
struct z_stream_s stream;
u8 workspace[];
};
static DEFINE_MUTEX(deflate_stream_lock);
static void *deflate_alloc_stream(void)
{
size_t size = max(zlib_inflate_workspacesize(),
zlib_deflate_workspacesize(-DEFLATE_DEF_WINBITS,
DEFLATE_DEF_MEMLEVEL));
struct deflate_stream *ctx;
ctx = kvmalloc(sizeof(*ctx) + size, GFP_KERNEL);
if (!ctx)
return ERR_PTR(-ENOMEM);
ctx->stream.workspace = ctx->workspace;
return ctx;
}
static void deflate_free_stream(void *ctx)
{
kvfree(ctx);
}
static struct crypto_acomp_streams deflate_streams = {
.alloc_ctx = deflate_alloc_stream,
.free_ctx = deflate_free_stream,
};
static int deflate_compress_one(struct acomp_req *req,
struct deflate_stream *ds)
{
struct z_stream_s *stream = &ds->stream;
struct acomp_walk walk;
int ret;
ret = acomp_walk_virt(&walk, req, true);
if (ret)
return ret;
do {
unsigned int dcur;
dcur = acomp_walk_next_dst(&walk);
if (!dcur)
return -ENOSPC;
stream->avail_out = dcur;
stream->next_out = walk.dst.virt.addr;
do {
int flush = Z_FINISH;
unsigned int scur;
stream->avail_in = 0;
stream->next_in = NULL;
scur = acomp_walk_next_src(&walk);
if (scur) {
if (acomp_walk_more_src(&walk, scur))
flush = Z_NO_FLUSH;
stream->avail_in = scur;
stream->next_in = walk.src.virt.addr;
}
ret = zlib_deflate(stream, flush);
if (scur) {
scur -= stream->avail_in;
acomp_walk_done_src(&walk, scur);
}
} while (ret == Z_OK && stream->avail_out);
acomp_walk_done_dst(&walk, dcur);
} while (ret == Z_OK);
if (ret != Z_STREAM_END)
return -EINVAL;
req->dlen = stream->total_out;
return 0;
}
static int deflate_compress(struct acomp_req *req)
{
struct crypto_acomp_stream *s;
struct deflate_stream *ds;
int err;
s = crypto_acomp_lock_stream_bh(&deflate_streams);
ds = s->ctx;
err = zlib_deflateInit2(&ds->stream, DEFLATE_DEF_LEVEL, Z_DEFLATED,
-DEFLATE_DEF_WINBITS, DEFLATE_DEF_MEMLEVEL,
Z_DEFAULT_STRATEGY);
if (err != Z_OK) {
err = -EINVAL;
goto out;
}
err = deflate_compress_one(req, ds);
out:
crypto_acomp_unlock_stream_bh(s);
return err;
}
static int deflate_decompress_one(struct acomp_req *req,
struct deflate_stream *ds)
{
struct z_stream_s *stream = &ds->stream;
bool out_of_space = false;
struct acomp_walk walk;
int ret;
ret = acomp_walk_virt(&walk, req, true);
if (ret)
return ret;
do {
unsigned int scur;
stream->avail_in = 0;
stream->next_in = NULL;
scur = acomp_walk_next_src(&walk);
if (scur) {
stream->avail_in = scur;
stream->next_in = walk.src.virt.addr;
}
do {
unsigned int dcur;
dcur = acomp_walk_next_dst(&walk);
if (!dcur) {
out_of_space = true;
break;
}
stream->avail_out = dcur;
stream->next_out = walk.dst.virt.addr;
ret = zlib_inflate(stream, Z_NO_FLUSH);
dcur -= stream->avail_out;
acomp_walk_done_dst(&walk, dcur);
} while (ret == Z_OK && stream->avail_in);
if (scur)
acomp_walk_done_src(&walk, scur);
if (out_of_space)
return -ENOSPC;
} while (ret == Z_OK);
if (ret != Z_STREAM_END)
return -EINVAL;
req->dlen = stream->total_out;
return 0;
}
static int deflate_decompress(struct acomp_req *req)
{
struct crypto_acomp_stream *s;
struct deflate_stream *ds;
int err;
s = crypto_acomp_lock_stream_bh(&deflate_streams);
ds = s->ctx;
err = zlib_inflateInit2(&ds->stream, -DEFLATE_DEF_WINBITS);
if (err != Z_OK) {
err = -EINVAL;
goto out;
}
err = deflate_decompress_one(req, ds);
out:
crypto_acomp_unlock_stream_bh(s);
return err;
}
static int deflate_init(struct crypto_acomp *tfm)
{
int ret;
mutex_lock(&deflate_stream_lock);
ret = crypto_acomp_alloc_streams(&deflate_streams);
mutex_unlock(&deflate_stream_lock);
return ret;
}
static struct acomp_alg acomp = {
.compress = deflate_compress,
.decompress = deflate_decompress,
.init = deflate_init,
.base.cra_name = "deflate",
.base.cra_driver_name = "deflate-generic",
.base.cra_flags = CRYPTO_ALG_REQ_VIRT,
.base.cra_module = THIS_MODULE,
};
static int __init deflate_mod_init(void)
{
return crypto_register_acomp(&acomp);
}
static void __exit deflate_mod_fini(void)
{
crypto_unregister_acomp(&acomp);
crypto_acomp_free_streams(&deflate_streams);
}
module_init(deflate_mod_init);
module_exit(deflate_mod_fini);
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Deflate Compression Algorithm for IPCOMP");
MODULE_AUTHOR("James Morris <jmorris@intercode.com.au>");
MODULE_AUTHOR("Ard Biesheuvel <ardb@kernel.org>");
MODULE_AUTHOR("Herbert Xu <herbert@gondor.apana.org.au>");
MODULE_ALIAS_CRYPTO("deflate");
MODULE_ALIAS_CRYPTO("deflate-generic");
|