blob: 4c3a8f7e5059978a8ec62ac127460fb184cd44cc [file] [log] [blame]
Marcelo H. Cerricc333cd2015-02-06 14:59:05 -02001/**
2 * GHASH routines supporting VMX instructions on the Power 8
3 *
4 * Copyright (C) 2015 International Business Machines Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 only.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 *
19 * Author: Marcelo Henrique Cerri <mhcerri@br.ibm.com>
20 */
21
22#include <linux/types.h>
23#include <linux/err.h>
24#include <linux/crypto.h>
25#include <linux/delay.h>
26#include <linux/hardirq.h>
27#include <asm/switch_to.h>
28#include <crypto/aes.h>
29#include <crypto/scatterwalk.h>
30#include <crypto/internal/hash.h>
31#include <crypto/b128ops.h>
32
33#define IN_INTERRUPT in_interrupt()
34
35#define GHASH_BLOCK_SIZE (16)
36#define GHASH_DIGEST_SIZE (16)
37#define GHASH_KEY_LEN (16)
38
39void gcm_init_p8(u128 htable[16], const u64 Xi[2]);
40void gcm_gmult_p8(u64 Xi[2], const u128 htable[16]);
41void gcm_ghash_p8(u64 Xi[2], const u128 htable[16],
Herbert Xu4beb1062015-06-15 16:55:46 +080042 const u8 *in, size_t len);
Marcelo H. Cerricc333cd2015-02-06 14:59:05 -020043
44struct p8_ghash_ctx {
Herbert Xu4beb1062015-06-15 16:55:46 +080045 u128 htable[16];
46 struct crypto_shash *fallback;
Marcelo H. Cerricc333cd2015-02-06 14:59:05 -020047};
48
49struct p8_ghash_desc_ctx {
Herbert Xu4beb1062015-06-15 16:55:46 +080050 u64 shash[2];
51 u8 buffer[GHASH_DIGEST_SIZE];
52 int bytes;
53 struct shash_desc fallback_desc;
Marcelo H. Cerricc333cd2015-02-06 14:59:05 -020054};
55
56static int p8_ghash_init_tfm(struct crypto_tfm *tfm)
57{
Herbert Xu4beb1062015-06-15 16:55:46 +080058 const char *alg;
59 struct crypto_shash *fallback;
60 struct crypto_shash *shash_tfm = __crypto_shash_cast(tfm);
61 struct p8_ghash_ctx *ctx = crypto_tfm_ctx(tfm);
Marcelo H. Cerricc333cd2015-02-06 14:59:05 -020062
Herbert Xu4beb1062015-06-15 16:55:46 +080063 if (!(alg = crypto_tfm_alg_name(tfm))) {
64 printk(KERN_ERR "Failed to get algorithm name.\n");
65 return -ENOENT;
66 }
Marcelo H. Cerricc333cd2015-02-06 14:59:05 -020067
Herbert Xu4beb1062015-06-15 16:55:46 +080068 fallback = crypto_alloc_shash(alg, 0, CRYPTO_ALG_NEED_FALLBACK);
69 if (IS_ERR(fallback)) {
70 printk(KERN_ERR
71 "Failed to allocate transformation for '%s': %ld\n",
72 alg, PTR_ERR(fallback));
73 return PTR_ERR(fallback);
74 }
75 printk(KERN_INFO "Using '%s' as fallback implementation.\n",
76 crypto_tfm_alg_driver_name(crypto_shash_tfm(fallback)));
Marcelo H. Cerricc333cd2015-02-06 14:59:05 -020077
Herbert Xu4beb1062015-06-15 16:55:46 +080078 crypto_shash_set_flags(fallback,
79 crypto_shash_get_flags((struct crypto_shash
80 *) tfm));
81 ctx->fallback = fallback;
Marcelo H. Cerricc333cd2015-02-06 14:59:05 -020082
Herbert Xu4beb1062015-06-15 16:55:46 +080083 shash_tfm->descsize = sizeof(struct p8_ghash_desc_ctx)
84 + crypto_shash_descsize(fallback);
Marcelo H. Cerricc333cd2015-02-06 14:59:05 -020085
Herbert Xu4beb1062015-06-15 16:55:46 +080086 return 0;
Marcelo H. Cerricc333cd2015-02-06 14:59:05 -020087}
88
89static void p8_ghash_exit_tfm(struct crypto_tfm *tfm)
90{
Herbert Xu4beb1062015-06-15 16:55:46 +080091 struct p8_ghash_ctx *ctx = crypto_tfm_ctx(tfm);
Marcelo H. Cerricc333cd2015-02-06 14:59:05 -020092
Herbert Xu4beb1062015-06-15 16:55:46 +080093 if (ctx->fallback) {
94 crypto_free_shash(ctx->fallback);
95 ctx->fallback = NULL;
96 }
Marcelo H. Cerricc333cd2015-02-06 14:59:05 -020097}
98
99static int p8_ghash_init(struct shash_desc *desc)
100{
Herbert Xu4beb1062015-06-15 16:55:46 +0800101 struct p8_ghash_ctx *ctx = crypto_tfm_ctx(crypto_shash_tfm(desc->tfm));
102 struct p8_ghash_desc_ctx *dctx = shash_desc_ctx(desc);
Marcelo H. Cerricc333cd2015-02-06 14:59:05 -0200103
Herbert Xu4beb1062015-06-15 16:55:46 +0800104 dctx->bytes = 0;
105 memset(dctx->shash, 0, GHASH_DIGEST_SIZE);
106 dctx->fallback_desc.tfm = ctx->fallback;
107 dctx->fallback_desc.flags = desc->flags;
108 return crypto_shash_init(&dctx->fallback_desc);
Marcelo H. Cerricc333cd2015-02-06 14:59:05 -0200109}
110
111static int p8_ghash_setkey(struct crypto_shash *tfm, const u8 *key,
Herbert Xu4beb1062015-06-15 16:55:46 +0800112 unsigned int keylen)
Marcelo H. Cerricc333cd2015-02-06 14:59:05 -0200113{
Herbert Xu4beb1062015-06-15 16:55:46 +0800114 struct p8_ghash_ctx *ctx = crypto_tfm_ctx(crypto_shash_tfm(tfm));
Marcelo H. Cerricc333cd2015-02-06 14:59:05 -0200115
Herbert Xu4beb1062015-06-15 16:55:46 +0800116 if (keylen != GHASH_KEY_LEN)
117 return -EINVAL;
Marcelo H. Cerricc333cd2015-02-06 14:59:05 -0200118
Herbert Xu4beb1062015-06-15 16:55:46 +0800119 pagefault_disable();
120 enable_kernel_altivec();
121 enable_kernel_fp();
122 gcm_init_p8(ctx->htable, (const u64 *) key);
123 pagefault_enable();
124 return crypto_shash_setkey(ctx->fallback, key, keylen);
Marcelo H. Cerricc333cd2015-02-06 14:59:05 -0200125}
126
127static int p8_ghash_update(struct shash_desc *desc,
Herbert Xu4beb1062015-06-15 16:55:46 +0800128 const u8 *src, unsigned int srclen)
Marcelo H. Cerricc333cd2015-02-06 14:59:05 -0200129{
Herbert Xu4beb1062015-06-15 16:55:46 +0800130 unsigned int len;
131 struct p8_ghash_ctx *ctx = crypto_tfm_ctx(crypto_shash_tfm(desc->tfm));
132 struct p8_ghash_desc_ctx *dctx = shash_desc_ctx(desc);
Marcelo H. Cerricc333cd2015-02-06 14:59:05 -0200133
Herbert Xu4beb1062015-06-15 16:55:46 +0800134 if (IN_INTERRUPT) {
135 return crypto_shash_update(&dctx->fallback_desc, src,
136 srclen);
137 } else {
138 if (dctx->bytes) {
139 if (dctx->bytes + srclen < GHASH_DIGEST_SIZE) {
140 memcpy(dctx->buffer + dctx->bytes, src,
141 srclen);
142 dctx->bytes += srclen;
143 return 0;
144 }
145 memcpy(dctx->buffer + dctx->bytes, src,
146 GHASH_DIGEST_SIZE - dctx->bytes);
147 pagefault_disable();
148 enable_kernel_altivec();
149 enable_kernel_fp();
150 gcm_ghash_p8(dctx->shash, ctx->htable,
151 dctx->buffer, GHASH_DIGEST_SIZE);
152 pagefault_enable();
153 src += GHASH_DIGEST_SIZE - dctx->bytes;
154 srclen -= GHASH_DIGEST_SIZE - dctx->bytes;
155 dctx->bytes = 0;
156 }
157 len = srclen & ~(GHASH_DIGEST_SIZE - 1);
158 if (len) {
159 pagefault_disable();
160 enable_kernel_altivec();
161 enable_kernel_fp();
162 gcm_ghash_p8(dctx->shash, ctx->htable, src, len);
163 pagefault_enable();
164 src += len;
165 srclen -= len;
166 }
167 if (srclen) {
168 memcpy(dctx->buffer, src, srclen);
169 dctx->bytes = srclen;
170 }
171 return 0;
172 }
Marcelo H. Cerricc333cd2015-02-06 14:59:05 -0200173}
174
175static int p8_ghash_final(struct shash_desc *desc, u8 *out)
176{
Herbert Xu4beb1062015-06-15 16:55:46 +0800177 int i;
178 struct p8_ghash_ctx *ctx = crypto_tfm_ctx(crypto_shash_tfm(desc->tfm));
179 struct p8_ghash_desc_ctx *dctx = shash_desc_ctx(desc);
Marcelo H. Cerricc333cd2015-02-06 14:59:05 -0200180
Herbert Xu4beb1062015-06-15 16:55:46 +0800181 if (IN_INTERRUPT) {
182 return crypto_shash_final(&dctx->fallback_desc, out);
183 } else {
184 if (dctx->bytes) {
185 for (i = dctx->bytes; i < GHASH_DIGEST_SIZE; i++)
186 dctx->buffer[i] = 0;
187 pagefault_disable();
188 enable_kernel_altivec();
189 enable_kernel_fp();
190 gcm_ghash_p8(dctx->shash, ctx->htable,
191 dctx->buffer, GHASH_DIGEST_SIZE);
192 pagefault_enable();
193 dctx->bytes = 0;
194 }
195 memcpy(out, dctx->shash, GHASH_DIGEST_SIZE);
196 return 0;
197 }
Marcelo H. Cerricc333cd2015-02-06 14:59:05 -0200198}
199
200struct shash_alg p8_ghash_alg = {
Herbert Xu4beb1062015-06-15 16:55:46 +0800201 .digestsize = GHASH_DIGEST_SIZE,
202 .init = p8_ghash_init,
203 .update = p8_ghash_update,
204 .final = p8_ghash_final,
205 .setkey = p8_ghash_setkey,
206 .descsize = sizeof(struct p8_ghash_desc_ctx),
207 .base = {
208 .cra_name = "ghash",
209 .cra_driver_name = "p8_ghash",
210 .cra_priority = 1000,
211 .cra_flags = CRYPTO_ALG_TYPE_SHASH | CRYPTO_ALG_NEED_FALLBACK,
212 .cra_blocksize = GHASH_BLOCK_SIZE,
213 .cra_ctxsize = sizeof(struct p8_ghash_ctx),
214 .cra_module = THIS_MODULE,
215 .cra_init = p8_ghash_init_tfm,
216 .cra_exit = p8_ghash_exit_tfm,
217 },
Marcelo H. Cerricc333cd2015-02-06 14:59:05 -0200218};