f2fs: allow readdir() to be interrupted
[linux-2.6/btrfs-unstable.git] / crypto / scompress.c
blob2075e2c4e7dfd5b70bafe10cc37f9571fab34468
1 /*
2 * Synchronous Compression operations
4 * Copyright 2015 LG Electronics Inc.
5 * Copyright (c) 2016, Intel Corporation
6 * Author: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the Free
10 * Software Foundation; either version 2 of the License, or (at your option)
11 * any later version.
14 #include <linux/errno.h>
15 #include <linux/kernel.h>
16 #include <linux/module.h>
17 #include <linux/seq_file.h>
18 #include <linux/slab.h>
19 #include <linux/string.h>
20 #include <linux/crypto.h>
21 #include <linux/compiler.h>
22 #include <linux/vmalloc.h>
23 #include <crypto/algapi.h>
24 #include <linux/cryptouser.h>
25 #include <net/netlink.h>
26 #include <linux/scatterlist.h>
27 #include <crypto/scatterwalk.h>
28 #include <crypto/internal/acompress.h>
29 #include <crypto/internal/scompress.h>
30 #include "internal.h"
32 static const struct crypto_type crypto_scomp_type;
33 static void * __percpu *scomp_src_scratches;
34 static void * __percpu *scomp_dst_scratches;
35 static int scomp_scratch_users;
36 static DEFINE_MUTEX(scomp_lock);
38 #ifdef CONFIG_NET
39 static int crypto_scomp_report(struct sk_buff *skb, struct crypto_alg *alg)
41 struct crypto_report_comp rscomp;
43 strncpy(rscomp.type, "scomp", sizeof(rscomp.type));
45 if (nla_put(skb, CRYPTOCFGA_REPORT_COMPRESS,
46 sizeof(struct crypto_report_comp), &rscomp))
47 goto nla_put_failure;
48 return 0;
50 nla_put_failure:
51 return -EMSGSIZE;
53 #else
54 static int crypto_scomp_report(struct sk_buff *skb, struct crypto_alg *alg)
56 return -ENOSYS;
58 #endif
60 static void crypto_scomp_show(struct seq_file *m, struct crypto_alg *alg)
61 __maybe_unused;
63 static void crypto_scomp_show(struct seq_file *m, struct crypto_alg *alg)
65 seq_puts(m, "type : scomp\n");
68 static void crypto_scomp_free_scratches(void * __percpu *scratches)
70 int i;
72 if (!scratches)
73 return;
75 for_each_possible_cpu(i)
76 vfree(*per_cpu_ptr(scratches, i));
78 free_percpu(scratches);
81 static void * __percpu *crypto_scomp_alloc_scratches(void)
83 void * __percpu *scratches;
84 int i;
86 scratches = alloc_percpu(void *);
87 if (!scratches)
88 return NULL;
90 for_each_possible_cpu(i) {
91 void *scratch;
93 scratch = vmalloc_node(SCOMP_SCRATCH_SIZE, cpu_to_node(i));
94 if (!scratch)
95 goto error;
96 *per_cpu_ptr(scratches, i) = scratch;
99 return scratches;
101 error:
102 crypto_scomp_free_scratches(scratches);
103 return NULL;
106 static void crypto_scomp_free_all_scratches(void)
108 if (!--scomp_scratch_users) {
109 crypto_scomp_free_scratches(scomp_src_scratches);
110 crypto_scomp_free_scratches(scomp_dst_scratches);
111 scomp_src_scratches = NULL;
112 scomp_dst_scratches = NULL;
116 static int crypto_scomp_alloc_all_scratches(void)
118 if (!scomp_scratch_users++) {
119 scomp_src_scratches = crypto_scomp_alloc_scratches();
120 if (!scomp_src_scratches)
121 return -ENOMEM;
122 scomp_dst_scratches = crypto_scomp_alloc_scratches();
123 if (!scomp_dst_scratches) {
124 crypto_scomp_free_scratches(scomp_src_scratches);
125 scomp_src_scratches = NULL;
126 return -ENOMEM;
129 return 0;
132 static int crypto_scomp_init_tfm(struct crypto_tfm *tfm)
134 int ret;
136 mutex_lock(&scomp_lock);
137 ret = crypto_scomp_alloc_all_scratches();
138 mutex_unlock(&scomp_lock);
140 return ret;
143 static void crypto_scomp_sg_free(struct scatterlist *sgl)
145 int i, n;
146 struct page *page;
148 if (!sgl)
149 return;
151 n = sg_nents(sgl);
152 for_each_sg(sgl, sgl, n, i) {
153 page = sg_page(sgl);
154 if (page)
155 __free_page(page);
158 kfree(sgl);
161 static struct scatterlist *crypto_scomp_sg_alloc(size_t size, gfp_t gfp)
163 struct scatterlist *sgl;
164 struct page *page;
165 int i, n;
167 n = ((size - 1) >> PAGE_SHIFT) + 1;
169 sgl = kmalloc_array(n, sizeof(struct scatterlist), gfp);
170 if (!sgl)
171 return NULL;
173 sg_init_table(sgl, n);
175 for (i = 0; i < n; i++) {
176 page = alloc_page(gfp);
177 if (!page)
178 goto err;
179 sg_set_page(sgl + i, page, PAGE_SIZE, 0);
182 return sgl;
184 err:
185 sg_mark_end(sgl + i);
186 crypto_scomp_sg_free(sgl);
187 return NULL;
190 static int scomp_acomp_comp_decomp(struct acomp_req *req, int dir)
192 struct crypto_acomp *tfm = crypto_acomp_reqtfm(req);
193 void **tfm_ctx = acomp_tfm_ctx(tfm);
194 struct crypto_scomp *scomp = *tfm_ctx;
195 void **ctx = acomp_request_ctx(req);
196 const int cpu = get_cpu();
197 u8 *scratch_src = *per_cpu_ptr(scomp_src_scratches, cpu);
198 u8 *scratch_dst = *per_cpu_ptr(scomp_dst_scratches, cpu);
199 int ret;
201 if (!req->src || !req->slen || req->slen > SCOMP_SCRATCH_SIZE) {
202 ret = -EINVAL;
203 goto out;
206 if (req->dst && !req->dlen) {
207 ret = -EINVAL;
208 goto out;
211 if (!req->dlen || req->dlen > SCOMP_SCRATCH_SIZE)
212 req->dlen = SCOMP_SCRATCH_SIZE;
214 scatterwalk_map_and_copy(scratch_src, req->src, 0, req->slen, 0);
215 if (dir)
216 ret = crypto_scomp_compress(scomp, scratch_src, req->slen,
217 scratch_dst, &req->dlen, *ctx);
218 else
219 ret = crypto_scomp_decompress(scomp, scratch_src, req->slen,
220 scratch_dst, &req->dlen, *ctx);
221 if (!ret) {
222 if (!req->dst) {
223 req->dst = crypto_scomp_sg_alloc(req->dlen, GFP_ATOMIC);
224 if (!req->dst)
225 goto out;
227 scatterwalk_map_and_copy(scratch_dst, req->dst, 0, req->dlen,
230 out:
231 put_cpu();
232 return ret;
235 static int scomp_acomp_compress(struct acomp_req *req)
237 return scomp_acomp_comp_decomp(req, 1);
240 static int scomp_acomp_decompress(struct acomp_req *req)
242 return scomp_acomp_comp_decomp(req, 0);
245 static void crypto_exit_scomp_ops_async(struct crypto_tfm *tfm)
247 struct crypto_scomp **ctx = crypto_tfm_ctx(tfm);
249 crypto_free_scomp(*ctx);
251 mutex_lock(&scomp_lock);
252 crypto_scomp_free_all_scratches();
253 mutex_unlock(&scomp_lock);
256 int crypto_init_scomp_ops_async(struct crypto_tfm *tfm)
258 struct crypto_alg *calg = tfm->__crt_alg;
259 struct crypto_acomp *crt = __crypto_acomp_tfm(tfm);
260 struct crypto_scomp **ctx = crypto_tfm_ctx(tfm);
261 struct crypto_scomp *scomp;
263 if (!crypto_mod_get(calg))
264 return -EAGAIN;
266 scomp = crypto_create_tfm(calg, &crypto_scomp_type);
267 if (IS_ERR(scomp)) {
268 crypto_mod_put(calg);
269 return PTR_ERR(scomp);
272 *ctx = scomp;
273 tfm->exit = crypto_exit_scomp_ops_async;
275 crt->compress = scomp_acomp_compress;
276 crt->decompress = scomp_acomp_decompress;
277 crt->dst_free = crypto_scomp_sg_free;
278 crt->reqsize = sizeof(void *);
280 return 0;
283 struct acomp_req *crypto_acomp_scomp_alloc_ctx(struct acomp_req *req)
285 struct crypto_acomp *acomp = crypto_acomp_reqtfm(req);
286 struct crypto_tfm *tfm = crypto_acomp_tfm(acomp);
287 struct crypto_scomp **tfm_ctx = crypto_tfm_ctx(tfm);
288 struct crypto_scomp *scomp = *tfm_ctx;
289 void *ctx;
291 ctx = crypto_scomp_alloc_ctx(scomp);
292 if (IS_ERR(ctx)) {
293 kfree(req);
294 return NULL;
297 *req->__ctx = ctx;
299 return req;
302 void crypto_acomp_scomp_free_ctx(struct acomp_req *req)
304 struct crypto_acomp *acomp = crypto_acomp_reqtfm(req);
305 struct crypto_tfm *tfm = crypto_acomp_tfm(acomp);
306 struct crypto_scomp **tfm_ctx = crypto_tfm_ctx(tfm);
307 struct crypto_scomp *scomp = *tfm_ctx;
308 void *ctx = *req->__ctx;
310 if (ctx)
311 crypto_scomp_free_ctx(scomp, ctx);
314 static const struct crypto_type crypto_scomp_type = {
315 .extsize = crypto_alg_extsize,
316 .init_tfm = crypto_scomp_init_tfm,
317 #ifdef CONFIG_PROC_FS
318 .show = crypto_scomp_show,
319 #endif
320 .report = crypto_scomp_report,
321 .maskclear = ~CRYPTO_ALG_TYPE_MASK,
322 .maskset = CRYPTO_ALG_TYPE_MASK,
323 .type = CRYPTO_ALG_TYPE_SCOMPRESS,
324 .tfmsize = offsetof(struct crypto_scomp, base),
327 int crypto_register_scomp(struct scomp_alg *alg)
329 struct crypto_alg *base = &alg->base;
331 base->cra_type = &crypto_scomp_type;
332 base->cra_flags &= ~CRYPTO_ALG_TYPE_MASK;
333 base->cra_flags |= CRYPTO_ALG_TYPE_SCOMPRESS;
335 return crypto_register_alg(base);
337 EXPORT_SYMBOL_GPL(crypto_register_scomp);
339 int crypto_unregister_scomp(struct scomp_alg *alg)
341 return crypto_unregister_alg(&alg->base);
343 EXPORT_SYMBOL_GPL(crypto_unregister_scomp);
345 int crypto_register_scomps(struct scomp_alg *algs, int count)
347 int i, ret;
349 for (i = 0; i < count; i++) {
350 ret = crypto_register_scomp(&algs[i]);
351 if (ret)
352 goto err;
355 return 0;
357 err:
358 for (--i; i >= 0; --i)
359 crypto_unregister_scomp(&algs[i]);
361 return ret;
363 EXPORT_SYMBOL_GPL(crypto_register_scomps);
365 void crypto_unregister_scomps(struct scomp_alg *algs, int count)
367 int i;
369 for (i = count - 1; i >= 0; --i)
370 crypto_unregister_scomp(&algs[i]);
372 EXPORT_SYMBOL_GPL(crypto_unregister_scomps);
374 MODULE_LICENSE("GPL");
375 MODULE_DESCRIPTION("Synchronous compression type");