ghash.c 6.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/**
 * GHASH routines supporting VMX instructions on the Power 8
 *
 * Copyright (C) 2015 International Business Machines Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 only.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 * Author: Marcelo Henrique Cerri <mhcerri@br.ibm.com>
 */

#include <linux/types.h>
#include <linux/err.h>
#include <linux/crypto.h>
#include <linux/delay.h>
26
#include <asm/simd.h>
27 28
#include <asm/switch_to.h>
#include <crypto/aes.h>
29
#include <crypto/ghash.h>
30 31
#include <crypto/scatterwalk.h>
#include <crypto/internal/hash.h>
32
#include <crypto/internal/simd.h>
33 34 35 36 37
#include <crypto/b128ops.h>

void gcm_init_p8(u128 htable[16], const u64 Xi[2]);
void gcm_gmult_p8(u64 Xi[2], const u128 htable[16]);
void gcm_ghash_p8(u64 Xi[2], const u128 htable[16],
38
		  const u8 *in, size_t len);
39 40

struct p8_ghash_ctx {
41 42
	u128 htable[16];
	struct crypto_shash *fallback;
43 44 45
};

struct p8_ghash_desc_ctx {
46 47 48 49
	u64 shash[2];
	u8 buffer[GHASH_DIGEST_SIZE];
	int bytes;
	struct shash_desc fallback_desc;
50 51 52 53
};

static int p8_ghash_init_tfm(struct crypto_tfm *tfm)
{
54
	const char *alg = "ghash-generic";
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
	struct crypto_shash *fallback;
	struct crypto_shash *shash_tfm = __crypto_shash_cast(tfm);
	struct p8_ghash_ctx *ctx = crypto_tfm_ctx(tfm);

	fallback = crypto_alloc_shash(alg, 0, CRYPTO_ALG_NEED_FALLBACK);
	if (IS_ERR(fallback)) {
		printk(KERN_ERR
		       "Failed to allocate transformation for '%s': %ld\n",
		       alg, PTR_ERR(fallback));
		return PTR_ERR(fallback);
	}

	crypto_shash_set_flags(fallback,
			       crypto_shash_get_flags((struct crypto_shash
						       *) tfm));

71 72 73 74 75 76 77 78 79 80 81
	/* Check if the descsize defined in the algorithm is still enough. */
	if (shash_tfm->descsize < sizeof(struct p8_ghash_desc_ctx)
	    + crypto_shash_descsize(fallback)) {
		printk(KERN_ERR
		       "Desc size of the fallback implementation (%s) does not match the expected value: %lu vs %u\n",
		       alg,
		       shash_tfm->descsize - sizeof(struct p8_ghash_desc_ctx),
		       crypto_shash_descsize(fallback));
		return -EINVAL;
	}
	ctx->fallback = fallback;
82 83

	return 0;
84 85 86 87
}

static void p8_ghash_exit_tfm(struct crypto_tfm *tfm)
{
88
	struct p8_ghash_ctx *ctx = crypto_tfm_ctx(tfm);
89

90 91 92 93
	if (ctx->fallback) {
		crypto_free_shash(ctx->fallback);
		ctx->fallback = NULL;
	}
94 95 96 97
}

static int p8_ghash_init(struct shash_desc *desc)
{
98 99 100 101 102 103 104 105
	struct p8_ghash_ctx *ctx = crypto_tfm_ctx(crypto_shash_tfm(desc->tfm));
	struct p8_ghash_desc_ctx *dctx = shash_desc_ctx(desc);

	dctx->bytes = 0;
	memset(dctx->shash, 0, GHASH_DIGEST_SIZE);
	dctx->fallback_desc.tfm = ctx->fallback;
	dctx->fallback_desc.flags = desc->flags;
	return crypto_shash_init(&dctx->fallback_desc);
106 107 108
}

static int p8_ghash_setkey(struct crypto_shash *tfm, const u8 *key,
109
			   unsigned int keylen)
110
{
111
	struct p8_ghash_ctx *ctx = crypto_tfm_ctx(crypto_shash_tfm(tfm));
112

113
	if (keylen != GHASH_BLOCK_SIZE)
114
		return -EINVAL;
115

116
	preempt_disable();
117
	pagefault_disable();
118
	enable_kernel_vsx();
119
	gcm_init_p8(ctx->htable, (const u64 *) key);
120
	disable_kernel_vsx();
121
	pagefault_enable();
122
	preempt_enable();
123
	return crypto_shash_setkey(ctx->fallback, key, keylen);
124 125 126
}

static int p8_ghash_update(struct shash_desc *desc,
127
			   const u8 *src, unsigned int srclen)
128
{
129 130 131 132
	unsigned int len;
	struct p8_ghash_ctx *ctx = crypto_tfm_ctx(crypto_shash_tfm(desc->tfm));
	struct p8_ghash_desc_ctx *dctx = shash_desc_ctx(desc);

133
	if (!crypto_simd_usable()) {
134 135 136 137 138 139 140 141 142 143 144 145
		return crypto_shash_update(&dctx->fallback_desc, src,
					   srclen);
	} else {
		if (dctx->bytes) {
			if (dctx->bytes + srclen < GHASH_DIGEST_SIZE) {
				memcpy(dctx->buffer + dctx->bytes, src,
				       srclen);
				dctx->bytes += srclen;
				return 0;
			}
			memcpy(dctx->buffer + dctx->bytes, src,
			       GHASH_DIGEST_SIZE - dctx->bytes);
146
			preempt_disable();
147
			pagefault_disable();
148
			enable_kernel_vsx();
149 150
			gcm_ghash_p8(dctx->shash, ctx->htable,
				     dctx->buffer, GHASH_DIGEST_SIZE);
151
			disable_kernel_vsx();
152
			pagefault_enable();
153
			preempt_enable();
154 155 156 157 158 159
			src += GHASH_DIGEST_SIZE - dctx->bytes;
			srclen -= GHASH_DIGEST_SIZE - dctx->bytes;
			dctx->bytes = 0;
		}
		len = srclen & ~(GHASH_DIGEST_SIZE - 1);
		if (len) {
160
			preempt_disable();
161
			pagefault_disable();
162
			enable_kernel_vsx();
163
			gcm_ghash_p8(dctx->shash, ctx->htable, src, len);
164
			disable_kernel_vsx();
165
			pagefault_enable();
166
			preempt_enable();
167 168 169 170 171 172 173 174 175
			src += len;
			srclen -= len;
		}
		if (srclen) {
			memcpy(dctx->buffer, src, srclen);
			dctx->bytes = srclen;
		}
		return 0;
	}
176 177 178 179
}

static int p8_ghash_final(struct shash_desc *desc, u8 *out)
{
180 181 182 183
	int i;
	struct p8_ghash_ctx *ctx = crypto_tfm_ctx(crypto_shash_tfm(desc->tfm));
	struct p8_ghash_desc_ctx *dctx = shash_desc_ctx(desc);

184
	if (!crypto_simd_usable()) {
185 186 187 188 189
		return crypto_shash_final(&dctx->fallback_desc, out);
	} else {
		if (dctx->bytes) {
			for (i = dctx->bytes; i < GHASH_DIGEST_SIZE; i++)
				dctx->buffer[i] = 0;
190
			preempt_disable();
191
			pagefault_disable();
192
			enable_kernel_vsx();
193 194
			gcm_ghash_p8(dctx->shash, ctx->htable,
				     dctx->buffer, GHASH_DIGEST_SIZE);
195
			disable_kernel_vsx();
196
			pagefault_enable();
197
			preempt_enable();
198 199 200 201 202
			dctx->bytes = 0;
		}
		memcpy(out, dctx->shash, GHASH_DIGEST_SIZE);
		return 0;
	}
203 204 205
}

struct shash_alg p8_ghash_alg = {
206 207 208 209 210
	.digestsize = GHASH_DIGEST_SIZE,
	.init = p8_ghash_init,
	.update = p8_ghash_update,
	.final = p8_ghash_final,
	.setkey = p8_ghash_setkey,
211 212
	.descsize = sizeof(struct p8_ghash_desc_ctx)
		+ sizeof(struct ghash_desc_ctx),
213 214 215 216
	.base = {
		 .cra_name = "ghash",
		 .cra_driver_name = "p8_ghash",
		 .cra_priority = 1000,
217
		 .cra_flags = CRYPTO_ALG_NEED_FALLBACK,
218 219 220 221 222 223
		 .cra_blocksize = GHASH_BLOCK_SIZE,
		 .cra_ctxsize = sizeof(struct p8_ghash_ctx),
		 .cra_module = THIS_MODULE,
		 .cra_init = p8_ghash_init_tfm,
		 .cra_exit = p8_ghash_exit_tfm,
	},
224
};