Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 1 | /* |
| 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 Senozhatsky | fcfa8d9 | 2014-04-07 15:38:20 -0700 | [diff] [blame] | 12 | #include <linux/err.h> |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 13 | #include <linux/slab.h> |
| 14 | #include <linux/wait.h> |
| 15 | #include <linux/sched.h> |
Sergey Senozhatsky | da9556a | 2016-05-20 16:59:51 -0700 | [diff] [blame] | 16 | #include <linux/cpu.h> |
Sergey Senozhatsky | ebaf9ab | 2016-07-26 15:22:45 -0700 | [diff] [blame] | 17 | #include <linux/crypto.h> |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 18 | |
| 19 | #include "zcomp.h" |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 20 | |
Sergey Senozhatsky | ebaf9ab | 2016-07-26 15:22:45 -0700 | [diff] [blame] | 21 | static const char * const backends[] = { |
| 22 | "lzo", |
Sergey Senozhatsky | ce1ed9f | 2016-07-26 15:22:54 -0700 | [diff] [blame] | 23 | #if IS_ENABLED(CONFIG_CRYPTO_LZ4) |
Sergey Senozhatsky | ebaf9ab | 2016-07-26 15:22:45 -0700 | [diff] [blame] | 24 | "lz4", |
Sergey Senozhatsky | 6e76668 | 2014-04-07 15:38:18 -0700 | [diff] [blame] | 25 | #endif |
Sergey Senozhatsky | eb9f56d | 2016-07-26 15:22:56 -0700 | [diff] [blame] | 26 | #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 Senozhatsky | e46b8a0 | 2014-04-07 15:38:17 -0700 | [diff] [blame] | 35 | NULL |
| 36 | }; |
| 37 | |
Sergey Senozhatsky | ebaf9ab | 2016-07-26 15:22:45 -0700 | [diff] [blame] | 38 | static void zcomp_strm_free(struct zcomp_strm *zstrm) |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 39 | { |
Sergey Senozhatsky | ebaf9ab | 2016-07-26 15:22:45 -0700 | [diff] [blame] | 40 | if (!IS_ERR_OR_NULL(zstrm->tfm)) |
| 41 | crypto_free_comp(zstrm->tfm); |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 42 | free_pages((unsigned long)zstrm->buffer, 1); |
| 43 | kfree(zstrm); |
| 44 | } |
| 45 | |
| 46 | /* |
Sergey Senozhatsky | ebaf9ab | 2016-07-26 15:22:45 -0700 | [diff] [blame] | 47 | * allocate new zcomp_strm structure with ->tfm initialized by |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 48 | * backend, return NULL on error |
| 49 | */ |
Sergey Senozhatsky | 16d3772 | 2016-07-26 15:22:59 -0700 | [diff] [blame] | 50 | static struct zcomp_strm *zcomp_strm_alloc(struct zcomp *comp) |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 51 | { |
Sergey Senozhatsky | 16d3772 | 2016-07-26 15:22:59 -0700 | [diff] [blame] | 52 | struct zcomp_strm *zstrm = kmalloc(sizeof(*zstrm), GFP_KERNEL); |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 53 | if (!zstrm) |
| 54 | return NULL; |
| 55 | |
Sergey Senozhatsky | ebaf9ab | 2016-07-26 15:22:45 -0700 | [diff] [blame] | 56 | zstrm->tfm = crypto_alloc_comp(comp->name, 0, 0); |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 57 | /* |
| 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 Senozhatsky | 16d3772 | 2016-07-26 15:22:59 -0700 | [diff] [blame] | 61 | zstrm->buffer = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, 1); |
Sergey Senozhatsky | ebaf9ab | 2016-07-26 15:22:45 -0700 | [diff] [blame] | 62 | if (IS_ERR_OR_NULL(zstrm->tfm) || !zstrm->buffer) { |
| 63 | zcomp_strm_free(zstrm); |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 64 | zstrm = NULL; |
| 65 | } |
| 66 | return zstrm; |
| 67 | } |
| 68 | |
Sergey Senozhatsky | 415403b | 2016-07-26 15:22:48 -0700 | [diff] [blame] | 69 | bool zcomp_available_algorithm(const char *comp) |
Sergey Senozhatsky | e46b8a0 | 2014-04-07 15:38:17 -0700 | [diff] [blame] | 70 | { |
Andy Shevchenko | ed8a555 | 2017-07-10 15:48:34 -0700 | [diff] [blame] | 71 | int i; |
Sergey Senozhatsky | e46b8a0 | 2014-04-07 15:38:17 -0700 | [diff] [blame] | 72 | |
Andy Shevchenko | ed8a555 | 2017-07-10 15:48:34 -0700 | [diff] [blame] | 73 | i = __sysfs_match_string(backends, -1, comp); |
| 74 | if (i >= 0) |
| 75 | return true; |
Sergey Senozhatsky | 415403b | 2016-07-26 15:22:48 -0700 | [diff] [blame] | 76 | |
| 77 | /* |
| 78 | * Crypto does not ignore a trailing new line symbol, |
| 79 | * so make sure you don't supply a string containing |
| 80 | * one. |
| 81 | * This also means that we permit zcomp initialisation |
| 82 | * with any compressing algorithm known to crypto api. |
| 83 | */ |
| 84 | return crypto_has_comp(comp, 0, 0) == 1; |
Sergey Senozhatsky | e46b8a0 | 2014-04-07 15:38:17 -0700 | [diff] [blame] | 85 | } |
| 86 | |
Sergey Senozhatsky | 415403b | 2016-07-26 15:22:48 -0700 | [diff] [blame] | 87 | /* show available compressors */ |
| 88 | ssize_t zcomp_available_show(const char *comp, char *buf) |
Sergey Senozhatsky | d93435c | 2015-06-25 15:00:32 -0700 | [diff] [blame] | 89 | { |
Sergey Senozhatsky | 415403b | 2016-07-26 15:22:48 -0700 | [diff] [blame] | 90 | bool known_algorithm = false; |
| 91 | ssize_t sz = 0; |
| 92 | int i = 0; |
| 93 | |
| 94 | for (; backends[i]; i++) { |
| 95 | if (!strcmp(comp, backends[i])) { |
| 96 | known_algorithm = true; |
| 97 | sz += scnprintf(buf + sz, PAGE_SIZE - sz - 2, |
| 98 | "[%s] ", backends[i]); |
| 99 | } else { |
| 100 | sz += scnprintf(buf + sz, PAGE_SIZE - sz - 2, |
| 101 | "%s ", backends[i]); |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | /* |
| 106 | * Out-of-tree module known to crypto api or a missing |
| 107 | * entry in `backends'. |
| 108 | */ |
| 109 | if (!known_algorithm && crypto_has_comp(comp, 0, 0) == 1) |
| 110 | sz += scnprintf(buf + sz, PAGE_SIZE - sz - 2, |
| 111 | "[%s] ", comp); |
| 112 | |
| 113 | sz += scnprintf(buf + sz, PAGE_SIZE - sz, "\n"); |
| 114 | return sz; |
Sergey Senozhatsky | d93435c | 2015-06-25 15:00:32 -0700 | [diff] [blame] | 115 | } |
| 116 | |
Sergey Senozhatsky | 2aea849 | 2016-07-26 15:22:42 -0700 | [diff] [blame] | 117 | struct zcomp_strm *zcomp_stream_get(struct zcomp *comp) |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 118 | { |
Sergey Senozhatsky | da9556a | 2016-05-20 16:59:51 -0700 | [diff] [blame] | 119 | return *get_cpu_ptr(comp->stream); |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 120 | } |
| 121 | |
Sergey Senozhatsky | 2aea849 | 2016-07-26 15:22:42 -0700 | [diff] [blame] | 122 | void zcomp_stream_put(struct zcomp *comp) |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 123 | { |
Sergey Senozhatsky | da9556a | 2016-05-20 16:59:51 -0700 | [diff] [blame] | 124 | put_cpu_ptr(comp->stream); |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 125 | } |
| 126 | |
Sergey Senozhatsky | ebaf9ab | 2016-07-26 15:22:45 -0700 | [diff] [blame] | 127 | int zcomp_compress(struct zcomp_strm *zstrm, |
| 128 | const void *src, unsigned int *dst_len) |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 129 | { |
Sergey Senozhatsky | ebaf9ab | 2016-07-26 15:22:45 -0700 | [diff] [blame] | 130 | /* |
| 131 | * Our dst memory (zstrm->buffer) is always `2 * PAGE_SIZE' sized |
| 132 | * because sometimes we can endup having a bigger compressed data |
| 133 | * due to various reasons: for example compression algorithms tend |
| 134 | * to add some padding to the compressed buffer. Speaking of padding, |
| 135 | * comp algorithm `842' pads the compressed length to multiple of 8 |
| 136 | * and returns -ENOSP when the dst memory is not big enough, which |
| 137 | * is not something that ZRAM wants to see. We can handle the |
| 138 | * `compressed_size > PAGE_SIZE' case easily in ZRAM, but when we |
| 139 | * receive -ERRNO from the compressing backend we can't help it |
| 140 | * anymore. To make `842' happy we need to tell the exact size of |
| 141 | * the dst buffer, zram_drv will take care of the fact that |
| 142 | * compressed buffer is too big. |
| 143 | */ |
| 144 | *dst_len = PAGE_SIZE * 2; |
| 145 | |
| 146 | return crypto_comp_compress(zstrm->tfm, |
| 147 | src, PAGE_SIZE, |
| 148 | zstrm->buffer, dst_len); |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 149 | } |
| 150 | |
Sergey Senozhatsky | ebaf9ab | 2016-07-26 15:22:45 -0700 | [diff] [blame] | 151 | int zcomp_decompress(struct zcomp_strm *zstrm, |
| 152 | const void *src, unsigned int src_len, void *dst) |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 153 | { |
Sergey Senozhatsky | ebaf9ab | 2016-07-26 15:22:45 -0700 | [diff] [blame] | 154 | unsigned int dst_len = PAGE_SIZE; |
| 155 | |
| 156 | return crypto_comp_decompress(zstrm->tfm, |
| 157 | src, src_len, |
| 158 | dst, &dst_len); |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 159 | } |
| 160 | |
Anna-Maria Gleixner | 1dd6c83 | 2016-11-27 00:13:46 +0100 | [diff] [blame] | 161 | int zcomp_cpu_up_prepare(unsigned int cpu, struct hlist_node *node) |
Sergey Senozhatsky | da9556a | 2016-05-20 16:59:51 -0700 | [diff] [blame] | 162 | { |
Anna-Maria Gleixner | 1dd6c83 | 2016-11-27 00:13:46 +0100 | [diff] [blame] | 163 | struct zcomp *comp = hlist_entry(node, struct zcomp, node); |
Sergey Senozhatsky | da9556a | 2016-05-20 16:59:51 -0700 | [diff] [blame] | 164 | struct zcomp_strm *zstrm; |
| 165 | |
Anna-Maria Gleixner | 1dd6c83 | 2016-11-27 00:13:46 +0100 | [diff] [blame] | 166 | if (WARN_ON(*per_cpu_ptr(comp->stream, cpu))) |
| 167 | return 0; |
| 168 | |
| 169 | zstrm = zcomp_strm_alloc(comp); |
| 170 | if (IS_ERR_OR_NULL(zstrm)) { |
| 171 | pr_err("Can't allocate a compression stream\n"); |
| 172 | return -ENOMEM; |
Sergey Senozhatsky | da9556a | 2016-05-20 16:59:51 -0700 | [diff] [blame] | 173 | } |
Anna-Maria Gleixner | 1dd6c83 | 2016-11-27 00:13:46 +0100 | [diff] [blame] | 174 | *per_cpu_ptr(comp->stream, cpu) = zstrm; |
| 175 | return 0; |
Sergey Senozhatsky | da9556a | 2016-05-20 16:59:51 -0700 | [diff] [blame] | 176 | } |
| 177 | |
Anna-Maria Gleixner | 1dd6c83 | 2016-11-27 00:13:46 +0100 | [diff] [blame] | 178 | int zcomp_cpu_dead(unsigned int cpu, struct hlist_node *node) |
Sergey Senozhatsky | da9556a | 2016-05-20 16:59:51 -0700 | [diff] [blame] | 179 | { |
Anna-Maria Gleixner | 1dd6c83 | 2016-11-27 00:13:46 +0100 | [diff] [blame] | 180 | struct zcomp *comp = hlist_entry(node, struct zcomp, node); |
| 181 | struct zcomp_strm *zstrm; |
Sergey Senozhatsky | da9556a | 2016-05-20 16:59:51 -0700 | [diff] [blame] | 182 | |
Anna-Maria Gleixner | 1dd6c83 | 2016-11-27 00:13:46 +0100 | [diff] [blame] | 183 | zstrm = *per_cpu_ptr(comp->stream, cpu); |
| 184 | if (!IS_ERR_OR_NULL(zstrm)) |
| 185 | zcomp_strm_free(zstrm); |
| 186 | *per_cpu_ptr(comp->stream, cpu) = NULL; |
| 187 | return 0; |
Sergey Senozhatsky | da9556a | 2016-05-20 16:59:51 -0700 | [diff] [blame] | 188 | } |
| 189 | |
| 190 | static int zcomp_init(struct zcomp *comp) |
| 191 | { |
Sergey Senozhatsky | da9556a | 2016-05-20 16:59:51 -0700 | [diff] [blame] | 192 | int ret; |
| 193 | |
Sergey Senozhatsky | da9556a | 2016-05-20 16:59:51 -0700 | [diff] [blame] | 194 | comp->stream = alloc_percpu(struct zcomp_strm *); |
| 195 | if (!comp->stream) |
| 196 | return -ENOMEM; |
| 197 | |
Anna-Maria Gleixner | 1dd6c83 | 2016-11-27 00:13:46 +0100 | [diff] [blame] | 198 | ret = cpuhp_state_add_instance(CPUHP_ZCOMP_PREPARE, &comp->node); |
| 199 | if (ret < 0) |
| 200 | goto cleanup; |
Sergey Senozhatsky | da9556a | 2016-05-20 16:59:51 -0700 | [diff] [blame] | 201 | return 0; |
| 202 | |
| 203 | cleanup: |
Anna-Maria Gleixner | 1dd6c83 | 2016-11-27 00:13:46 +0100 | [diff] [blame] | 204 | free_percpu(comp->stream); |
| 205 | return ret; |
Sergey Senozhatsky | da9556a | 2016-05-20 16:59:51 -0700 | [diff] [blame] | 206 | } |
| 207 | |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 208 | void zcomp_destroy(struct zcomp *comp) |
| 209 | { |
Anna-Maria Gleixner | 1dd6c83 | 2016-11-27 00:13:46 +0100 | [diff] [blame] | 210 | cpuhp_state_remove_instance(CPUHP_ZCOMP_PREPARE, &comp->node); |
Sergey Senozhatsky | da9556a | 2016-05-20 16:59:51 -0700 | [diff] [blame] | 211 | free_percpu(comp->stream); |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 212 | kfree(comp); |
| 213 | } |
| 214 | |
| 215 | /* |
| 216 | * search available compressors for requested algorithm. |
Sergey Senozhatsky | fcfa8d9 | 2014-04-07 15:38:20 -0700 | [diff] [blame] | 217 | * allocate new zcomp and initialize it. return compressing |
| 218 | * backend pointer or ERR_PTR if things went bad. ERR_PTR(-EINVAL) |
| 219 | * if requested algorithm is not supported, ERR_PTR(-ENOMEM) in |
Luis Henriques | 3aaf14d | 2015-09-17 16:01:40 -0700 | [diff] [blame] | 220 | * case of allocation error, or any other error potentially |
Sergey Senozhatsky | da9556a | 2016-05-20 16:59:51 -0700 | [diff] [blame] | 221 | * returned by zcomp_init(). |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 222 | */ |
Sergey Senozhatsky | da9556a | 2016-05-20 16:59:51 -0700 | [diff] [blame] | 223 | struct zcomp *zcomp_create(const char *compress) |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 224 | { |
| 225 | struct zcomp *comp; |
Luis Henriques | 3aaf14d | 2015-09-17 16:01:40 -0700 | [diff] [blame] | 226 | int error; |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 227 | |
Sergey Senozhatsky | 415403b | 2016-07-26 15:22:48 -0700 | [diff] [blame] | 228 | if (!zcomp_available_algorithm(compress)) |
Sergey Senozhatsky | fcfa8d9 | 2014-04-07 15:38:20 -0700 | [diff] [blame] | 229 | return ERR_PTR(-EINVAL); |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 230 | |
| 231 | comp = kzalloc(sizeof(struct zcomp), GFP_KERNEL); |
| 232 | if (!comp) |
Sergey Senozhatsky | fcfa8d9 | 2014-04-07 15:38:20 -0700 | [diff] [blame] | 233 | return ERR_PTR(-ENOMEM); |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 234 | |
Sergey Senozhatsky | 415403b | 2016-07-26 15:22:48 -0700 | [diff] [blame] | 235 | comp->name = compress; |
Sergey Senozhatsky | da9556a | 2016-05-20 16:59:51 -0700 | [diff] [blame] | 236 | error = zcomp_init(comp); |
Luis Henriques | 3aaf14d | 2015-09-17 16:01:40 -0700 | [diff] [blame] | 237 | if (error) { |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 238 | kfree(comp); |
Luis Henriques | 3aaf14d | 2015-09-17 16:01:40 -0700 | [diff] [blame] | 239 | return ERR_PTR(error); |
Sergey Senozhatsky | e7e1ef4 | 2014-04-07 15:38:11 -0700 | [diff] [blame] | 240 | } |
| 241 | return comp; |
| 242 | } |