blob: 4b5cd3a7b2b646b31a54e29eeb43661acf65e7a6 [file] [log] [blame]
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -07001/*
2 * Copyright (C) 2014 Sergey Senozhatsky.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 */
9
10#include <linux/kernel.h>
11#include <linux/string.h>
Sergey Senozhatskyfcfa8d92014-04-07 15:38:20 -070012#include <linux/err.h>
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -070013#include <linux/slab.h>
14#include <linux/wait.h>
15#include <linux/sched.h>
Sergey Senozhatskyda9556a2016-05-20 16:59:51 -070016#include <linux/cpu.h>
Sergey Senozhatskyebaf9ab2016-07-26 15:22:45 -070017#include <linux/crypto.h>
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -070018
19#include "zcomp.h"
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -070020
Sergey Senozhatskyebaf9ab2016-07-26 15:22:45 -070021static const char * const backends[] = {
22 "lzo",
Sergey Senozhatskyce1ed9f2016-07-26 15:22:54 -070023#if IS_ENABLED(CONFIG_CRYPTO_LZ4)
Sergey Senozhatskyebaf9ab2016-07-26 15:22:45 -070024 "lz4",
Sergey Senozhatsky6e766682014-04-07 15:38:18 -070025#endif
Sergey Senozhatskyeb9f56d2016-07-26 15:22:56 -070026#if IS_ENABLED(CONFIG_CRYPTO_DEFLATE)
27 "deflate",
28#endif
29#if IS_ENABLED(CONFIG_CRYPTO_LZ4HC)
30 "lz4hc",
31#endif
32#if IS_ENABLED(CONFIG_CRYPTO_842)
33 "842",
34#endif
Sergey Senozhatskye46b8a02014-04-07 15:38:17 -070035 NULL
36};
37
Sergey Senozhatskyebaf9ab2016-07-26 15:22:45 -070038static void zcomp_strm_free(struct zcomp_strm *zstrm)
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -070039{
Sergey Senozhatskyebaf9ab2016-07-26 15:22:45 -070040 if (!IS_ERR_OR_NULL(zstrm->tfm))
41 crypto_free_comp(zstrm->tfm);
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -070042 free_pages((unsigned long)zstrm->buffer, 1);
43 kfree(zstrm);
44}
45
46/*
Sergey Senozhatskyebaf9ab2016-07-26 15:22:45 -070047 * allocate new zcomp_strm structure with ->tfm initialized by
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -070048 * backend, return NULL on error
49 */
Sergey Senozhatsky16d37722016-07-26 15:22:59 -070050static struct zcomp_strm *zcomp_strm_alloc(struct zcomp *comp)
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -070051{
Sergey Senozhatsky16d37722016-07-26 15:22:59 -070052 struct zcomp_strm *zstrm = kmalloc(sizeof(*zstrm), GFP_KERNEL);
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -070053 if (!zstrm)
54 return NULL;
55
Sergey Senozhatskyebaf9ab2016-07-26 15:22:45 -070056 zstrm->tfm = crypto_alloc_comp(comp->name, 0, 0);
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -070057 /*
58 * allocate 2 pages. 1 for compressed data, plus 1 extra for the
59 * case when compressed size is larger than the original one
60 */
Sergey Senozhatsky16d37722016-07-26 15:22:59 -070061 zstrm->buffer = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, 1);
Sergey Senozhatskyebaf9ab2016-07-26 15:22:45 -070062 if (IS_ERR_OR_NULL(zstrm->tfm) || !zstrm->buffer) {
63 zcomp_strm_free(zstrm);
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -070064 zstrm = NULL;
65 }
66 return zstrm;
67}
68
Sergey Senozhatsky415403b2016-07-26 15:22:48 -070069bool zcomp_available_algorithm(const char *comp)
Sergey Senozhatskye46b8a02014-04-07 15:38:17 -070070{
Sergey Senozhatskye46b8a02014-04-07 15:38:17 -070071 int i = 0;
72
73 while (backends[i]) {
Sergey Senozhatsky415403b2016-07-26 15:22:48 -070074 if (sysfs_streq(comp, backends[i]))
75 return true;
Sergey Senozhatskye46b8a02014-04-07 15:38:17 -070076 i++;
77 }
Sergey Senozhatsky415403b2016-07-26 15:22:48 -070078
79 /*
80 * Crypto does not ignore a trailing new line symbol,
81 * so make sure you don't supply a string containing
82 * one.
83 * This also means that we permit zcomp initialisation
84 * with any compressing algorithm known to crypto api.
85 */
86 return crypto_has_comp(comp, 0, 0) == 1;
Sergey Senozhatskye46b8a02014-04-07 15:38:17 -070087}
88
Sergey Senozhatsky415403b2016-07-26 15:22:48 -070089/* show available compressors */
90ssize_t zcomp_available_show(const char *comp, char *buf)
Sergey Senozhatskyd93435c2015-06-25 15:00:32 -070091{
Sergey Senozhatsky415403b2016-07-26 15:22:48 -070092 bool known_algorithm = false;
93 ssize_t sz = 0;
94 int i = 0;
95
96 for (; backends[i]; i++) {
97 if (!strcmp(comp, backends[i])) {
98 known_algorithm = true;
99 sz += scnprintf(buf + sz, PAGE_SIZE - sz - 2,
100 "[%s] ", backends[i]);
101 } else {
102 sz += scnprintf(buf + sz, PAGE_SIZE - sz - 2,
103 "%s ", backends[i]);
104 }
105 }
106
107 /*
108 * Out-of-tree module known to crypto api or a missing
109 * entry in `backends'.
110 */
111 if (!known_algorithm && crypto_has_comp(comp, 0, 0) == 1)
112 sz += scnprintf(buf + sz, PAGE_SIZE - sz - 2,
113 "[%s] ", comp);
114
115 sz += scnprintf(buf + sz, PAGE_SIZE - sz, "\n");
116 return sz;
Sergey Senozhatskyd93435c2015-06-25 15:00:32 -0700117}
118
Sergey Senozhatsky2aea8492016-07-26 15:22:42 -0700119struct zcomp_strm *zcomp_stream_get(struct zcomp *comp)
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -0700120{
Sergey Senozhatskyda9556a2016-05-20 16:59:51 -0700121 return *get_cpu_ptr(comp->stream);
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -0700122}
123
Sergey Senozhatsky2aea8492016-07-26 15:22:42 -0700124void zcomp_stream_put(struct zcomp *comp)
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -0700125{
Sergey Senozhatskyda9556a2016-05-20 16:59:51 -0700126 put_cpu_ptr(comp->stream);
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -0700127}
128
Sergey Senozhatskyebaf9ab2016-07-26 15:22:45 -0700129int zcomp_compress(struct zcomp_strm *zstrm,
130 const void *src, unsigned int *dst_len)
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -0700131{
Sergey Senozhatskyebaf9ab2016-07-26 15:22:45 -0700132 /*
133 * Our dst memory (zstrm->buffer) is always `2 * PAGE_SIZE' sized
134 * because sometimes we can endup having a bigger compressed data
135 * due to various reasons: for example compression algorithms tend
136 * to add some padding to the compressed buffer. Speaking of padding,
137 * comp algorithm `842' pads the compressed length to multiple of 8
138 * and returns -ENOSP when the dst memory is not big enough, which
139 * is not something that ZRAM wants to see. We can handle the
140 * `compressed_size > PAGE_SIZE' case easily in ZRAM, but when we
141 * receive -ERRNO from the compressing backend we can't help it
142 * anymore. To make `842' happy we need to tell the exact size of
143 * the dst buffer, zram_drv will take care of the fact that
144 * compressed buffer is too big.
145 */
146 *dst_len = PAGE_SIZE * 2;
147
148 return crypto_comp_compress(zstrm->tfm,
149 src, PAGE_SIZE,
150 zstrm->buffer, dst_len);
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -0700151}
152
Sergey Senozhatskyebaf9ab2016-07-26 15:22:45 -0700153int zcomp_decompress(struct zcomp_strm *zstrm,
154 const void *src, unsigned int src_len, void *dst)
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -0700155{
Sergey Senozhatskyebaf9ab2016-07-26 15:22:45 -0700156 unsigned int dst_len = PAGE_SIZE;
157
158 return crypto_comp_decompress(zstrm->tfm,
159 src, src_len,
160 dst, &dst_len);
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -0700161}
162
Sergey Senozhatskyda9556a2016-05-20 16:59:51 -0700163static int __zcomp_cpu_notifier(struct zcomp *comp,
164 unsigned long action, unsigned long cpu)
165{
166 struct zcomp_strm *zstrm;
167
168 switch (action) {
169 case CPU_UP_PREPARE:
170 if (WARN_ON(*per_cpu_ptr(comp->stream, cpu)))
171 break;
Sergey Senozhatsky16d37722016-07-26 15:22:59 -0700172 zstrm = zcomp_strm_alloc(comp);
Sergey Senozhatskyda9556a2016-05-20 16:59:51 -0700173 if (IS_ERR_OR_NULL(zstrm)) {
174 pr_err("Can't allocate a compression stream\n");
175 return NOTIFY_BAD;
176 }
177 *per_cpu_ptr(comp->stream, cpu) = zstrm;
178 break;
179 case CPU_DEAD:
180 case CPU_UP_CANCELED:
181 zstrm = *per_cpu_ptr(comp->stream, cpu);
182 if (!IS_ERR_OR_NULL(zstrm))
Sergey Senozhatskyebaf9ab2016-07-26 15:22:45 -0700183 zcomp_strm_free(zstrm);
Sergey Senozhatskyda9556a2016-05-20 16:59:51 -0700184 *per_cpu_ptr(comp->stream, cpu) = NULL;
185 break;
186 default:
187 break;
188 }
189 return NOTIFY_OK;
190}
191
192static int zcomp_cpu_notifier(struct notifier_block *nb,
193 unsigned long action, void *pcpu)
194{
195 unsigned long cpu = (unsigned long)pcpu;
196 struct zcomp *comp = container_of(nb, typeof(*comp), notifier);
197
198 return __zcomp_cpu_notifier(comp, action, cpu);
199}
200
201static int zcomp_init(struct zcomp *comp)
202{
203 unsigned long cpu;
204 int ret;
205
206 comp->notifier.notifier_call = zcomp_cpu_notifier;
207
208 comp->stream = alloc_percpu(struct zcomp_strm *);
209 if (!comp->stream)
210 return -ENOMEM;
211
212 cpu_notifier_register_begin();
213 for_each_online_cpu(cpu) {
214 ret = __zcomp_cpu_notifier(comp, CPU_UP_PREPARE, cpu);
215 if (ret == NOTIFY_BAD)
216 goto cleanup;
217 }
218 __register_cpu_notifier(&comp->notifier);
219 cpu_notifier_register_done();
220 return 0;
221
222cleanup:
223 for_each_online_cpu(cpu)
224 __zcomp_cpu_notifier(comp, CPU_UP_CANCELED, cpu);
225 cpu_notifier_register_done();
226 return -ENOMEM;
227}
228
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -0700229void zcomp_destroy(struct zcomp *comp)
230{
Sergey Senozhatskyda9556a2016-05-20 16:59:51 -0700231 unsigned long cpu;
232
233 cpu_notifier_register_begin();
234 for_each_online_cpu(cpu)
235 __zcomp_cpu_notifier(comp, CPU_UP_CANCELED, cpu);
236 __unregister_cpu_notifier(&comp->notifier);
237 cpu_notifier_register_done();
238
239 free_percpu(comp->stream);
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -0700240 kfree(comp);
241}
242
243/*
244 * search available compressors for requested algorithm.
Sergey Senozhatskyfcfa8d92014-04-07 15:38:20 -0700245 * allocate new zcomp and initialize it. return compressing
246 * backend pointer or ERR_PTR if things went bad. ERR_PTR(-EINVAL)
247 * if requested algorithm is not supported, ERR_PTR(-ENOMEM) in
Luis Henriques3aaf14d2015-09-17 16:01:40 -0700248 * case of allocation error, or any other error potentially
Sergey Senozhatskyda9556a2016-05-20 16:59:51 -0700249 * returned by zcomp_init().
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -0700250 */
Sergey Senozhatskyda9556a2016-05-20 16:59:51 -0700251struct zcomp *zcomp_create(const char *compress)
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -0700252{
253 struct zcomp *comp;
Luis Henriques3aaf14d2015-09-17 16:01:40 -0700254 int error;
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -0700255
Sergey Senozhatsky415403b2016-07-26 15:22:48 -0700256 if (!zcomp_available_algorithm(compress))
Sergey Senozhatskyfcfa8d92014-04-07 15:38:20 -0700257 return ERR_PTR(-EINVAL);
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -0700258
259 comp = kzalloc(sizeof(struct zcomp), GFP_KERNEL);
260 if (!comp)
Sergey Senozhatskyfcfa8d92014-04-07 15:38:20 -0700261 return ERR_PTR(-ENOMEM);
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -0700262
Sergey Senozhatsky415403b2016-07-26 15:22:48 -0700263 comp->name = compress;
Sergey Senozhatskyda9556a2016-05-20 16:59:51 -0700264 error = zcomp_init(comp);
Luis Henriques3aaf14d2015-09-17 16:01:40 -0700265 if (error) {
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -0700266 kfree(comp);
Luis Henriques3aaf14d2015-09-17 16:01:40 -0700267 return ERR_PTR(error);
Sergey Senozhatskye7e1ef42014-04-07 15:38:11 -0700268 }
269 return comp;
270}