xref: /openbmc/linux/drivers/crypto/vmx/aes_xts.c (revision e2c75e76)
1 /**
2  * AES XTS routines supporting VMX In-core instructions on 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 Foundations; 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 of FITNESS FOR A PARTICUPAR 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: Leonidas S. Barbosa <leosilva@linux.vnet.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/xts.h>
31 #include <crypto/skcipher.h>
32 
33 #include "aesp8-ppc.h"
34 
35 struct p8_aes_xts_ctx {
36 	struct crypto_skcipher *fallback;
37 	struct aes_key enc_key;
38 	struct aes_key dec_key;
39 	struct aes_key tweak_key;
40 };
41 
42 static int p8_aes_xts_init(struct crypto_tfm *tfm)
43 {
44 	const char *alg = crypto_tfm_alg_name(tfm);
45 	struct crypto_skcipher *fallback;
46 	struct p8_aes_xts_ctx *ctx = crypto_tfm_ctx(tfm);
47 
48 	fallback = crypto_alloc_skcipher(alg, 0,
49 			CRYPTO_ALG_ASYNC | CRYPTO_ALG_NEED_FALLBACK);
50 	if (IS_ERR(fallback)) {
51 		printk(KERN_ERR
52 			"Failed to allocate transformation for '%s': %ld\n",
53 			alg, PTR_ERR(fallback));
54 		return PTR_ERR(fallback);
55 	}
56 	printk(KERN_INFO "Using '%s' as fallback implementation.\n",
57 		crypto_skcipher_driver_name(fallback));
58 
59 	crypto_skcipher_set_flags(
60 		fallback,
61 		crypto_skcipher_get_flags((struct crypto_skcipher *)tfm));
62 	ctx->fallback = fallback;
63 
64 	return 0;
65 }
66 
67 static void p8_aes_xts_exit(struct crypto_tfm *tfm)
68 {
69 	struct p8_aes_xts_ctx *ctx = crypto_tfm_ctx(tfm);
70 
71 	if (ctx->fallback) {
72 		crypto_free_skcipher(ctx->fallback);
73 		ctx->fallback = NULL;
74 	}
75 }
76 
77 static int p8_aes_xts_setkey(struct crypto_tfm *tfm, const u8 *key,
78 			     unsigned int keylen)
79 {
80 	int ret;
81 	struct p8_aes_xts_ctx *ctx = crypto_tfm_ctx(tfm);
82 
83 	ret = xts_check_key(tfm, key, keylen);
84 	if (ret)
85 		return ret;
86 
87 	preempt_disable();
88 	pagefault_disable();
89 	enable_kernel_vsx();
90 	ret = aes_p8_set_encrypt_key(key + keylen/2, (keylen/2) * 8, &ctx->tweak_key);
91 	ret += aes_p8_set_encrypt_key(key, (keylen/2) * 8, &ctx->enc_key);
92 	ret += aes_p8_set_decrypt_key(key, (keylen/2) * 8, &ctx->dec_key);
93 	disable_kernel_vsx();
94 	pagefault_enable();
95 	preempt_enable();
96 
97 	ret += crypto_skcipher_setkey(ctx->fallback, key, keylen);
98 	return ret;
99 }
100 
101 static int p8_aes_xts_crypt(struct blkcipher_desc *desc,
102 			    struct scatterlist *dst,
103 			    struct scatterlist *src,
104 			    unsigned int nbytes, int enc)
105 {
106 	int ret;
107 	u8 tweak[AES_BLOCK_SIZE];
108 	u8 *iv;
109 	struct blkcipher_walk walk;
110 	struct p8_aes_xts_ctx *ctx =
111 		crypto_tfm_ctx(crypto_blkcipher_tfm(desc->tfm));
112 
113 	if (in_interrupt()) {
114 		SKCIPHER_REQUEST_ON_STACK(req, ctx->fallback);
115 		skcipher_request_set_tfm(req, ctx->fallback);
116 		skcipher_request_set_callback(req, desc->flags, NULL, NULL);
117 		skcipher_request_set_crypt(req, src, dst, nbytes, desc->info);
118 		ret = enc? crypto_skcipher_encrypt(req) : crypto_skcipher_decrypt(req);
119 		skcipher_request_zero(req);
120 	} else {
121 		preempt_disable();
122 		pagefault_disable();
123 		enable_kernel_vsx();
124 
125 		blkcipher_walk_init(&walk, dst, src, nbytes);
126 
127 		ret = blkcipher_walk_virt(desc, &walk);
128 		iv = walk.iv;
129 		memset(tweak, 0, AES_BLOCK_SIZE);
130 		aes_p8_encrypt(iv, tweak, &ctx->tweak_key);
131 
132 		while ((nbytes = walk.nbytes)) {
133 			if (enc)
134 				aes_p8_xts_encrypt(walk.src.virt.addr, walk.dst.virt.addr,
135 						nbytes & AES_BLOCK_MASK, &ctx->enc_key, NULL, tweak);
136 			else
137 				aes_p8_xts_decrypt(walk.src.virt.addr, walk.dst.virt.addr,
138 						nbytes & AES_BLOCK_MASK, &ctx->dec_key, NULL, tweak);
139 
140 			nbytes &= AES_BLOCK_SIZE - 1;
141 			ret = blkcipher_walk_done(desc, &walk, nbytes);
142 		}
143 
144 		disable_kernel_vsx();
145 		pagefault_enable();
146 		preempt_enable();
147 	}
148 	return ret;
149 }
150 
151 static int p8_aes_xts_encrypt(struct blkcipher_desc *desc,
152 			      struct scatterlist *dst,
153 			      struct scatterlist *src, unsigned int nbytes)
154 {
155 	return p8_aes_xts_crypt(desc, dst, src, nbytes, 1);
156 }
157 
158 static int p8_aes_xts_decrypt(struct blkcipher_desc *desc,
159 			      struct scatterlist *dst,
160 			      struct scatterlist *src, unsigned int nbytes)
161 {
162 	return p8_aes_xts_crypt(desc, dst, src, nbytes, 0);
163 }
164 
165 struct crypto_alg p8_aes_xts_alg = {
166 	.cra_name = "xts(aes)",
167 	.cra_driver_name = "p8_aes_xts",
168 	.cra_module = THIS_MODULE,
169 	.cra_priority = 2000,
170 	.cra_type = &crypto_blkcipher_type,
171 	.cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER | CRYPTO_ALG_NEED_FALLBACK,
172 	.cra_alignmask = 0,
173 	.cra_blocksize = AES_BLOCK_SIZE,
174 	.cra_ctxsize = sizeof(struct p8_aes_xts_ctx),
175 	.cra_init = p8_aes_xts_init,
176 	.cra_exit = p8_aes_xts_exit,
177 	.cra_blkcipher = {
178 			.ivsize = AES_BLOCK_SIZE,
179 			.min_keysize = 2 * AES_MIN_KEY_SIZE,
180 			.max_keysize = 2 * AES_MAX_KEY_SIZE,
181 			.setkey	 = p8_aes_xts_setkey,
182 			.encrypt = p8_aes_xts_encrypt,
183 			.decrypt = p8_aes_xts_decrypt,
184 	}
185 };
186