blob: b71895871be3f1f2ec0b15d19d4087a16f40016f [file] [log] [blame]
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -02001/**
2 * AES CBC 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>
Paulo Flabiano Smorigoc96d0a12017-03-01 10:58:20 -030030#include <crypto/skcipher.h>
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -020031
32#include "aesp8-ppc.h"
33
34struct p8_aes_cbc_ctx {
Paulo Flabiano Smorigoc96d0a12017-03-01 10:58:20 -030035 struct crypto_skcipher *fallback;
Herbert Xu4beb1062015-06-15 16:55:46 +080036 struct aes_key enc_key;
37 struct aes_key dec_key;
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -020038};
39
40static int p8_aes_cbc_init(struct crypto_tfm *tfm)
41{
Tudor-Dan Ambarus78557e72017-06-16 11:39:48 +030042 const char *alg = crypto_tfm_alg_name(tfm);
Paulo Flabiano Smorigoc96d0a12017-03-01 10:58:20 -030043 struct crypto_skcipher *fallback;
Herbert Xu4beb1062015-06-15 16:55:46 +080044 struct p8_aes_cbc_ctx *ctx = crypto_tfm_ctx(tfm);
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -020045
Paulo Flabiano Smorigoc96d0a12017-03-01 10:58:20 -030046 fallback = crypto_alloc_skcipher(alg, 0,
47 CRYPTO_ALG_ASYNC | CRYPTO_ALG_NEED_FALLBACK);
48
Herbert Xu4beb1062015-06-15 16:55:46 +080049 if (IS_ERR(fallback)) {
50 printk(KERN_ERR
51 "Failed to allocate transformation for '%s': %ld\n",
52 alg, PTR_ERR(fallback));
53 return PTR_ERR(fallback);
54 }
Paulo Flabiano Smorigoc96d0a12017-03-01 10:58:20 -030055
56 crypto_skcipher_set_flags(
Herbert Xu4beb1062015-06-15 16:55:46 +080057 fallback,
Paulo Flabiano Smorigoc96d0a12017-03-01 10:58:20 -030058 crypto_skcipher_get_flags((struct crypto_skcipher *)tfm));
Herbert Xu4beb1062015-06-15 16:55:46 +080059 ctx->fallback = fallback;
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -020060
Herbert Xu4beb1062015-06-15 16:55:46 +080061 return 0;
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -020062}
63
64static void p8_aes_cbc_exit(struct crypto_tfm *tfm)
65{
Herbert Xu4beb1062015-06-15 16:55:46 +080066 struct p8_aes_cbc_ctx *ctx = crypto_tfm_ctx(tfm);
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -020067
Herbert Xu4beb1062015-06-15 16:55:46 +080068 if (ctx->fallback) {
Paulo Flabiano Smorigoc96d0a12017-03-01 10:58:20 -030069 crypto_free_skcipher(ctx->fallback);
Herbert Xu4beb1062015-06-15 16:55:46 +080070 ctx->fallback = NULL;
71 }
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -020072}
73
74static int p8_aes_cbc_setkey(struct crypto_tfm *tfm, const u8 *key,
Herbert Xu4beb1062015-06-15 16:55:46 +080075 unsigned int keylen)
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -020076{
Herbert Xu4beb1062015-06-15 16:55:46 +080077 int ret;
78 struct p8_aes_cbc_ctx *ctx = crypto_tfm_ctx(tfm);
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -020079
Linus Torvalds44d21c32015-06-22 21:04:48 -070080 preempt_disable();
Herbert Xu4beb1062015-06-15 16:55:46 +080081 pagefault_disable();
Leonidas Da Silva Barbosa2d6f0602015-07-13 13:51:39 -030082 enable_kernel_vsx();
Herbert Xu4beb1062015-06-15 16:55:46 +080083 ret = aes_p8_set_encrypt_key(key, keylen * 8, &ctx->enc_key);
84 ret += aes_p8_set_decrypt_key(key, keylen * 8, &ctx->dec_key);
Anton Blancharddc4fbba2015-10-29 11:44:05 +110085 disable_kernel_vsx();
Herbert Xu4beb1062015-06-15 16:55:46 +080086 pagefault_enable();
Linus Torvalds44d21c32015-06-22 21:04:48 -070087 preempt_enable();
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -020088
Paulo Flabiano Smorigoc96d0a12017-03-01 10:58:20 -030089 ret += crypto_skcipher_setkey(ctx->fallback, key, keylen);
Herbert Xu4beb1062015-06-15 16:55:46 +080090 return ret;
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -020091}
92
93static int p8_aes_cbc_encrypt(struct blkcipher_desc *desc,
Herbert Xu4beb1062015-06-15 16:55:46 +080094 struct scatterlist *dst,
95 struct scatterlist *src, unsigned int nbytes)
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -020096{
Herbert Xu4beb1062015-06-15 16:55:46 +080097 int ret;
98 struct blkcipher_walk walk;
99 struct p8_aes_cbc_ctx *ctx =
100 crypto_tfm_ctx(crypto_blkcipher_tfm(desc->tfm));
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -0200101
Herbert Xu4beb1062015-06-15 16:55:46 +0800102 if (in_interrupt()) {
Paulo Flabiano Smorigoc96d0a12017-03-01 10:58:20 -0300103 SKCIPHER_REQUEST_ON_STACK(req, ctx->fallback);
104 skcipher_request_set_tfm(req, ctx->fallback);
105 skcipher_request_set_callback(req, desc->flags, NULL, NULL);
106 skcipher_request_set_crypt(req, src, dst, nbytes, desc->info);
107 ret = crypto_skcipher_encrypt(req);
108 skcipher_request_zero(req);
Herbert Xu4beb1062015-06-15 16:55:46 +0800109 } else {
Herbert Xu4beb1062015-06-15 16:55:46 +0800110 blkcipher_walk_init(&walk, dst, src, nbytes);
111 ret = blkcipher_walk_virt(desc, &walk);
112 while ((nbytes = walk.nbytes)) {
Ondrej Mosnacek05222362018-08-22 08:26:31 +0200113 preempt_disable();
114 pagefault_disable();
115 enable_kernel_vsx();
Herbert Xu4beb1062015-06-15 16:55:46 +0800116 aes_p8_cbc_encrypt(walk.src.virt.addr,
117 walk.dst.virt.addr,
118 nbytes & AES_BLOCK_MASK,
119 &ctx->enc_key, walk.iv, 1);
Ondrej Mosnacek05222362018-08-22 08:26:31 +0200120 disable_kernel_vsx();
121 pagefault_enable();
122 preempt_enable();
123
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -0200124 nbytes &= AES_BLOCK_SIZE - 1;
125 ret = blkcipher_walk_done(desc, &walk, nbytes);
126 }
Herbert Xu4beb1062015-06-15 16:55:46 +0800127 }
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -0200128
Herbert Xu4beb1062015-06-15 16:55:46 +0800129 return ret;
130}
131
132static int p8_aes_cbc_decrypt(struct blkcipher_desc *desc,
133 struct scatterlist *dst,
134 struct scatterlist *src, unsigned int nbytes)
135{
136 int ret;
137 struct blkcipher_walk walk;
138 struct p8_aes_cbc_ctx *ctx =
139 crypto_tfm_ctx(crypto_blkcipher_tfm(desc->tfm));
Herbert Xu4beb1062015-06-15 16:55:46 +0800140
141 if (in_interrupt()) {
Paulo Flabiano Smorigoc96d0a12017-03-01 10:58:20 -0300142 SKCIPHER_REQUEST_ON_STACK(req, ctx->fallback);
143 skcipher_request_set_tfm(req, ctx->fallback);
144 skcipher_request_set_callback(req, desc->flags, NULL, NULL);
145 skcipher_request_set_crypt(req, src, dst, nbytes, desc->info);
146 ret = crypto_skcipher_decrypt(req);
147 skcipher_request_zero(req);
Herbert Xu4beb1062015-06-15 16:55:46 +0800148 } else {
Herbert Xu4beb1062015-06-15 16:55:46 +0800149 blkcipher_walk_init(&walk, dst, src, nbytes);
150 ret = blkcipher_walk_virt(desc, &walk);
151 while ((nbytes = walk.nbytes)) {
Ondrej Mosnacek05222362018-08-22 08:26:31 +0200152 preempt_disable();
153 pagefault_disable();
154 enable_kernel_vsx();
Herbert Xu4beb1062015-06-15 16:55:46 +0800155 aes_p8_cbc_encrypt(walk.src.virt.addr,
156 walk.dst.virt.addr,
157 nbytes & AES_BLOCK_MASK,
158 &ctx->dec_key, walk.iv, 0);
Ondrej Mosnacek05222362018-08-22 08:26:31 +0200159 disable_kernel_vsx();
160 pagefault_enable();
161 preempt_enable();
162
Herbert Xu4beb1062015-06-15 16:55:46 +0800163 nbytes &= AES_BLOCK_SIZE - 1;
164 ret = blkcipher_walk_done(desc, &walk, nbytes);
165 }
Herbert Xu4beb1062015-06-15 16:55:46 +0800166 }
167
168 return ret;
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -0200169}
170
171
172struct crypto_alg p8_aes_cbc_alg = {
Herbert Xu4beb1062015-06-15 16:55:46 +0800173 .cra_name = "cbc(aes)",
174 .cra_driver_name = "p8_aes_cbc",
175 .cra_module = THIS_MODULE,
Anton Blanchard12d3f492016-06-10 16:47:03 +1000176 .cra_priority = 2000,
Herbert Xu4beb1062015-06-15 16:55:46 +0800177 .cra_type = &crypto_blkcipher_type,
178 .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER | CRYPTO_ALG_NEED_FALLBACK,
179 .cra_alignmask = 0,
180 .cra_blocksize = AES_BLOCK_SIZE,
181 .cra_ctxsize = sizeof(struct p8_aes_cbc_ctx),
182 .cra_init = p8_aes_cbc_init,
183 .cra_exit = p8_aes_cbc_exit,
184 .cra_blkcipher = {
Leonidas Da Silva Barbosa0d3d0542015-11-30 16:19:03 -0200185 .ivsize = AES_BLOCK_SIZE,
Herbert Xu4beb1062015-06-15 16:55:46 +0800186 .min_keysize = AES_MIN_KEY_SIZE,
187 .max_keysize = AES_MAX_KEY_SIZE,
188 .setkey = p8_aes_cbc_setkey,
189 .encrypt = p8_aes_cbc_encrypt,
190 .decrypt = p8_aes_cbc_decrypt,
191 },
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -0200192};