blob: 7d3d678712706646e65a43939a43628a16781131 [file] [log] [blame]
Thomas Gleixner64d85cc2019-05-29 07:18:13 -07001// SPDX-License-Identifier: GPL-2.0-only
Kent Yoderf2a15f12012-05-14 11:05:59 +00002/**
3 * AES GCM routines supporting the Power 7+ Nest Accelerators driver
4 *
5 * Copyright (C) 2012 International Business Machines Inc.
6 *
Kent Yoderf2a15f12012-05-14 11:05:59 +00007 * Author: Kent Yoder <yoder1@us.ibm.com>
8 */
9
10#include <crypto/internal/aead.h>
11#include <crypto/aes.h>
David Gstircb8affb2015-11-15 17:14:41 +010012#include <crypto/algapi.h>
Corentin LABBEfdd0f3d2017-08-22 10:08:11 +020013#include <crypto/gcm.h>
Kent Yoderf2a15f12012-05-14 11:05:59 +000014#include <crypto/scatterwalk.h>
15#include <linux/module.h>
16#include <linux/types.h>
Kent Yoderf2a15f12012-05-14 11:05:59 +000017#include <asm/vio.h>
18
19#include "nx_csbcpb.h"
20#include "nx.h"
21
22
23static int gcm_aes_nx_set_key(struct crypto_aead *tfm,
24 const u8 *in_key,
25 unsigned int key_len)
26{
Herbert Xuc3d21942015-07-09 07:17:31 +080027 struct nx_crypto_ctx *nx_ctx = crypto_aead_ctx(tfm);
Kent Yoderf2a15f12012-05-14 11:05:59 +000028 struct nx_csbcpb *csbcpb = nx_ctx->csbcpb;
29 struct nx_csbcpb *csbcpb_aead = nx_ctx->csbcpb_aead;
30
31 nx_ctx_init(nx_ctx, HCOP_FC_AES);
32
33 switch (key_len) {
34 case AES_KEYSIZE_128:
35 NX_CPB_SET_KEY_SIZE(csbcpb, NX_KS_AES_128);
36 NX_CPB_SET_KEY_SIZE(csbcpb_aead, NX_KS_AES_128);
37 nx_ctx->ap = &nx_ctx->props[NX_PROPS_AES_128];
38 break;
39 case AES_KEYSIZE_192:
40 NX_CPB_SET_KEY_SIZE(csbcpb, NX_KS_AES_192);
41 NX_CPB_SET_KEY_SIZE(csbcpb_aead, NX_KS_AES_192);
42 nx_ctx->ap = &nx_ctx->props[NX_PROPS_AES_192];
43 break;
44 case AES_KEYSIZE_256:
45 NX_CPB_SET_KEY_SIZE(csbcpb, NX_KS_AES_256);
46 NX_CPB_SET_KEY_SIZE(csbcpb_aead, NX_KS_AES_256);
47 nx_ctx->ap = &nx_ctx->props[NX_PROPS_AES_256];
48 break;
49 default:
50 return -EINVAL;
51 }
52
53 csbcpb->cpb.hdr.mode = NX_MODE_AES_GCM;
54 memcpy(csbcpb->cpb.aes_gcm.key, in_key, key_len);
55
56 csbcpb_aead->cpb.hdr.mode = NX_MODE_AES_GCA;
57 memcpy(csbcpb_aead->cpb.aes_gca.key, in_key, key_len);
58
59 return 0;
60}
61
62static int gcm4106_aes_nx_set_key(struct crypto_aead *tfm,
63 const u8 *in_key,
64 unsigned int key_len)
65{
Herbert Xuc3d21942015-07-09 07:17:31 +080066 struct nx_crypto_ctx *nx_ctx = crypto_aead_ctx(tfm);
Kent Yoderf2a15f12012-05-14 11:05:59 +000067 char *nonce = nx_ctx->priv.gcm.nonce;
68 int rc;
69
70 if (key_len < 4)
71 return -EINVAL;
72
73 key_len -= 4;
74
75 rc = gcm_aes_nx_set_key(tfm, in_key, key_len);
76 if (rc)
77 goto out;
78
79 memcpy(nonce, in_key + key_len, 4);
80out:
81 return rc;
82}
83
Kent Yoderf2a15f12012-05-14 11:05:59 +000084static int gcm4106_aes_nx_setauthsize(struct crypto_aead *tfm,
85 unsigned int authsize)
86{
87 switch (authsize) {
88 case 8:
89 case 12:
90 case 16:
91 break;
92 default:
93 return -EINVAL;
94 }
95
Kent Yoderf2a15f12012-05-14 11:05:59 +000096 return 0;
97}
98
99static int nx_gca(struct nx_crypto_ctx *nx_ctx,
100 struct aead_request *req,
Herbert Xuc3d21942015-07-09 07:17:31 +0800101 u8 *out,
102 unsigned int assoclen)
Kent Yoderf2a15f12012-05-14 11:05:59 +0000103{
Marcelo Cerri79980432013-08-29 11:36:35 -0300104 int rc;
Kent Yoderf2a15f12012-05-14 11:05:59 +0000105 struct nx_csbcpb *csbcpb_aead = nx_ctx->csbcpb_aead;
Kent Yoderf2a15f12012-05-14 11:05:59 +0000106 struct scatter_walk walk;
107 struct nx_sg *nx_sg = nx_ctx->in_sg;
Herbert Xuc3d21942015-07-09 07:17:31 +0800108 unsigned int nbytes = assoclen;
Marcelo Cerri79980432013-08-29 11:36:35 -0300109 unsigned int processed = 0, to_process;
Leonidas S. Barbosae13a79a2014-10-28 15:47:48 -0200110 unsigned int max_sg_len;
Kent Yoderf2a15f12012-05-14 11:05:59 +0000111
Marcelo Cerri79980432013-08-29 11:36:35 -0300112 if (nbytes <= AES_BLOCK_SIZE) {
Herbert Xu201f28f2015-06-16 13:54:21 +0800113 scatterwalk_start(&walk, req->src);
Marcelo Cerri79980432013-08-29 11:36:35 -0300114 scatterwalk_copychunks(out, &walk, nbytes, SCATTERWALK_FROM_SG);
Kent Yoderf2a15f12012-05-14 11:05:59 +0000115 scatterwalk_done(&walk, SCATTERWALK_FROM_SG, 0);
Marcelo Cerri79980432013-08-29 11:36:35 -0300116 return 0;
117 }
Kent Yoderf2a15f12012-05-14 11:05:59 +0000118
Marcelo Cerri79980432013-08-29 11:36:35 -0300119 NX_CPB_FDM(csbcpb_aead) &= ~NX_FDM_CONTINUATION;
120
121 /* page_limit: number of sg entries that fit on one page */
Leonidas S. Barbosae13a79a2014-10-28 15:47:48 -0200122 max_sg_len = min_t(u64, nx_driver.of.max_sg_len/sizeof(struct nx_sg),
Marcelo Cerri79980432013-08-29 11:36:35 -0300123 nx_ctx->ap->sglen);
Leonidas S. Barbosae13a79a2014-10-28 15:47:48 -0200124 max_sg_len = min_t(u64, max_sg_len,
125 nx_ctx->ap->databytelen/NX_PAGE_SIZE);
Marcelo Cerri79980432013-08-29 11:36:35 -0300126
127 do {
128 /*
129 * to_process: the data chunk to process in this update.
130 * This value is bound by sg list limits.
131 */
132 to_process = min_t(u64, nbytes - processed,
133 nx_ctx->ap->databytelen);
134 to_process = min_t(u64, to_process,
135 NX_PAGE_SIZE * (max_sg_len - 1));
136
Leonidas S. Barbosae13a79a2014-10-28 15:47:48 -0200137 nx_sg = nx_walk_and_build(nx_ctx->in_sg, max_sg_len,
Herbert Xu201f28f2015-06-16 13:54:21 +0800138 req->src, processed, &to_process);
Leonidas S. Barbosae13a79a2014-10-28 15:47:48 -0200139
Marcelo Cerri79980432013-08-29 11:36:35 -0300140 if ((to_process + processed) < nbytes)
141 NX_CPB_FDM(csbcpb_aead) |= NX_FDM_INTERMEDIATE;
142 else
143 NX_CPB_FDM(csbcpb_aead) &= ~NX_FDM_INTERMEDIATE;
144
Marcelo Cerri79980432013-08-29 11:36:35 -0300145 nx_ctx->op_aead.inlen = (nx_ctx->in_sg - nx_sg)
146 * sizeof(struct nx_sg);
147
148 rc = nx_hcall_sync(nx_ctx, &nx_ctx->op_aead,
149 req->base.flags & CRYPTO_TFM_REQ_MAY_SLEEP);
150 if (rc)
151 return rc;
152
153 memcpy(csbcpb_aead->cpb.aes_gca.in_pat,
154 csbcpb_aead->cpb.aes_gca.out_pat,
155 AES_BLOCK_SIZE);
156 NX_CPB_FDM(csbcpb_aead) |= NX_FDM_CONTINUATION;
157
158 atomic_inc(&(nx_ctx->stats->aes_ops));
Herbert Xuc3d21942015-07-09 07:17:31 +0800159 atomic64_add(assoclen, &(nx_ctx->stats->aes_bytes));
Marcelo Cerri79980432013-08-29 11:36:35 -0300160
161 processed += to_process;
162 } while (processed < nbytes);
163
164 memcpy(out, csbcpb_aead->cpb.aes_gca.out_pat, AES_BLOCK_SIZE);
165
166 return rc;
167}
168
Herbert Xuc3d21942015-07-09 07:17:31 +0800169static int gmac(struct aead_request *req, struct blkcipher_desc *desc,
170 unsigned int assoclen)
Marcelo Cerridec0ed62013-08-29 11:36:39 -0300171{
172 int rc;
Herbert Xuc3d21942015-07-09 07:17:31 +0800173 struct nx_crypto_ctx *nx_ctx =
174 crypto_aead_ctx(crypto_aead_reqtfm(req));
Marcelo Cerridec0ed62013-08-29 11:36:39 -0300175 struct nx_csbcpb *csbcpb = nx_ctx->csbcpb;
176 struct nx_sg *nx_sg;
Herbert Xuc3d21942015-07-09 07:17:31 +0800177 unsigned int nbytes = assoclen;
Marcelo Cerridec0ed62013-08-29 11:36:39 -0300178 unsigned int processed = 0, to_process;
Leonidas S. Barbosae13a79a2014-10-28 15:47:48 -0200179 unsigned int max_sg_len;
Marcelo Cerridec0ed62013-08-29 11:36:39 -0300180
181 /* Set GMAC mode */
182 csbcpb->cpb.hdr.mode = NX_MODE_AES_GMAC;
183
184 NX_CPB_FDM(csbcpb) &= ~NX_FDM_CONTINUATION;
185
186 /* page_limit: number of sg entries that fit on one page */
Leonidas S. Barbosae13a79a2014-10-28 15:47:48 -0200187 max_sg_len = min_t(u64, nx_driver.of.max_sg_len/sizeof(struct nx_sg),
Marcelo Cerridec0ed62013-08-29 11:36:39 -0300188 nx_ctx->ap->sglen);
Leonidas S. Barbosae13a79a2014-10-28 15:47:48 -0200189 max_sg_len = min_t(u64, max_sg_len,
190 nx_ctx->ap->databytelen/NX_PAGE_SIZE);
Marcelo Cerridec0ed62013-08-29 11:36:39 -0300191
192 /* Copy IV */
193 memcpy(csbcpb->cpb.aes_gcm.iv_or_cnt, desc->info, AES_BLOCK_SIZE);
194
195 do {
196 /*
197 * to_process: the data chunk to process in this update.
198 * This value is bound by sg list limits.
199 */
200 to_process = min_t(u64, nbytes - processed,
201 nx_ctx->ap->databytelen);
202 to_process = min_t(u64, to_process,
203 NX_PAGE_SIZE * (max_sg_len - 1));
204
Leonidas S. Barbosae13a79a2014-10-28 15:47:48 -0200205 nx_sg = nx_walk_and_build(nx_ctx->in_sg, max_sg_len,
Herbert Xu201f28f2015-06-16 13:54:21 +0800206 req->src, processed, &to_process);
Leonidas S. Barbosae13a79a2014-10-28 15:47:48 -0200207
Marcelo Cerridec0ed62013-08-29 11:36:39 -0300208 if ((to_process + processed) < nbytes)
209 NX_CPB_FDM(csbcpb) |= NX_FDM_INTERMEDIATE;
210 else
211 NX_CPB_FDM(csbcpb) &= ~NX_FDM_INTERMEDIATE;
212
Marcelo Cerridec0ed62013-08-29 11:36:39 -0300213 nx_ctx->op.inlen = (nx_ctx->in_sg - nx_sg)
214 * sizeof(struct nx_sg);
215
216 csbcpb->cpb.aes_gcm.bit_length_data = 0;
217 csbcpb->cpb.aes_gcm.bit_length_aad = 8 * nbytes;
218
219 rc = nx_hcall_sync(nx_ctx, &nx_ctx->op,
220 req->base.flags & CRYPTO_TFM_REQ_MAY_SLEEP);
221 if (rc)
222 goto out;
223
224 memcpy(csbcpb->cpb.aes_gcm.in_pat_or_aad,
225 csbcpb->cpb.aes_gcm.out_pat_or_mac, AES_BLOCK_SIZE);
226 memcpy(csbcpb->cpb.aes_gcm.in_s0,
227 csbcpb->cpb.aes_gcm.out_s0, AES_BLOCK_SIZE);
228
229 NX_CPB_FDM(csbcpb) |= NX_FDM_CONTINUATION;
230
231 atomic_inc(&(nx_ctx->stats->aes_ops));
Herbert Xuc3d21942015-07-09 07:17:31 +0800232 atomic64_add(assoclen, &(nx_ctx->stats->aes_bytes));
Marcelo Cerridec0ed62013-08-29 11:36:39 -0300233
234 processed += to_process;
235 } while (processed < nbytes);
236
237out:
238 /* Restore GCM mode */
239 csbcpb->cpb.hdr.mode = NX_MODE_AES_GCM;
240 return rc;
241}
242
Marcelo Cerri79980432013-08-29 11:36:35 -0300243static int gcm_empty(struct aead_request *req, struct blkcipher_desc *desc,
244 int enc)
245{
246 int rc;
Herbert Xuc3d21942015-07-09 07:17:31 +0800247 struct nx_crypto_ctx *nx_ctx =
248 crypto_aead_ctx(crypto_aead_reqtfm(req));
Marcelo Cerri79980432013-08-29 11:36:35 -0300249 struct nx_csbcpb *csbcpb = nx_ctx->csbcpb;
Marcelo Cerridec0ed62013-08-29 11:36:39 -0300250 char out[AES_BLOCK_SIZE];
251 struct nx_sg *in_sg, *out_sg;
Leonidas S. Barbosae13a79a2014-10-28 15:47:48 -0200252 int len;
Marcelo Cerri79980432013-08-29 11:36:35 -0300253
254 /* For scenarios where the input message is zero length, AES CTR mode
255 * may be used. Set the source data to be a single block (16B) of all
256 * zeros, and set the input IV value to be the same as the GMAC IV
257 * value. - nx_wb 4.8.1.3 */
Marcelo Cerri79980432013-08-29 11:36:35 -0300258
Marcelo Cerridec0ed62013-08-29 11:36:39 -0300259 /* Change to ECB mode */
260 csbcpb->cpb.hdr.mode = NX_MODE_AES_ECB;
261 memcpy(csbcpb->cpb.aes_ecb.key, csbcpb->cpb.aes_gcm.key,
262 sizeof(csbcpb->cpb.aes_ecb.key));
Marcelo Cerri79980432013-08-29 11:36:35 -0300263 if (enc)
Marcelo Cerridec0ed62013-08-29 11:36:39 -0300264 NX_CPB_FDM(csbcpb) |= NX_FDM_ENDE_ENCRYPT;
Marcelo Cerri79980432013-08-29 11:36:35 -0300265 else
Marcelo Cerridec0ed62013-08-29 11:36:39 -0300266 NX_CPB_FDM(csbcpb) &= ~NX_FDM_ENDE_ENCRYPT;
Kent Yoderf2a15f12012-05-14 11:05:59 +0000267
Leonidas S. Barbosae13a79a2014-10-28 15:47:48 -0200268 len = AES_BLOCK_SIZE;
269
Marcelo Cerridec0ed62013-08-29 11:36:39 -0300270 /* Encrypt the counter/IV */
271 in_sg = nx_build_sg_list(nx_ctx->in_sg, (u8 *) desc->info,
Leonidas S. Barbosae13a79a2014-10-28 15:47:48 -0200272 &len, nx_ctx->ap->sglen);
273
274 if (len != AES_BLOCK_SIZE)
275 return -EINVAL;
276
277 len = sizeof(out);
278 out_sg = nx_build_sg_list(nx_ctx->out_sg, (u8 *) out, &len,
Marcelo Cerridec0ed62013-08-29 11:36:39 -0300279 nx_ctx->ap->sglen);
Leonidas S. Barbosae13a79a2014-10-28 15:47:48 -0200280
281 if (len != sizeof(out))
282 return -EINVAL;
283
Marcelo Cerridec0ed62013-08-29 11:36:39 -0300284 nx_ctx->op.inlen = (nx_ctx->in_sg - in_sg) * sizeof(struct nx_sg);
285 nx_ctx->op.outlen = (nx_ctx->out_sg - out_sg) * sizeof(struct nx_sg);
286
287 rc = nx_hcall_sync(nx_ctx, &nx_ctx->op,
288 desc->flags & CRYPTO_TFM_REQ_MAY_SLEEP);
289 if (rc)
290 goto out;
291 atomic_inc(&(nx_ctx->stats->aes_ops));
292
293 /* Copy out the auth tag */
294 memcpy(csbcpb->cpb.aes_gcm.out_pat_or_mac, out,
295 crypto_aead_authsize(crypto_aead_reqtfm(req)));
Kent Yoderf2a15f12012-05-14 11:05:59 +0000296out:
Marcelo Cerridec0ed62013-08-29 11:36:39 -0300297 /* Restore XCBC mode */
298 csbcpb->cpb.hdr.mode = NX_MODE_AES_GCM;
299
300 /*
301 * ECB key uses the same region that GCM AAD and counter, so it's safe
302 * to just fill it with zeroes.
303 */
304 memset(csbcpb->cpb.aes_ecb.key, 0, sizeof(csbcpb->cpb.aes_ecb.key));
305
Kent Yoderf2a15f12012-05-14 11:05:59 +0000306 return rc;
307}
308
Herbert Xuc3d21942015-07-09 07:17:31 +0800309static int gcm_aes_nx_crypt(struct aead_request *req, int enc,
310 unsigned int assoclen)
Kent Yoderf2a15f12012-05-14 11:05:59 +0000311{
Herbert Xuc3d21942015-07-09 07:17:31 +0800312 struct nx_crypto_ctx *nx_ctx =
313 crypto_aead_ctx(crypto_aead_reqtfm(req));
Herbert Xu030f4e92015-07-07 17:30:25 +0800314 struct nx_gcm_rctx *rctx = aead_request_ctx(req);
Kent Yoderf2a15f12012-05-14 11:05:59 +0000315 struct nx_csbcpb *csbcpb = nx_ctx->csbcpb;
316 struct blkcipher_desc desc;
317 unsigned int nbytes = req->cryptlen;
Marcelo Cerri79980432013-08-29 11:36:35 -0300318 unsigned int processed = 0, to_process;
Marcelo Cerric8491632013-08-12 18:49:37 -0300319 unsigned long irq_flags;
Kent Yoderf2a15f12012-05-14 11:05:59 +0000320 int rc = -EINVAL;
321
Marcelo Cerric8491632013-08-12 18:49:37 -0300322 spin_lock_irqsave(&nx_ctx->lock, irq_flags);
323
Herbert Xu030f4e92015-07-07 17:30:25 +0800324 desc.info = rctx->iv;
Kent Yoderf2a15f12012-05-14 11:05:59 +0000325 /* initialize the counter */
326 *(u32 *)(desc.info + NX_GCM_CTR_OFFSET) = 1;
327
Kent Yoderf2a15f12012-05-14 11:05:59 +0000328 if (nbytes == 0) {
Herbert Xuc3d21942015-07-09 07:17:31 +0800329 if (assoclen == 0)
Marcelo Cerridec0ed62013-08-29 11:36:39 -0300330 rc = gcm_empty(req, &desc, enc);
331 else
Herbert Xuc3d21942015-07-09 07:17:31 +0800332 rc = gmac(req, &desc, assoclen);
Marcelo Cerridec0ed62013-08-29 11:36:39 -0300333 if (rc)
334 goto out;
335 else
336 goto mac;
Kent Yoderf2a15f12012-05-14 11:05:59 +0000337 }
338
Marcelo Cerri79980432013-08-29 11:36:35 -0300339 /* Process associated data */
Herbert Xuc3d21942015-07-09 07:17:31 +0800340 csbcpb->cpb.aes_gcm.bit_length_aad = assoclen * 8;
341 if (assoclen) {
342 rc = nx_gca(nx_ctx, req, csbcpb->cpb.aes_gcm.in_pat_or_aad,
343 assoclen);
Kent Yoderf2a15f12012-05-14 11:05:59 +0000344 if (rc)
345 goto out;
346 }
347
Marcelo Cerri79980432013-08-29 11:36:35 -0300348 /* Set flags for encryption */
349 NX_CPB_FDM(csbcpb) &= ~NX_FDM_CONTINUATION;
350 if (enc) {
Kent Yoderf2a15f12012-05-14 11:05:59 +0000351 NX_CPB_FDM(csbcpb) |= NX_FDM_ENDE_ENCRYPT;
Marcelo Cerri79980432013-08-29 11:36:35 -0300352 } else {
353 NX_CPB_FDM(csbcpb) &= ~NX_FDM_ENDE_ENCRYPT;
Kent Yoder1ad936e2013-04-12 17:13:59 +0000354 nbytes -= crypto_aead_authsize(crypto_aead_reqtfm(req));
Marcelo Cerri79980432013-08-29 11:36:35 -0300355 }
Kent Yoderf2a15f12012-05-14 11:05:59 +0000356
Marcelo Cerri79980432013-08-29 11:36:35 -0300357 do {
Leonidas S. Barbosae13a79a2014-10-28 15:47:48 -0200358 to_process = nbytes - processed;
359
360 csbcpb->cpb.aes_gcm.bit_length_data = nbytes * 8;
Leonidas S. Barbosae13a79a2014-10-28 15:47:48 -0200361 rc = nx_build_sg_lists(nx_ctx, &desc, req->dst,
Herbert Xu201f28f2015-06-16 13:54:21 +0800362 req->src, &to_process,
363 processed + req->assoclen,
Leonidas S. Barbosae13a79a2014-10-28 15:47:48 -0200364 csbcpb->cpb.aes_gcm.iv_or_cnt);
365
366 if (rc)
367 goto out;
Kent Yoderf2a15f12012-05-14 11:05:59 +0000368
Marcelo Cerri79980432013-08-29 11:36:35 -0300369 if ((to_process + processed) < nbytes)
370 NX_CPB_FDM(csbcpb) |= NX_FDM_INTERMEDIATE;
371 else
372 NX_CPB_FDM(csbcpb) &= ~NX_FDM_INTERMEDIATE;
Kent Yoderf2a15f12012-05-14 11:05:59 +0000373
Marcelo Cerri79980432013-08-29 11:36:35 -0300374
375 rc = nx_hcall_sync(nx_ctx, &nx_ctx->op,
376 req->base.flags & CRYPTO_TFM_REQ_MAY_SLEEP);
377 if (rc)
378 goto out;
379
380 memcpy(desc.info, csbcpb->cpb.aes_gcm.out_cnt, AES_BLOCK_SIZE);
381 memcpy(csbcpb->cpb.aes_gcm.in_pat_or_aad,
382 csbcpb->cpb.aes_gcm.out_pat_or_mac, AES_BLOCK_SIZE);
383 memcpy(csbcpb->cpb.aes_gcm.in_s0,
384 csbcpb->cpb.aes_gcm.out_s0, AES_BLOCK_SIZE);
385
386 NX_CPB_FDM(csbcpb) |= NX_FDM_CONTINUATION;
387
388 atomic_inc(&(nx_ctx->stats->aes_ops));
389 atomic64_add(csbcpb->csb.processed_byte_count,
390 &(nx_ctx->stats->aes_bytes));
391
392 processed += to_process;
393 } while (processed < nbytes);
Kent Yoderf2a15f12012-05-14 11:05:59 +0000394
Marcelo Cerridec0ed62013-08-29 11:36:39 -0300395mac:
Kent Yoderf2a15f12012-05-14 11:05:59 +0000396 if (enc) {
397 /* copy out the auth tag */
Herbert Xu201f28f2015-06-16 13:54:21 +0800398 scatterwalk_map_and_copy(
399 csbcpb->cpb.aes_gcm.out_pat_or_mac,
400 req->dst, req->assoclen + nbytes,
401 crypto_aead_authsize(crypto_aead_reqtfm(req)),
402 SCATTERWALK_TO_SG);
jmlatten@linux.vnet.ibm.comb4eba0c2013-08-14 17:17:57 -0500403 } else {
Kent Yoderf2a15f12012-05-14 11:05:59 +0000404 u8 *itag = nx_ctx->priv.gcm.iauth_tag;
405 u8 *otag = csbcpb->cpb.aes_gcm.out_pat_or_mac;
406
Herbert Xu201f28f2015-06-16 13:54:21 +0800407 scatterwalk_map_and_copy(
408 itag, req->src, req->assoclen + nbytes,
409 crypto_aead_authsize(crypto_aead_reqtfm(req)),
410 SCATTERWALK_FROM_SG);
David Gstircb8affb2015-11-15 17:14:41 +0100411 rc = crypto_memneq(itag, otag,
Kent Yoderf2a15f12012-05-14 11:05:59 +0000412 crypto_aead_authsize(crypto_aead_reqtfm(req))) ?
413 -EBADMSG : 0;
414 }
415out:
Marcelo Cerric8491632013-08-12 18:49:37 -0300416 spin_unlock_irqrestore(&nx_ctx->lock, irq_flags);
Kent Yoderf2a15f12012-05-14 11:05:59 +0000417 return rc;
418}
419
420static int gcm_aes_nx_encrypt(struct aead_request *req)
421{
Herbert Xu030f4e92015-07-07 17:30:25 +0800422 struct nx_gcm_rctx *rctx = aead_request_ctx(req);
423 char *iv = rctx->iv;
Kent Yoderf2a15f12012-05-14 11:05:59 +0000424
Corentin LABBEfdd0f3d2017-08-22 10:08:11 +0200425 memcpy(iv, req->iv, GCM_AES_IV_SIZE);
Kent Yoderf2a15f12012-05-14 11:05:59 +0000426
Herbert Xuc3d21942015-07-09 07:17:31 +0800427 return gcm_aes_nx_crypt(req, 1, req->assoclen);
Kent Yoderf2a15f12012-05-14 11:05:59 +0000428}
429
430static int gcm_aes_nx_decrypt(struct aead_request *req)
431{
Herbert Xu030f4e92015-07-07 17:30:25 +0800432 struct nx_gcm_rctx *rctx = aead_request_ctx(req);
433 char *iv = rctx->iv;
Kent Yoderf2a15f12012-05-14 11:05:59 +0000434
Corentin LABBEfdd0f3d2017-08-22 10:08:11 +0200435 memcpy(iv, req->iv, GCM_AES_IV_SIZE);
Kent Yoderf2a15f12012-05-14 11:05:59 +0000436
Herbert Xuc3d21942015-07-09 07:17:31 +0800437 return gcm_aes_nx_crypt(req, 0, req->assoclen);
Kent Yoderf2a15f12012-05-14 11:05:59 +0000438}
439
440static int gcm4106_aes_nx_encrypt(struct aead_request *req)
441{
Herbert Xuc3d21942015-07-09 07:17:31 +0800442 struct nx_crypto_ctx *nx_ctx =
443 crypto_aead_ctx(crypto_aead_reqtfm(req));
Herbert Xu030f4e92015-07-07 17:30:25 +0800444 struct nx_gcm_rctx *rctx = aead_request_ctx(req);
445 char *iv = rctx->iv;
Kent Yoderf2a15f12012-05-14 11:05:59 +0000446 char *nonce = nx_ctx->priv.gcm.nonce;
447
448 memcpy(iv, nonce, NX_GCM4106_NONCE_LEN);
449 memcpy(iv + NX_GCM4106_NONCE_LEN, req->iv, 8);
450
Herbert Xuc3d21942015-07-09 07:17:31 +0800451 if (req->assoclen < 8)
452 return -EINVAL;
453
454 return gcm_aes_nx_crypt(req, 1, req->assoclen - 8);
Kent Yoderf2a15f12012-05-14 11:05:59 +0000455}
456
457static int gcm4106_aes_nx_decrypt(struct aead_request *req)
458{
Herbert Xuc3d21942015-07-09 07:17:31 +0800459 struct nx_crypto_ctx *nx_ctx =
460 crypto_aead_ctx(crypto_aead_reqtfm(req));
Herbert Xu030f4e92015-07-07 17:30:25 +0800461 struct nx_gcm_rctx *rctx = aead_request_ctx(req);
462 char *iv = rctx->iv;
Kent Yoderf2a15f12012-05-14 11:05:59 +0000463 char *nonce = nx_ctx->priv.gcm.nonce;
464
465 memcpy(iv, nonce, NX_GCM4106_NONCE_LEN);
466 memcpy(iv + NX_GCM4106_NONCE_LEN, req->iv, 8);
467
Herbert Xuc3d21942015-07-09 07:17:31 +0800468 if (req->assoclen < 8)
469 return -EINVAL;
470
471 return gcm_aes_nx_crypt(req, 0, req->assoclen - 8);
Kent Yoderf2a15f12012-05-14 11:05:59 +0000472}
473
474/* tell the block cipher walk routines that this is a stream cipher by
475 * setting cra_blocksize to 1. Even using blkcipher_walk_virt_block
476 * during encrypt/decrypt doesn't solve this problem, because it calls
477 * blkcipher_walk_done under the covers, which doesn't use walk->blocksize,
478 * but instead uses this tfm->blocksize. */
Herbert Xu201f28f2015-06-16 13:54:21 +0800479struct aead_alg nx_gcm_aes_alg = {
480 .base = {
481 .cra_name = "gcm(aes)",
482 .cra_driver_name = "gcm-aes-nx",
483 .cra_priority = 300,
484 .cra_blocksize = 1,
485 .cra_ctxsize = sizeof(struct nx_crypto_ctx),
486 .cra_module = THIS_MODULE,
487 },
488 .init = nx_crypto_ctx_aes_gcm_init,
489 .exit = nx_crypto_ctx_aead_exit,
Corentin LABBEfdd0f3d2017-08-22 10:08:11 +0200490 .ivsize = GCM_AES_IV_SIZE,
Herbert Xu201f28f2015-06-16 13:54:21 +0800491 .maxauthsize = AES_BLOCK_SIZE,
492 .setkey = gcm_aes_nx_set_key,
493 .encrypt = gcm_aes_nx_encrypt,
494 .decrypt = gcm_aes_nx_decrypt,
Kent Yoderf2a15f12012-05-14 11:05:59 +0000495};
496
Herbert Xu201f28f2015-06-16 13:54:21 +0800497struct aead_alg nx_gcm4106_aes_alg = {
498 .base = {
499 .cra_name = "rfc4106(gcm(aes))",
500 .cra_driver_name = "rfc4106-gcm-aes-nx",
501 .cra_priority = 300,
502 .cra_blocksize = 1,
503 .cra_ctxsize = sizeof(struct nx_crypto_ctx),
504 .cra_module = THIS_MODULE,
505 },
506 .init = nx_crypto_ctx_aes_gcm_init,
507 .exit = nx_crypto_ctx_aead_exit,
Corentin LABBEfdd0f3d2017-08-22 10:08:11 +0200508 .ivsize = GCM_RFC4106_IV_SIZE,
Herbert Xu201f28f2015-06-16 13:54:21 +0800509 .maxauthsize = AES_BLOCK_SIZE,
510 .setkey = gcm4106_aes_nx_set_key,
511 .setauthsize = gcm4106_aes_nx_setauthsize,
512 .encrypt = gcm4106_aes_nx_encrypt,
513 .decrypt = gcm4106_aes_nx_decrypt,
Kent Yoderf2a15f12012-05-14 11:05:59 +0000514};