blob: 5c0116ade90949caa46e2c077cfec870e39b7b3e [file] [log] [blame]
Peng Taod7e09d02013-05-02 16:46:55 +08001/* GPL HEADER START
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 only,
7 * as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License version 2 for more details (a copy is included
13 * in the LICENSE file that accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License
16 * version 2 along with this program; If not, see http://www.gnu.org/licenses
17 *
18 * Please visit http://www.xyratex.com/contact if you need additional
19 * information or have any questions.
20 *
21 * GPL HEADER END
22 */
23
24/*
25 * Copyright 2012 Xyratex Technology Limited
26 *
27 * Copyright (c) 2012, Intel Corporation.
28 */
29
Herbert Xu6dae1002016-02-01 21:36:53 +080030#include <crypto/hash.h>
Peng Taod7e09d02013-05-02 16:46:55 +080031#include <linux/scatterlist.h>
Greg Kroah-Hartman9fdaf8c2014-07-11 20:51:16 -070032#include "../../../include/linux/libcfs/libcfs.h"
Andreas Dilger997e5182016-03-26 15:40:45 -040033#include "../../../include/linux/libcfs/libcfs_crypto.h"
Greg Kroah-Hartman13636be2014-07-11 23:12:04 -070034#include "linux-crypto.h"
Andreas Dilger020b0212016-03-26 15:40:46 -040035
Peng Taod7e09d02013-05-02 16:46:55 +080036/**
Andreas Dilger020b0212016-03-26 15:40:46 -040037 * Array of hash algorithm speed in MByte per second
Peng Taod7e09d02013-05-02 16:46:55 +080038 */
39static int cfs_crypto_hash_speeds[CFS_HASH_ALG_MAX];
40
Andreas Dilger020b0212016-03-26 15:40:46 -040041/**
42 * Initialize the state descriptor for the specified hash algorithm.
43 *
44 * An internal routine to allocate the hash-specific state in \a hdesc for
45 * use with cfs_crypto_hash_digest() to compute the hash of a single message,
46 * though possibly in multiple chunks. The descriptor internal state should
47 * be freed with cfs_crypto_hash_final().
48 *
49 * \param[in] hash_alg hash algorithm id (CFS_HASH_ALG_*)
50 * \param[out] type pointer to the hash description in hash_types[]
51 * array
52 * \param[in,out] hdesc hash state descriptor to be initialized
53 * \param[in] key initial hash value/state, NULL to use default
54 * value
55 * \param[in] key_len length of \a key
56 *
57 * \retval 0 on success
58 * \retval negative errno on failure
59 */
Andreas Dilger244cd872016-03-26 15:40:50 -040060static int cfs_crypto_hash_alloc(enum cfs_crypto_hash_alg hash_alg,
Peng Taod7e09d02013-05-02 16:46:55 +080061 const struct cfs_crypto_hash_type **type,
Herbert Xu6dae1002016-02-01 21:36:53 +080062 struct ahash_request **req,
63 unsigned char *key,
Peng Taod7e09d02013-05-02 16:46:55 +080064 unsigned int key_len)
65{
Herbert Xu6dae1002016-02-01 21:36:53 +080066 struct crypto_ahash *tfm;
Peng Taod7e09d02013-05-02 16:46:55 +080067 int err = 0;
68
Andreas Dilger4d60ffa2016-03-26 15:40:47 -040069 *type = cfs_crypto_hash_type(hash_alg);
Peng Taod7e09d02013-05-02 16:46:55 +080070
Oleg Drokin15d9f522016-02-16 00:46:44 -050071 if (!*type) {
Peng Taod7e09d02013-05-02 16:46:55 +080072 CWARN("Unsupported hash algorithm id = %d, max id is %d\n",
Andreas Dilger4d60ffa2016-03-26 15:40:47 -040073 hash_alg, CFS_HASH_ALG_MAX);
Peng Taod7e09d02013-05-02 16:46:55 +080074 return -EINVAL;
75 }
Herbert Xu6dae1002016-02-01 21:36:53 +080076 tfm = crypto_alloc_ahash((*type)->cht_name, 0, CRYPTO_ALG_ASYNC);
Peng Taod7e09d02013-05-02 16:46:55 +080077
Herbert Xu6dae1002016-02-01 21:36:53 +080078 if (IS_ERR(tfm)) {
Peng Taod7e09d02013-05-02 16:46:55 +080079 CDEBUG(D_INFO, "Failed to alloc crypto hash %s\n",
80 (*type)->cht_name);
Herbert Xu6dae1002016-02-01 21:36:53 +080081 return PTR_ERR(tfm);
Peng Taod7e09d02013-05-02 16:46:55 +080082 }
83
Herbert Xu6dae1002016-02-01 21:36:53 +080084 *req = ahash_request_alloc(tfm, GFP_KERNEL);
85 if (!*req) {
86 CDEBUG(D_INFO, "Failed to alloc ahash_request for %s\n",
87 (*type)->cht_name);
88 crypto_free_ahash(tfm);
89 return -ENOMEM;
90 }
91
92 ahash_request_set_callback(*req, 0, NULL, NULL);
Peng Taod7e09d02013-05-02 16:46:55 +080093
Oleg Drokin15d9f522016-02-16 00:46:44 -050094 if (key)
Herbert Xu6dae1002016-02-01 21:36:53 +080095 err = crypto_ahash_setkey(tfm, key, key_len);
Shraddha Barkebd2909f2015-09-05 18:58:21 +053096 else if ((*type)->cht_key != 0)
Herbert Xu6dae1002016-02-01 21:36:53 +080097 err = crypto_ahash_setkey(tfm,
Peng Taod7e09d02013-05-02 16:46:55 +080098 (unsigned char *)&((*type)->cht_key),
99 (*type)->cht_size);
Peng Taod7e09d02013-05-02 16:46:55 +0800100
101 if (err != 0) {
James Simmonscd779f22016-05-09 10:53:47 -0400102 ahash_request_free(*req);
Herbert Xu6dae1002016-02-01 21:36:53 +0800103 crypto_free_ahash(tfm);
Peng Taod7e09d02013-05-02 16:46:55 +0800104 return err;
105 }
106
107 CDEBUG(D_INFO, "Using crypto hash: %s (%s) speed %d MB/s\n",
Herbert Xu6dae1002016-02-01 21:36:53 +0800108 crypto_ahash_alg_name(tfm), crypto_ahash_driver_name(tfm),
Andreas Dilger4d60ffa2016-03-26 15:40:47 -0400109 cfs_crypto_hash_speeds[hash_alg]);
Peng Taod7e09d02013-05-02 16:46:55 +0800110
Herbert Xu6dae1002016-02-01 21:36:53 +0800111 err = crypto_ahash_init(*req);
112 if (err) {
113 ahash_request_free(*req);
114 crypto_free_ahash(tfm);
115 }
116 return err;
Peng Taod7e09d02013-05-02 16:46:55 +0800117}
118
Andreas Dilger020b0212016-03-26 15:40:46 -0400119/**
120 * Calculate hash digest for the passed buffer.
121 *
122 * This should be used when computing the hash on a single contiguous buffer.
123 * It combines the hash initialization, computation, and cleanup.
124 *
125 * \param[in] hash_alg id of hash algorithm (CFS_HASH_ALG_*)
126 * \param[in] buf data buffer on which to compute hash
127 * \param[in] buf_len length of \a buf in bytes
128 * \param[in] key initial value/state for algorithm,
129 * if \a key = NULL use default initial value
130 * \param[in] key_len length of \a key in bytes
131 * \param[out] hash pointer to computed hash value,
132 * if \a hash = NULL then \a hash_len is to digest
133 * size in bytes, retval -ENOSPC
134 * \param[in,out] hash_len size of \a hash buffer
135 *
136 * \retval -EINVAL \a buf, \a buf_len, \a hash_len,
Andreas Dilger4d60ffa2016-03-26 15:40:47 -0400137 * \a hash_alg invalid
Andreas Dilger020b0212016-03-26 15:40:46 -0400138 * \retval -ENOENT \a hash_alg is unsupported
139 * \retval -ENOSPC \a hash is NULL, or \a hash_len less than
140 * digest size
141 * \retval 0 for success
142 * \retval negative errno for other errors from lower
143 * layers.
144 */
Andreas Dilger244cd872016-03-26 15:40:50 -0400145int cfs_crypto_hash_digest(enum cfs_crypto_hash_alg hash_alg,
Peng Taod7e09d02013-05-02 16:46:55 +0800146 const void *buf, unsigned int buf_len,
147 unsigned char *key, unsigned int key_len,
148 unsigned char *hash, unsigned int *hash_len)
149{
150 struct scatterlist sl;
Herbert Xu6dae1002016-02-01 21:36:53 +0800151 struct ahash_request *req;
Peng Taod7e09d02013-05-02 16:46:55 +0800152 int err;
153 const struct cfs_crypto_hash_type *type;
154
Oleg Drokin15d9f522016-02-16 00:46:44 -0500155 if (!buf || buf_len == 0 || !hash_len)
Peng Taod7e09d02013-05-02 16:46:55 +0800156 return -EINVAL;
157
Andreas Dilger4d60ffa2016-03-26 15:40:47 -0400158 err = cfs_crypto_hash_alloc(hash_alg, &type, &req, key, key_len);
Peng Taod7e09d02013-05-02 16:46:55 +0800159 if (err != 0)
160 return err;
161
Oleg Drokin15d9f522016-02-16 00:46:44 -0500162 if (!hash || *hash_len < type->cht_size) {
Peng Taod7e09d02013-05-02 16:46:55 +0800163 *hash_len = type->cht_size;
Herbert Xu6dae1002016-02-01 21:36:53 +0800164 crypto_free_ahash(crypto_ahash_reqtfm(req));
165 ahash_request_free(req);
Peng Taod7e09d02013-05-02 16:46:55 +0800166 return -ENOSPC;
167 }
Shraddha Barke0d749512015-07-27 22:20:35 +0530168 sg_init_one(&sl, buf, buf_len);
Peng Taod7e09d02013-05-02 16:46:55 +0800169
Herbert Xu6dae1002016-02-01 21:36:53 +0800170 ahash_request_set_crypt(req, &sl, hash, sl.length);
171 err = crypto_ahash_digest(req);
172 crypto_free_ahash(crypto_ahash_reqtfm(req));
173 ahash_request_free(req);
Peng Taod7e09d02013-05-02 16:46:55 +0800174
175 return err;
176}
177EXPORT_SYMBOL(cfs_crypto_hash_digest);
178
Andreas Dilger020b0212016-03-26 15:40:46 -0400179/**
180 * Allocate and initialize desriptor for hash algorithm.
181 *
182 * This should be used to initialize a hash descriptor for multiple calls
183 * to a single hash function when computing the hash across multiple
184 * separate buffers or pages using cfs_crypto_hash_update{,_page}().
185 *
186 * The hash descriptor should be freed with cfs_crypto_hash_final().
187 *
188 * \param[in] hash_alg algorithm id (CFS_HASH_ALG_*)
189 * \param[in] key initial value/state for algorithm, if \a key = NULL
190 * use default initial value
191 * \param[in] key_len length of \a key in bytes
192 *
193 * \retval pointer to descriptor of hash instance
194 * \retval ERR_PTR(errno) in case of error
195 */
Peng Taod7e09d02013-05-02 16:46:55 +0800196struct cfs_crypto_hash_desc *
Andreas Dilger244cd872016-03-26 15:40:50 -0400197cfs_crypto_hash_init(enum cfs_crypto_hash_alg hash_alg,
Andreas Dilger56ebc2e2016-03-26 15:40:49 -0400198 unsigned char *key, unsigned int key_len)
Peng Taod7e09d02013-05-02 16:46:55 +0800199{
Herbert Xu6dae1002016-02-01 21:36:53 +0800200 struct ahash_request *req;
Peng Taod7e09d02013-05-02 16:46:55 +0800201 int err;
202 const struct cfs_crypto_hash_type *type;
203
Andreas Dilger4d60ffa2016-03-26 15:40:47 -0400204 err = cfs_crypto_hash_alloc(hash_alg, &type, &req, key, key_len);
Peng Taod7e09d02013-05-02 16:46:55 +0800205
Herbert Xu6dae1002016-02-01 21:36:53 +0800206 if (err)
Peng Taod7e09d02013-05-02 16:46:55 +0800207 return ERR_PTR(err);
Herbert Xu6dae1002016-02-01 21:36:53 +0800208 return (struct cfs_crypto_hash_desc *)req;
Peng Taod7e09d02013-05-02 16:46:55 +0800209}
210EXPORT_SYMBOL(cfs_crypto_hash_init);
211
Andreas Dilger020b0212016-03-26 15:40:46 -0400212/**
213 * Update hash digest computed on data within the given \a page
214 *
215 * \param[in] hdesc hash state descriptor
216 * \param[in] page data page on which to compute the hash
217 * \param[in] offset offset within \a page at which to start hash
218 * \param[in] len length of data on which to compute hash
219 *
220 * \retval 0 for success
221 * \retval negative errno on failure
222 */
Peng Taod7e09d02013-05-02 16:46:55 +0800223int cfs_crypto_hash_update_page(struct cfs_crypto_hash_desc *hdesc,
224 struct page *page, unsigned int offset,
225 unsigned int len)
226{
Herbert Xu6dae1002016-02-01 21:36:53 +0800227 struct ahash_request *req = (void *)hdesc;
Peng Taod7e09d02013-05-02 16:46:55 +0800228 struct scatterlist sl;
229
230 sg_init_table(&sl, 1);
Oleg Drokin616387e2016-03-30 19:48:23 -0400231 sg_set_page(&sl, page, len, offset & ~PAGE_MASK);
Peng Taod7e09d02013-05-02 16:46:55 +0800232
Herbert Xu6dae1002016-02-01 21:36:53 +0800233 ahash_request_set_crypt(req, &sl, NULL, sl.length);
234 return crypto_ahash_update(req);
Peng Taod7e09d02013-05-02 16:46:55 +0800235}
236EXPORT_SYMBOL(cfs_crypto_hash_update_page);
237
Andreas Dilger020b0212016-03-26 15:40:46 -0400238/**
239 * Update hash digest computed on the specified data
240 *
241 * \param[in] hdesc hash state descriptor
242 * \param[in] buf data buffer on which to compute the hash
243 * \param[in] buf_len length of \buf on which to compute hash
244 *
245 * \retval 0 for success
246 * \retval negative errno on failure
247 */
Peng Taod7e09d02013-05-02 16:46:55 +0800248int cfs_crypto_hash_update(struct cfs_crypto_hash_desc *hdesc,
249 const void *buf, unsigned int buf_len)
250{
Herbert Xu6dae1002016-02-01 21:36:53 +0800251 struct ahash_request *req = (void *)hdesc;
Peng Taod7e09d02013-05-02 16:46:55 +0800252 struct scatterlist sl;
253
Shraddha Barke0d749512015-07-27 22:20:35 +0530254 sg_init_one(&sl, buf, buf_len);
Peng Taod7e09d02013-05-02 16:46:55 +0800255
Herbert Xu6dae1002016-02-01 21:36:53 +0800256 ahash_request_set_crypt(req, &sl, NULL, sl.length);
257 return crypto_ahash_update(req);
Peng Taod7e09d02013-05-02 16:46:55 +0800258}
259EXPORT_SYMBOL(cfs_crypto_hash_update);
260
Andreas Dilger020b0212016-03-26 15:40:46 -0400261/**
262 * Finish hash calculation, copy hash digest to buffer, clean up hash descriptor
263 *
264 * \param[in] hdesc hash descriptor
265 * \param[out] hash pointer to hash buffer to store hash digest
266 * \param[in,out] hash_len pointer to hash buffer size, if \a hdesc = NULL
267 * only free \a hdesc instead of computing the hash
268 *
Andreas Dilger020b0212016-03-26 15:40:46 -0400269 * \retval 0 for success
Andreas Dilgerc11e27a2016-03-26 15:40:51 -0400270 * \retval -EOVERFLOW if hash_len is too small for the hash digest
Andreas Dilger020b0212016-03-26 15:40:46 -0400271 * \retval negative errno for other errors from lower layers
272 */
Peng Taod7e09d02013-05-02 16:46:55 +0800273int cfs_crypto_hash_final(struct cfs_crypto_hash_desc *hdesc,
274 unsigned char *hash, unsigned int *hash_len)
275{
276 int err;
Herbert Xu6dae1002016-02-01 21:36:53 +0800277 struct ahash_request *req = (void *)hdesc;
278 int size = crypto_ahash_digestsize(crypto_ahash_reqtfm(req));
Peng Taod7e09d02013-05-02 16:46:55 +0800279
Andreas Dilgerc11e27a2016-03-26 15:40:51 -0400280 if (!hash || !hash_len) {
281 err = 0;
282 goto free_ahash;
Peng Taod7e09d02013-05-02 16:46:55 +0800283 }
Andreas Dilgerc11e27a2016-03-26 15:40:51 -0400284 if (*hash_len < size) {
285 err = -EOVERFLOW;
286 goto free_ahash;
Peng Taod7e09d02013-05-02 16:46:55 +0800287 }
Andreas Dilgerc11e27a2016-03-26 15:40:51 -0400288
Herbert Xu6dae1002016-02-01 21:36:53 +0800289 ahash_request_set_crypt(req, NULL, hash, 0);
290 err = crypto_ahash_final(req);
Andreas Dilgerc11e27a2016-03-26 15:40:51 -0400291 if (!err)
292 *hash_len = size;
293free_ahash:
Herbert Xu6dae1002016-02-01 21:36:53 +0800294 crypto_free_ahash(crypto_ahash_reqtfm(req));
295 ahash_request_free(req);
Peng Taod7e09d02013-05-02 16:46:55 +0800296 return err;
297}
298EXPORT_SYMBOL(cfs_crypto_hash_final);
299
Andreas Dilger020b0212016-03-26 15:40:46 -0400300/**
301 * Compute the speed of specified hash function
302 *
303 * Run a speed test on the given hash algorithm on buffer of the given size.
304 * The speed is stored internally in the cfs_crypto_hash_speeds[] array, and
305 * is available through the cfs_crypto_hash_speed() function.
306 *
307 * \param[in] hash_alg hash algorithm id (CFS_HASH_ALG_*)
308 * \param[in] buf data buffer on which to compute the hash
309 * \param[in] buf_len length of \buf on which to compute hash
310 */
Andreas Dilger6ba3f372016-03-26 15:40:53 -0400311static void cfs_crypto_performance_test(enum cfs_crypto_hash_alg hash_alg)
Peng Taod7e09d02013-05-02 16:46:55 +0800312{
Andreas Dilger6ba3f372016-03-26 15:40:53 -0400313 int buf_len = max(PAGE_SIZE, 1048576UL);
314 void *buf;
Peng Taod7e09d02013-05-02 16:46:55 +0800315 unsigned long start, end;
316 int bcount, err = 0;
Andreas Dilger6ba3f372016-03-26 15:40:53 -0400317 struct page *page;
Andreas Dilger24a4e1e2016-03-26 15:40:48 -0400318 unsigned char hash[CFS_CRYPTO_HASH_DIGESTSIZE_MAX];
319 unsigned int hash_len = sizeof(hash);
Peng Taod7e09d02013-05-02 16:46:55 +0800320
Andreas Dilger6ba3f372016-03-26 15:40:53 -0400321 page = alloc_page(GFP_KERNEL);
322 if (!page) {
323 err = -ENOMEM;
324 goto out_err;
325 }
326
327 buf = kmap(page);
328 memset(buf, 0xAD, PAGE_SIZE);
329 kunmap(page);
330
Jian Yu304d13f2016-03-27 20:26:27 -0400331 for (start = jiffies, end = start + msecs_to_jiffies(MSEC_PER_SEC),
332 bcount = 0; time_before(jiffies, end); bcount++) {
Andreas Dilger1bc55f72016-03-26 15:40:56 -0400333 struct cfs_crypto_hash_desc *hdesc;
334 int i;
335
336 hdesc = cfs_crypto_hash_init(hash_alg, NULL, 0);
337 if (IS_ERR(hdesc)) {
338 err = PTR_ERR(hdesc);
339 break;
340 }
341
342 for (i = 0; i < buf_len / PAGE_SIZE; i++) {
343 err = cfs_crypto_hash_update_page(hdesc, page, 0,
344 PAGE_SIZE);
345 if (err)
346 break;
347 }
348
349 err = cfs_crypto_hash_final(hdesc, hash, &hash_len);
Peng Taod7e09d02013-05-02 16:46:55 +0800350 if (err)
351 break;
Peng Taod7e09d02013-05-02 16:46:55 +0800352 }
353 end = jiffies;
Andreas Dilger6ba3f372016-03-26 15:40:53 -0400354 __free_page(page);
355out_err:
Peng Taod7e09d02013-05-02 16:46:55 +0800356 if (err) {
Andreas Dilger78675cb2016-03-26 15:40:55 -0400357 cfs_crypto_hash_speeds[hash_alg] = err;
358 CDEBUG(D_INFO, "Crypto hash algorithm %s test error: rc = %d\n",
Andreas Dilger4d60ffa2016-03-26 15:40:47 -0400359 cfs_crypto_hash_name(hash_alg), err);
Peng Taod7e09d02013-05-02 16:46:55 +0800360 } else {
361 unsigned long tmp;
Mike Rapoport50ffcb72015-10-13 16:03:40 +0300362
Peng Taod7e09d02013-05-02 16:46:55 +0800363 tmp = ((bcount * buf_len / jiffies_to_msecs(end - start)) *
364 1000) / (1024 * 1024);
Andreas Dilger4d60ffa2016-03-26 15:40:47 -0400365 cfs_crypto_hash_speeds[hash_alg] = (int)tmp;
Andreas Dilger8260d4e2016-03-26 15:40:54 -0400366 CDEBUG(D_CONFIG, "Crypto hash algorithm %s speed = %d MB/s\n",
367 cfs_crypto_hash_name(hash_alg),
368 cfs_crypto_hash_speeds[hash_alg]);
Peng Taod7e09d02013-05-02 16:46:55 +0800369 }
Peng Taod7e09d02013-05-02 16:46:55 +0800370}
371
Andreas Dilger020b0212016-03-26 15:40:46 -0400372/**
373 * hash speed in Mbytes per second for valid hash algorithm
374 *
375 * Return the performance of the specified \a hash_alg that was previously
376 * computed using cfs_crypto_performance_test().
377 *
378 * \param[in] hash_alg hash algorithm id (CFS_HASH_ALG_*)
379 *
380 * \retval positive speed of the hash function in MB/s
381 * \retval -ENOENT if \a hash_alg is unsupported
382 * \retval negative errno if \a hash_alg speed is unavailable
383 */
Andreas Dilger244cd872016-03-26 15:40:50 -0400384int cfs_crypto_hash_speed(enum cfs_crypto_hash_alg hash_alg)
Peng Taod7e09d02013-05-02 16:46:55 +0800385{
386 if (hash_alg < CFS_HASH_ALG_MAX)
387 return cfs_crypto_hash_speeds[hash_alg];
Andreas Dilgere43c6582016-03-26 15:40:52 -0400388 return -ENOENT;
Peng Taod7e09d02013-05-02 16:46:55 +0800389}
390EXPORT_SYMBOL(cfs_crypto_hash_speed);
391
392/**
Andreas Dilger020b0212016-03-26 15:40:46 -0400393 * Run the performance test for all hash algorithms.
394 *
395 * Run the cfs_crypto_performance_test() benchmark for all of the available
396 * hash functions using a 1MB buffer size. This is a reasonable buffer size
397 * for Lustre RPCs, even if the actual RPC size is larger or smaller.
398 *
399 * Since the setup cost and computation speed of various hash algorithms is
400 * a function of the buffer size (and possibly internal contention of offload
401 * engines), this speed only represents an estimate of the actual speed under
402 * actual usage, but is reasonable for comparing available algorithms.
403 *
404 * The actual speeds are available via cfs_crypto_hash_speed() for later
405 * comparison.
406 *
407 * \retval 0 on success
408 * \retval -ENOMEM if no memory is available for test buffer
Peng Taod7e09d02013-05-02 16:46:55 +0800409 */
410static int cfs_crypto_test_hashes(void)
411{
Andreas Dilger6ba3f372016-03-26 15:40:53 -0400412 enum cfs_crypto_hash_alg hash_alg;
Peng Taod7e09d02013-05-02 16:46:55 +0800413
Andreas Dilger6ba3f372016-03-26 15:40:53 -0400414 for (hash_alg = 0; hash_alg < CFS_HASH_ALG_MAX; hash_alg++)
415 cfs_crypto_performance_test(hash_alg);
Peng Taod7e09d02013-05-02 16:46:55 +0800416
Peng Taod7e09d02013-05-02 16:46:55 +0800417 return 0;
418}
419
Peng Tao9c782da2013-06-06 22:59:13 +0800420static int adler32;
Peng Taod7e09d02013-05-02 16:46:55 +0800421
Andreas Dilger020b0212016-03-26 15:40:46 -0400422/**
423 * Register available hash functions
424 *
425 * \retval 0
426 */
Peng Taod7e09d02013-05-02 16:46:55 +0800427int cfs_crypto_register(void)
428{
Alexander.Boyko7045b382013-07-23 00:06:49 +0800429 request_module("crc32c");
430
Peng Taod7e09d02013-05-02 16:46:55 +0800431 adler32 = cfs_crypto_adler32_register();
432
Peng Taod7e09d02013-05-02 16:46:55 +0800433 /* check all algorithms and do performance test */
434 cfs_crypto_test_hashes();
435 return 0;
436}
Mike Rapoportc9f6bb92015-10-13 16:03:42 +0300437
Andreas Dilger020b0212016-03-26 15:40:46 -0400438/**
439 * Unregister previously registered hash functions
440 */
Peng Taod7e09d02013-05-02 16:46:55 +0800441void cfs_crypto_unregister(void)
442{
Peng Taod7e09d02013-05-02 16:46:55 +0800443 if (adler32 == 0)
444 cfs_crypto_adler32_unregister();
Peng Taod7e09d02013-05-02 16:46:55 +0800445}