Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014 Filipe David Borba Manana <fdmanana@gmail.com> |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU General Public |
| 6 | * License v2 as published by the Free Software Foundation. |
| 7 | * |
| 8 | * This program is distributed in the hope that it will be useful, |
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 11 | * General Public License for more details. |
| 12 | */ |
| 13 | |
| 14 | #include <crypto/hash.h> |
| 15 | #include <linux/err.h> |
| 16 | #include "hash.h" |
| 17 | |
| 18 | static struct crypto_shash *tfm; |
| 19 | |
| 20 | int __init btrfs_hash_init(void) |
| 21 | { |
| 22 | tfm = crypto_alloc_shash("crc32c", 0, 0); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 23 | |
Fabian Frederick | 6f84e23 | 2014-07-04 21:10:27 +0200 | [diff] [blame] | 24 | return PTR_ERR_OR_ZERO(tfm); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 25 | } |
| 26 | |
Jeff Mahoney | 5f9e105 | 2015-09-16 15:34:53 +0200 | [diff] [blame] | 27 | const char* btrfs_crc32c_impl(void) |
| 28 | { |
| 29 | return crypto_tfm_alg_driver_name(crypto_shash_tfm(tfm)); |
| 30 | } |
| 31 | |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 32 | void btrfs_hash_exit(void) |
| 33 | { |
| 34 | crypto_free_shash(tfm); |
| 35 | } |
| 36 | |
| 37 | u32 btrfs_crc32c(u32 crc, const void *address, unsigned int length) |
| 38 | { |
Vinícius Tinti | 0458a95 | 2014-04-04 18:21:24 -0300 | [diff] [blame] | 39 | SHASH_DESC_ON_STACK(shash, tfm); |
| 40 | u32 *ctx = (u32 *)shash_desc_ctx(shash); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 41 | int err; |
| 42 | |
Vinícius Tinti | 0458a95 | 2014-04-04 18:21:24 -0300 | [diff] [blame] | 43 | shash->tfm = tfm; |
| 44 | shash->flags = 0; |
| 45 | *ctx = crc; |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 46 | |
Vinícius Tinti | 0458a95 | 2014-04-04 18:21:24 -0300 | [diff] [blame] | 47 | err = crypto_shash_update(shash, address, length); |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 48 | BUG_ON(err); |
| 49 | |
Vinícius Tinti | 0458a95 | 2014-04-04 18:21:24 -0300 | [diff] [blame] | 50 | return *ctx; |
Filipe David Borba Manana | 14a958e | 2014-01-12 02:22:46 +0000 | [diff] [blame] | 51 | } |