Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 1 | /* |
| 2 | * Cryptographic Hash operations. |
| 3 | * |
| 4 | * Copyright (c) 2006 Herbert Xu <herbert@gondor.apana.org.au> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License as published by the Free |
| 8 | * Software Foundation; either version 2 of the License, or (at your option) |
| 9 | * any later version. |
| 10 | */ |
| 11 | |
| 12 | #include <linux/errno.h> |
| 13 | #include <linux/kernel.h> |
| 14 | #include <linux/module.h> |
Herbert Xu | 791b4d5 | 2007-08-23 16:23:01 +0800 | [diff] [blame] | 15 | #include <linux/slab.h> |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 16 | #include <linux/seq_file.h> |
| 17 | |
| 18 | #include "internal.h" |
| 19 | |
Herbert Xu | 27d2a33 | 2007-01-24 20:50:26 +1100 | [diff] [blame] | 20 | static unsigned int crypto_hash_ctxsize(struct crypto_alg *alg, u32 type, |
| 21 | u32 mask) |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 22 | { |
| 23 | return alg->cra_ctxsize; |
| 24 | } |
| 25 | |
Sebastian Siewior | ca7c393 | 2007-05-19 19:51:21 +1000 | [diff] [blame] | 26 | static int hash_setkey_unaligned(struct crypto_hash *crt, const u8 *key, |
| 27 | unsigned int keylen) |
| 28 | { |
| 29 | struct crypto_tfm *tfm = crypto_hash_tfm(crt); |
| 30 | struct hash_alg *alg = &tfm->__crt_alg->cra_hash; |
| 31 | unsigned long alignmask = crypto_hash_alignmask(crt); |
| 32 | int ret; |
| 33 | u8 *buffer, *alignbuffer; |
| 34 | unsigned long absize; |
| 35 | |
| 36 | absize = keylen + alignmask; |
| 37 | buffer = kmalloc(absize, GFP_ATOMIC); |
| 38 | if (!buffer) |
| 39 | return -ENOMEM; |
| 40 | |
| 41 | alignbuffer = (u8 *)ALIGN((unsigned long)buffer, alignmask + 1); |
| 42 | memcpy(alignbuffer, key, keylen); |
| 43 | ret = alg->setkey(crt, alignbuffer, keylen); |
Sebastian Siewior | 0681717 | 2007-08-03 20:33:47 +0800 | [diff] [blame] | 44 | memset(alignbuffer, 0, keylen); |
Sebastian Siewior | ca7c393 | 2007-05-19 19:51:21 +1000 | [diff] [blame] | 45 | kfree(buffer); |
| 46 | return ret; |
| 47 | } |
| 48 | |
| 49 | static int hash_setkey(struct crypto_hash *crt, const u8 *key, |
Herbert Xu | 791b4d5 | 2007-08-23 16:23:01 +0800 | [diff] [blame] | 50 | unsigned int keylen) |
Sebastian Siewior | ca7c393 | 2007-05-19 19:51:21 +1000 | [diff] [blame] | 51 | { |
| 52 | struct crypto_tfm *tfm = crypto_hash_tfm(crt); |
| 53 | struct hash_alg *alg = &tfm->__crt_alg->cra_hash; |
| 54 | unsigned long alignmask = crypto_hash_alignmask(crt); |
| 55 | |
| 56 | if ((unsigned long)key & alignmask) |
| 57 | return hash_setkey_unaligned(crt, key, keylen); |
| 58 | |
| 59 | return alg->setkey(crt, key, keylen); |
| 60 | } |
| 61 | |
Herbert Xu | 27d2a33 | 2007-01-24 20:50:26 +1100 | [diff] [blame] | 62 | static int crypto_init_hash_ops(struct crypto_tfm *tfm, u32 type, u32 mask) |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 63 | { |
| 64 | struct hash_tfm *crt = &tfm->crt_hash; |
| 65 | struct hash_alg *alg = &tfm->__crt_alg->cra_hash; |
| 66 | |
| 67 | if (alg->digestsize > crypto_tfm_alg_blocksize(tfm)) |
| 68 | return -EINVAL; |
| 69 | |
| 70 | crt->init = alg->init; |
| 71 | crt->update = alg->update; |
| 72 | crt->final = alg->final; |
| 73 | crt->digest = alg->digest; |
Sebastian Siewior | ca7c393 | 2007-05-19 19:51:21 +1000 | [diff] [blame] | 74 | crt->setkey = hash_setkey; |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 75 | crt->digestsize = alg->digestsize; |
| 76 | |
| 77 | return 0; |
| 78 | } |
| 79 | |
| 80 | static void crypto_hash_show(struct seq_file *m, struct crypto_alg *alg) |
Herbert Xu | 03f5d8c | 2006-12-31 10:42:06 +1100 | [diff] [blame] | 81 | __attribute__ ((unused)); |
Herbert Xu | 055bcee | 2006-08-19 22:24:23 +1000 | [diff] [blame] | 82 | static void crypto_hash_show(struct seq_file *m, struct crypto_alg *alg) |
| 83 | { |
| 84 | seq_printf(m, "type : hash\n"); |
| 85 | seq_printf(m, "blocksize : %u\n", alg->cra_blocksize); |
| 86 | seq_printf(m, "digestsize : %u\n", alg->cra_hash.digestsize); |
| 87 | } |
| 88 | |
| 89 | const struct crypto_type crypto_hash_type = { |
| 90 | .ctxsize = crypto_hash_ctxsize, |
| 91 | .init = crypto_init_hash_ops, |
| 92 | #ifdef CONFIG_PROC_FS |
| 93 | .show = crypto_hash_show, |
| 94 | #endif |
| 95 | }; |
| 96 | EXPORT_SYMBOL_GPL(crypto_hash_type); |
| 97 | |
| 98 | MODULE_LICENSE("GPL"); |
| 99 | MODULE_DESCRIPTION("Generic cryptographic hash type"); |