blob: 7bbc8b4ef2e99326201fd02a4ddc36e3c9d14f82 [file] [log] [blame]
Herbert Xub5b7f082007-04-16 20:48:54 +10001/*
2 * Asynchronous block chaining cipher operations.
Richard Hartmannc4ede642010-02-16 20:23:37 +08003 *
Herbert Xub5b7f082007-04-16 20:48:54 +10004 * This is the asynchronous version of blkcipher.c indicating completion
5 * via a callback.
6 *
7 * Copyright (c) 2006 Herbert Xu <herbert@gondor.apana.org.au>
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the Free
Richard Hartmannc4ede642010-02-16 20:23:37 +080011 * Software Foundation; either version 2 of the License, or (at your option)
Herbert Xub5b7f082007-04-16 20:48:54 +100012 * any later version.
13 *
14 */
15
Herbert Xu378f4f52007-12-17 20:07:31 +080016#include <crypto/internal/skcipher.h>
Herbert Xu0b67fb62009-06-25 18:43:48 +080017#include <linux/cpumask.h>
Herbert Xu378f4f52007-12-17 20:07:31 +080018#include <linux/err.h>
Herbert Xu791b4d52007-08-23 16:23:01 +080019#include <linux/kernel.h>
Herbert Xub9c55aa2007-12-04 12:46:48 +110020#include <linux/rtnetlink.h>
21#include <linux/sched.h>
Herbert Xu791b4d52007-08-23 16:23:01 +080022#include <linux/slab.h>
Herbert Xub5b7f082007-04-16 20:48:54 +100023#include <linux/seq_file.h>
Steffen Klassert29ffc872011-09-27 07:42:32 +020024#include <linux/cryptouser.h>
25#include <net/netlink.h>
Herbert Xub5b7f082007-04-16 20:48:54 +100026
David S. Millerbf060992010-05-19 14:13:07 +100027#include <crypto/scatterwalk.h>
28
Herbert Xu378f4f52007-12-17 20:07:31 +080029#include "internal.h"
30
David S. Millerbf060992010-05-19 14:13:07 +100031struct ablkcipher_buffer {
32 struct list_head entry;
33 struct scatter_walk dst;
34 unsigned int len;
35 void *data;
36};
37
38enum {
39 ABLKCIPHER_WALK_SLOW = 1 << 0,
40};
41
42static inline void ablkcipher_buffer_write(struct ablkcipher_buffer *p)
43{
44 scatterwalk_copychunks(p->data, &p->dst, p->len, 1);
45}
46
47void __ablkcipher_walk_complete(struct ablkcipher_walk *walk)
48{
49 struct ablkcipher_buffer *p, *tmp;
50
51 list_for_each_entry_safe(p, tmp, &walk->buffers, entry) {
52 ablkcipher_buffer_write(p);
53 list_del(&p->entry);
54 kfree(p);
55 }
56}
57EXPORT_SYMBOL_GPL(__ablkcipher_walk_complete);
58
59static inline void ablkcipher_queue_write(struct ablkcipher_walk *walk,
60 struct ablkcipher_buffer *p)
61{
62 p->dst = walk->out;
63 list_add_tail(&p->entry, &walk->buffers);
64}
65
66/* Get a spot of the specified length that does not straddle a page.
67 * The caller needs to ensure that there is enough space for this operation.
68 */
69static inline u8 *ablkcipher_get_spot(u8 *start, unsigned int len)
70{
71 u8 *end_page = (u8 *)(((unsigned long)(start + len - 1)) & PAGE_MASK);
Joshua I. Jamesa861afb2014-12-05 14:06:16 +090072
David S. Millerbf060992010-05-19 14:13:07 +100073 return max(start, end_page);
74}
75
76static inline unsigned int ablkcipher_done_slow(struct ablkcipher_walk *walk,
77 unsigned int bsize)
78{
79 unsigned int n = bsize;
80
81 for (;;) {
82 unsigned int len_this_page = scatterwalk_pagelen(&walk->out);
83
84 if (len_this_page > n)
85 len_this_page = n;
86 scatterwalk_advance(&walk->out, n);
87 if (n == len_this_page)
88 break;
89 n -= len_this_page;
Joshua I. Jamesa861afb2014-12-05 14:06:16 +090090 scatterwalk_start(&walk->out, scatterwalk_sg_next(
91 walk->out.sg));
David S. Millerbf060992010-05-19 14:13:07 +100092 }
93
94 return bsize;
95}
96
97static inline unsigned int ablkcipher_done_fast(struct ablkcipher_walk *walk,
98 unsigned int n)
99{
100 scatterwalk_advance(&walk->in, n);
101 scatterwalk_advance(&walk->out, n);
102
103 return n;
104}
105
106static int ablkcipher_walk_next(struct ablkcipher_request *req,
107 struct ablkcipher_walk *walk);
108
109int ablkcipher_walk_done(struct ablkcipher_request *req,
110 struct ablkcipher_walk *walk, int err)
111{
112 struct crypto_tfm *tfm = req->base.tfm;
113 unsigned int nbytes = 0;
114
115 if (likely(err >= 0)) {
116 unsigned int n = walk->nbytes - err;
117
118 if (likely(!(walk->flags & ABLKCIPHER_WALK_SLOW)))
119 n = ablkcipher_done_fast(walk, n);
120 else if (WARN_ON(err)) {
121 err = -EINVAL;
122 goto err;
123 } else
124 n = ablkcipher_done_slow(walk, n);
125
126 nbytes = walk->total - n;
127 err = 0;
128 }
129
130 scatterwalk_done(&walk->in, 0, nbytes);
131 scatterwalk_done(&walk->out, 1, nbytes);
132
133err:
134 walk->total = nbytes;
135 walk->nbytes = nbytes;
136
137 if (nbytes) {
138 crypto_yield(req->base.flags);
139 return ablkcipher_walk_next(req, walk);
140 }
141
142 if (walk->iv != req->info)
143 memcpy(req->info, walk->iv, tfm->crt_ablkcipher.ivsize);
Davidlohr Bueso33c7c0f2011-01-29 15:09:43 +1100144 kfree(walk->iv_buffer);
David S. Millerbf060992010-05-19 14:13:07 +1000145
146 return err;
147}
148EXPORT_SYMBOL_GPL(ablkcipher_walk_done);
149
150static inline int ablkcipher_next_slow(struct ablkcipher_request *req,
151 struct ablkcipher_walk *walk,
152 unsigned int bsize,
153 unsigned int alignmask,
154 void **src_p, void **dst_p)
155{
156 unsigned aligned_bsize = ALIGN(bsize, alignmask + 1);
157 struct ablkcipher_buffer *p;
158 void *src, *dst, *base;
159 unsigned int n;
160
161 n = ALIGN(sizeof(struct ablkcipher_buffer), alignmask + 1);
162 n += (aligned_bsize * 3 - (alignmask + 1) +
163 (alignmask & ~(crypto_tfm_ctx_alignment() - 1)));
164
165 p = kmalloc(n, GFP_ATOMIC);
166 if (!p)
Jiri Slaby2716fbf2010-06-23 20:01:45 +1000167 return ablkcipher_walk_done(req, walk, -ENOMEM);
David S. Millerbf060992010-05-19 14:13:07 +1000168
169 base = p + 1;
170
171 dst = (u8 *)ALIGN((unsigned long)base, alignmask + 1);
172 src = dst = ablkcipher_get_spot(dst, bsize);
173
174 p->len = bsize;
175 p->data = dst;
176
177 scatterwalk_copychunks(src, &walk->in, bsize, 0);
178
179 ablkcipher_queue_write(walk, p);
180
181 walk->nbytes = bsize;
182 walk->flags |= ABLKCIPHER_WALK_SLOW;
183
184 *src_p = src;
185 *dst_p = dst;
186
187 return 0;
188}
189
190static inline int ablkcipher_copy_iv(struct ablkcipher_walk *walk,
191 struct crypto_tfm *tfm,
192 unsigned int alignmask)
193{
194 unsigned bs = walk->blocksize;
195 unsigned int ivsize = tfm->crt_ablkcipher.ivsize;
196 unsigned aligned_bs = ALIGN(bs, alignmask + 1);
197 unsigned int size = aligned_bs * 2 + ivsize + max(aligned_bs, ivsize) -
198 (alignmask + 1);
199 u8 *iv;
200
201 size += alignmask & ~(crypto_tfm_ctx_alignment() - 1);
202 walk->iv_buffer = kmalloc(size, GFP_ATOMIC);
203 if (!walk->iv_buffer)
204 return -ENOMEM;
205
206 iv = (u8 *)ALIGN((unsigned long)walk->iv_buffer, alignmask + 1);
207 iv = ablkcipher_get_spot(iv, bs) + aligned_bs;
208 iv = ablkcipher_get_spot(iv, bs) + aligned_bs;
209 iv = ablkcipher_get_spot(iv, ivsize);
210
211 walk->iv = memcpy(iv, walk->iv, ivsize);
212 return 0;
213}
214
215static inline int ablkcipher_next_fast(struct ablkcipher_request *req,
216 struct ablkcipher_walk *walk)
217{
218 walk->src.page = scatterwalk_page(&walk->in);
219 walk->src.offset = offset_in_page(walk->in.offset);
220 walk->dst.page = scatterwalk_page(&walk->out);
221 walk->dst.offset = offset_in_page(walk->out.offset);
222
223 return 0;
224}
225
226static int ablkcipher_walk_next(struct ablkcipher_request *req,
227 struct ablkcipher_walk *walk)
228{
229 struct crypto_tfm *tfm = req->base.tfm;
230 unsigned int alignmask, bsize, n;
231 void *src, *dst;
232 int err;
233
234 alignmask = crypto_tfm_alg_alignmask(tfm);
235 n = walk->total;
236 if (unlikely(n < crypto_tfm_alg_blocksize(tfm))) {
237 req->base.flags |= CRYPTO_TFM_RES_BAD_BLOCK_LEN;
238 return ablkcipher_walk_done(req, walk, -EINVAL);
239 }
240
241 walk->flags &= ~ABLKCIPHER_WALK_SLOW;
242 src = dst = NULL;
243
244 bsize = min(walk->blocksize, n);
245 n = scatterwalk_clamp(&walk->in, n);
246 n = scatterwalk_clamp(&walk->out, n);
247
248 if (n < bsize ||
249 !scatterwalk_aligned(&walk->in, alignmask) ||
250 !scatterwalk_aligned(&walk->out, alignmask)) {
251 err = ablkcipher_next_slow(req, walk, bsize, alignmask,
252 &src, &dst);
253 goto set_phys_lowmem;
254 }
255
256 walk->nbytes = n;
257
258 return ablkcipher_next_fast(req, walk);
259
260set_phys_lowmem:
261 if (err >= 0) {
262 walk->src.page = virt_to_page(src);
263 walk->dst.page = virt_to_page(dst);
264 walk->src.offset = ((unsigned long)src & (PAGE_SIZE - 1));
265 walk->dst.offset = ((unsigned long)dst & (PAGE_SIZE - 1));
266 }
267
268 return err;
269}
270
271static int ablkcipher_walk_first(struct ablkcipher_request *req,
272 struct ablkcipher_walk *walk)
273{
274 struct crypto_tfm *tfm = req->base.tfm;
275 unsigned int alignmask;
276
277 alignmask = crypto_tfm_alg_alignmask(tfm);
278 if (WARN_ON_ONCE(in_irq()))
279 return -EDEADLK;
280
281 walk->nbytes = walk->total;
282 if (unlikely(!walk->total))
283 return 0;
284
285 walk->iv_buffer = NULL;
286 walk->iv = req->info;
287 if (unlikely(((unsigned long)walk->iv & alignmask))) {
288 int err = ablkcipher_copy_iv(walk, tfm, alignmask);
Joshua I. Jamesa861afb2014-12-05 14:06:16 +0900289
David S. Millerbf060992010-05-19 14:13:07 +1000290 if (err)
291 return err;
292 }
293
294 scatterwalk_start(&walk->in, walk->in.sg);
295 scatterwalk_start(&walk->out, walk->out.sg);
296
297 return ablkcipher_walk_next(req, walk);
298}
299
300int ablkcipher_walk_phys(struct ablkcipher_request *req,
301 struct ablkcipher_walk *walk)
302{
303 walk->blocksize = crypto_tfm_alg_blocksize(req->base.tfm);
304 return ablkcipher_walk_first(req, walk);
305}
306EXPORT_SYMBOL_GPL(ablkcipher_walk_phys);
307
Herbert Xu791b4d52007-08-23 16:23:01 +0800308static int setkey_unaligned(struct crypto_ablkcipher *tfm, const u8 *key,
309 unsigned int keylen)
Sebastian Siewiorca7c3932007-05-19 19:51:21 +1000310{
311 struct ablkcipher_alg *cipher = crypto_ablkcipher_alg(tfm);
312 unsigned long alignmask = crypto_ablkcipher_alignmask(tfm);
313 int ret;
314 u8 *buffer, *alignbuffer;
315 unsigned long absize;
316
317 absize = keylen + alignmask;
318 buffer = kmalloc(absize, GFP_ATOMIC);
319 if (!buffer)
320 return -ENOMEM;
321
322 alignbuffer = (u8 *)ALIGN((unsigned long)buffer, alignmask + 1);
323 memcpy(alignbuffer, key, keylen);
324 ret = cipher->setkey(tfm, alignbuffer, keylen);
Sebastian Siewior06817172007-08-03 20:33:47 +0800325 memset(alignbuffer, 0, keylen);
Sebastian Siewiorca7c3932007-05-19 19:51:21 +1000326 kfree(buffer);
327 return ret;
328}
329
Herbert Xub5b7f082007-04-16 20:48:54 +1000330static int setkey(struct crypto_ablkcipher *tfm, const u8 *key,
331 unsigned int keylen)
332{
333 struct ablkcipher_alg *cipher = crypto_ablkcipher_alg(tfm);
Sebastian Siewiorca7c3932007-05-19 19:51:21 +1000334 unsigned long alignmask = crypto_ablkcipher_alignmask(tfm);
Herbert Xub5b7f082007-04-16 20:48:54 +1000335
336 if (keylen < cipher->min_keysize || keylen > cipher->max_keysize) {
337 crypto_ablkcipher_set_flags(tfm, CRYPTO_TFM_RES_BAD_KEY_LEN);
338 return -EINVAL;
339 }
340
Sebastian Siewiorca7c3932007-05-19 19:51:21 +1000341 if ((unsigned long)key & alignmask)
342 return setkey_unaligned(tfm, key, keylen);
343
Herbert Xub5b7f082007-04-16 20:48:54 +1000344 return cipher->setkey(tfm, key, keylen);
345}
346
347static unsigned int crypto_ablkcipher_ctxsize(struct crypto_alg *alg, u32 type,
348 u32 mask)
349{
350 return alg->cra_ctxsize;
351}
352
Herbert Xub9c55aa2007-12-04 12:46:48 +1100353int skcipher_null_givencrypt(struct skcipher_givcrypt_request *req)
354{
355 return crypto_ablkcipher_encrypt(&req->creq);
356}
357
358int skcipher_null_givdecrypt(struct skcipher_givcrypt_request *req)
359{
360 return crypto_ablkcipher_decrypt(&req->creq);
361}
362
Herbert Xub5b7f082007-04-16 20:48:54 +1000363static int crypto_init_ablkcipher_ops(struct crypto_tfm *tfm, u32 type,
364 u32 mask)
365{
366 struct ablkcipher_alg *alg = &tfm->__crt_alg->cra_ablkcipher;
367 struct ablkcipher_tfm *crt = &tfm->crt_ablkcipher;
368
369 if (alg->ivsize > PAGE_SIZE / 8)
370 return -EINVAL;
371
372 crt->setkey = setkey;
373 crt->encrypt = alg->encrypt;
374 crt->decrypt = alg->decrypt;
Herbert Xub9c55aa2007-12-04 12:46:48 +1100375 if (!alg->ivsize) {
376 crt->givencrypt = skcipher_null_givencrypt;
377 crt->givdecrypt = skcipher_null_givdecrypt;
378 }
Herbert Xuecfc4322007-12-05 21:08:36 +1100379 crt->base = __crypto_ablkcipher_cast(tfm);
Herbert Xub5b7f082007-04-16 20:48:54 +1000380 crt->ivsize = alg->ivsize;
381
382 return 0;
383}
384
Herbert Xu3acc8472011-11-03 23:46:07 +1100385#ifdef CONFIG_NET
Steffen Klassert29ffc872011-09-27 07:42:32 +0200386static int crypto_ablkcipher_report(struct sk_buff *skb, struct crypto_alg *alg)
387{
388 struct crypto_report_blkcipher rblkcipher;
389
Mathias Krause9a5467bf2013-02-05 18:19:13 +0100390 strncpy(rblkcipher.type, "ablkcipher", sizeof(rblkcipher.type));
391 strncpy(rblkcipher.geniv, alg->cra_ablkcipher.geniv ?: "<default>",
392 sizeof(rblkcipher.geniv));
Steffen Klassert29ffc872011-09-27 07:42:32 +0200393
394 rblkcipher.blocksize = alg->cra_blocksize;
395 rblkcipher.min_keysize = alg->cra_ablkcipher.min_keysize;
396 rblkcipher.max_keysize = alg->cra_ablkcipher.max_keysize;
397 rblkcipher.ivsize = alg->cra_ablkcipher.ivsize;
398
David S. Miller6662df32012-04-01 20:19:05 -0400399 if (nla_put(skb, CRYPTOCFGA_REPORT_BLKCIPHER,
400 sizeof(struct crypto_report_blkcipher), &rblkcipher))
401 goto nla_put_failure;
Steffen Klassert29ffc872011-09-27 07:42:32 +0200402 return 0;
403
404nla_put_failure:
405 return -EMSGSIZE;
406}
Herbert Xu3acc8472011-11-03 23:46:07 +1100407#else
408static int crypto_ablkcipher_report(struct sk_buff *skb, struct crypto_alg *alg)
409{
410 return -ENOSYS;
411}
412#endif
Steffen Klassert29ffc872011-09-27 07:42:32 +0200413
Herbert Xub5b7f082007-04-16 20:48:54 +1000414static void crypto_ablkcipher_show(struct seq_file *m, struct crypto_alg *alg)
415 __attribute__ ((unused));
416static void crypto_ablkcipher_show(struct seq_file *m, struct crypto_alg *alg)
417{
418 struct ablkcipher_alg *ablkcipher = &alg->cra_ablkcipher;
419
420 seq_printf(m, "type : ablkcipher\n");
Herbert Xu189ed662007-12-14 22:29:37 +0800421 seq_printf(m, "async : %s\n", alg->cra_flags & CRYPTO_ALG_ASYNC ?
422 "yes" : "no");
Herbert Xub5b7f082007-04-16 20:48:54 +1000423 seq_printf(m, "blocksize : %u\n", alg->cra_blocksize);
424 seq_printf(m, "min keysize : %u\n", ablkcipher->min_keysize);
425 seq_printf(m, "max keysize : %u\n", ablkcipher->max_keysize);
426 seq_printf(m, "ivsize : %u\n", ablkcipher->ivsize);
Herbert Xu23508e12007-11-27 21:33:24 +0800427 seq_printf(m, "geniv : %s\n", ablkcipher->geniv ?: "<default>");
Herbert Xub5b7f082007-04-16 20:48:54 +1000428}
429
430const struct crypto_type crypto_ablkcipher_type = {
431 .ctxsize = crypto_ablkcipher_ctxsize,
432 .init = crypto_init_ablkcipher_ops,
433#ifdef CONFIG_PROC_FS
434 .show = crypto_ablkcipher_show,
435#endif
Steffen Klassert29ffc872011-09-27 07:42:32 +0200436 .report = crypto_ablkcipher_report,
Herbert Xub5b7f082007-04-16 20:48:54 +1000437};
438EXPORT_SYMBOL_GPL(crypto_ablkcipher_type);
439
Herbert Xu61da88e2007-12-17 21:51:27 +0800440static int no_givdecrypt(struct skcipher_givcrypt_request *req)
441{
442 return -ENOSYS;
443}
444
445static int crypto_init_givcipher_ops(struct crypto_tfm *tfm, u32 type,
446 u32 mask)
447{
448 struct ablkcipher_alg *alg = &tfm->__crt_alg->cra_ablkcipher;
449 struct ablkcipher_tfm *crt = &tfm->crt_ablkcipher;
450
451 if (alg->ivsize > PAGE_SIZE / 8)
452 return -EINVAL;
453
Herbert Xuecfc4322007-12-05 21:08:36 +1100454 crt->setkey = tfm->__crt_alg->cra_flags & CRYPTO_ALG_GENIV ?
455 alg->setkey : setkey;
Herbert Xu61da88e2007-12-17 21:51:27 +0800456 crt->encrypt = alg->encrypt;
457 crt->decrypt = alg->decrypt;
458 crt->givencrypt = alg->givencrypt;
459 crt->givdecrypt = alg->givdecrypt ?: no_givdecrypt;
Herbert Xuecfc4322007-12-05 21:08:36 +1100460 crt->base = __crypto_ablkcipher_cast(tfm);
Herbert Xu61da88e2007-12-17 21:51:27 +0800461 crt->ivsize = alg->ivsize;
462
463 return 0;
464}
465
Herbert Xu3acc8472011-11-03 23:46:07 +1100466#ifdef CONFIG_NET
Steffen Klassert3e29c102011-09-27 07:43:24 +0200467static int crypto_givcipher_report(struct sk_buff *skb, struct crypto_alg *alg)
468{
469 struct crypto_report_blkcipher rblkcipher;
470
Mathias Krause9a5467bf2013-02-05 18:19:13 +0100471 strncpy(rblkcipher.type, "givcipher", sizeof(rblkcipher.type));
472 strncpy(rblkcipher.geniv, alg->cra_ablkcipher.geniv ?: "<built-in>",
473 sizeof(rblkcipher.geniv));
Steffen Klassert3e29c102011-09-27 07:43:24 +0200474
475 rblkcipher.blocksize = alg->cra_blocksize;
476 rblkcipher.min_keysize = alg->cra_ablkcipher.min_keysize;
477 rblkcipher.max_keysize = alg->cra_ablkcipher.max_keysize;
478 rblkcipher.ivsize = alg->cra_ablkcipher.ivsize;
479
David S. Miller6662df32012-04-01 20:19:05 -0400480 if (nla_put(skb, CRYPTOCFGA_REPORT_BLKCIPHER,
481 sizeof(struct crypto_report_blkcipher), &rblkcipher))
482 goto nla_put_failure;
Steffen Klassert3e29c102011-09-27 07:43:24 +0200483 return 0;
484
485nla_put_failure:
486 return -EMSGSIZE;
487}
Herbert Xu3acc8472011-11-03 23:46:07 +1100488#else
489static int crypto_givcipher_report(struct sk_buff *skb, struct crypto_alg *alg)
490{
491 return -ENOSYS;
492}
493#endif
Steffen Klassert3e29c102011-09-27 07:43:24 +0200494
Herbert Xu61da88e2007-12-17 21:51:27 +0800495static void crypto_givcipher_show(struct seq_file *m, struct crypto_alg *alg)
496 __attribute__ ((unused));
497static void crypto_givcipher_show(struct seq_file *m, struct crypto_alg *alg)
498{
499 struct ablkcipher_alg *ablkcipher = &alg->cra_ablkcipher;
500
501 seq_printf(m, "type : givcipher\n");
Herbert Xu189ed662007-12-14 22:29:37 +0800502 seq_printf(m, "async : %s\n", alg->cra_flags & CRYPTO_ALG_ASYNC ?
503 "yes" : "no");
Herbert Xu61da88e2007-12-17 21:51:27 +0800504 seq_printf(m, "blocksize : %u\n", alg->cra_blocksize);
505 seq_printf(m, "min keysize : %u\n", ablkcipher->min_keysize);
506 seq_printf(m, "max keysize : %u\n", ablkcipher->max_keysize);
507 seq_printf(m, "ivsize : %u\n", ablkcipher->ivsize);
Herbert Xu23508e12007-11-27 21:33:24 +0800508 seq_printf(m, "geniv : %s\n", ablkcipher->geniv ?: "<built-in>");
Herbert Xu61da88e2007-12-17 21:51:27 +0800509}
510
511const struct crypto_type crypto_givcipher_type = {
512 .ctxsize = crypto_ablkcipher_ctxsize,
513 .init = crypto_init_givcipher_ops,
514#ifdef CONFIG_PROC_FS
515 .show = crypto_givcipher_show,
516#endif
Steffen Klassert3e29c102011-09-27 07:43:24 +0200517 .report = crypto_givcipher_report,
Herbert Xu61da88e2007-12-17 21:51:27 +0800518};
519EXPORT_SYMBOL_GPL(crypto_givcipher_type);
520
Herbert Xuecfc4322007-12-05 21:08:36 +1100521const char *crypto_default_geniv(const struct crypto_alg *alg)
522{
Herbert Xu63b5ac22009-08-14 22:55:35 +1000523 if (((alg->cra_flags & CRYPTO_ALG_TYPE_MASK) ==
524 CRYPTO_ALG_TYPE_BLKCIPHER ? alg->cra_blkcipher.ivsize :
525 alg->cra_ablkcipher.ivsize) !=
526 alg->cra_blocksize)
527 return "chainiv";
528
Herbert Xuf3d53ed2013-10-30 09:51:45 +0800529 return "eseqiv";
Herbert Xuecfc4322007-12-05 21:08:36 +1100530}
531
Herbert Xub9c55aa2007-12-04 12:46:48 +1100532static int crypto_givcipher_default(struct crypto_alg *alg, u32 type, u32 mask)
533{
534 struct rtattr *tb[3];
535 struct {
536 struct rtattr attr;
537 struct crypto_attr_type data;
538 } ptype;
539 struct {
540 struct rtattr attr;
541 struct crypto_attr_alg data;
542 } palg;
543 struct crypto_template *tmpl;
544 struct crypto_instance *inst;
545 struct crypto_alg *larval;
546 const char *geniv;
547 int err;
548
549 larval = crypto_larval_lookup(alg->cra_driver_name,
Herbert Xu435578a2009-06-25 14:46:31 +0800550 (type & ~CRYPTO_ALG_TYPE_MASK) |
Herbert Xub9c55aa2007-12-04 12:46:48 +1100551 CRYPTO_ALG_TYPE_GIVCIPHER,
Herbert Xu435578a2009-06-25 14:46:31 +0800552 mask | CRYPTO_ALG_TYPE_MASK);
Herbert Xub9c55aa2007-12-04 12:46:48 +1100553 err = PTR_ERR(larval);
554 if (IS_ERR(larval))
555 goto out;
556
557 err = -EAGAIN;
558 if (!crypto_is_larval(larval))
559 goto drop_larval;
560
561 ptype.attr.rta_len = sizeof(ptype);
562 ptype.attr.rta_type = CRYPTOA_TYPE;
563 ptype.data.type = type | CRYPTO_ALG_GENIV;
564 /* GENIV tells the template that we're making a default geniv. */
565 ptype.data.mask = mask | CRYPTO_ALG_GENIV;
566 tb[0] = &ptype.attr;
567
568 palg.attr.rta_len = sizeof(palg);
569 palg.attr.rta_type = CRYPTOA_ALG;
570 /* Must use the exact name to locate ourselves. */
571 memcpy(palg.data.name, alg->cra_driver_name, CRYPTO_MAX_ALG_NAME);
572 tb[1] = &palg.attr;
573
574 tb[2] = NULL;
575
576 if ((alg->cra_flags & CRYPTO_ALG_TYPE_MASK) ==
577 CRYPTO_ALG_TYPE_BLKCIPHER)
578 geniv = alg->cra_blkcipher.geniv;
579 else
580 geniv = alg->cra_ablkcipher.geniv;
581
582 if (!geniv)
583 geniv = crypto_default_geniv(alg);
584
585 tmpl = crypto_lookup_template(geniv);
586 err = -ENOENT;
587 if (!tmpl)
588 goto kill_larval;
589
590 inst = tmpl->alloc(tb);
591 err = PTR_ERR(inst);
592 if (IS_ERR(inst))
593 goto put_tmpl;
594
Joshua I. Jamesa861afb2014-12-05 14:06:16 +0900595 err = crypto_register_instance(tmpl, inst);
596 if (err) {
Herbert Xub9c55aa2007-12-04 12:46:48 +1100597 tmpl->free(inst);
598 goto put_tmpl;
599 }
600
601 /* Redo the lookup to use the instance we just registered. */
602 err = -EAGAIN;
603
604put_tmpl:
605 crypto_tmpl_put(tmpl);
606kill_larval:
607 crypto_larval_kill(larval);
608drop_larval:
609 crypto_mod_put(larval);
610out:
611 crypto_mod_put(alg);
612 return err;
613}
614
Steffen Klassert1e122992012-03-29 09:03:47 +0200615struct crypto_alg *crypto_lookup_skcipher(const char *name, u32 type, u32 mask)
Herbert Xub9c55aa2007-12-04 12:46:48 +1100616{
617 struct crypto_alg *alg;
618
619 alg = crypto_alg_mod_lookup(name, type, mask);
620 if (IS_ERR(alg))
621 return alg;
622
623 if ((alg->cra_flags & CRYPTO_ALG_TYPE_MASK) ==
624 CRYPTO_ALG_TYPE_GIVCIPHER)
625 return alg;
626
627 if (!((alg->cra_flags & CRYPTO_ALG_TYPE_MASK) ==
628 CRYPTO_ALG_TYPE_BLKCIPHER ? alg->cra_blkcipher.ivsize :
629 alg->cra_ablkcipher.ivsize))
630 return alg;
631
Herbert Xub170a132009-02-18 20:33:55 +0800632 crypto_mod_put(alg);
633 alg = crypto_alg_mod_lookup(name, type | CRYPTO_ALG_TESTED,
634 mask & ~CRYPTO_ALG_TESTED);
635 if (IS_ERR(alg))
636 return alg;
637
638 if ((alg->cra_flags & CRYPTO_ALG_TYPE_MASK) ==
639 CRYPTO_ALG_TYPE_GIVCIPHER) {
640 if ((alg->cra_flags ^ type ^ ~mask) & CRYPTO_ALG_TESTED) {
641 crypto_mod_put(alg);
642 alg = ERR_PTR(-ENOENT);
643 }
644 return alg;
645 }
646
647 BUG_ON(!((alg->cra_flags & CRYPTO_ALG_TYPE_MASK) ==
648 CRYPTO_ALG_TYPE_BLKCIPHER ? alg->cra_blkcipher.ivsize :
649 alg->cra_ablkcipher.ivsize));
650
Herbert Xub9c55aa2007-12-04 12:46:48 +1100651 return ERR_PTR(crypto_givcipher_default(alg, type, mask));
652}
Steffen Klassert1e122992012-03-29 09:03:47 +0200653EXPORT_SYMBOL_GPL(crypto_lookup_skcipher);
Herbert Xub9c55aa2007-12-04 12:46:48 +1100654
Herbert Xu378f4f52007-12-17 20:07:31 +0800655int crypto_grab_skcipher(struct crypto_skcipher_spawn *spawn, const char *name,
656 u32 type, u32 mask)
657{
658 struct crypto_alg *alg;
659 int err;
660
661 type = crypto_skcipher_type(type);
662 mask = crypto_skcipher_mask(mask);
663
Herbert Xub9c55aa2007-12-04 12:46:48 +1100664 alg = crypto_lookup_skcipher(name, type, mask);
Herbert Xu378f4f52007-12-17 20:07:31 +0800665 if (IS_ERR(alg))
666 return PTR_ERR(alg);
667
668 err = crypto_init_spawn(&spawn->base, alg, spawn->base.inst, mask);
669 crypto_mod_put(alg);
670 return err;
671}
672EXPORT_SYMBOL_GPL(crypto_grab_skcipher);
673
Herbert Xub9c55aa2007-12-04 12:46:48 +1100674struct crypto_ablkcipher *crypto_alloc_ablkcipher(const char *alg_name,
675 u32 type, u32 mask)
676{
677 struct crypto_tfm *tfm;
678 int err;
679
680 type = crypto_skcipher_type(type);
681 mask = crypto_skcipher_mask(mask);
682
683 for (;;) {
684 struct crypto_alg *alg;
685
686 alg = crypto_lookup_skcipher(alg_name, type, mask);
687 if (IS_ERR(alg)) {
688 err = PTR_ERR(alg);
689 goto err;
690 }
691
692 tfm = __crypto_alloc_tfm(alg, type, mask);
693 if (!IS_ERR(tfm))
694 return __crypto_ablkcipher_cast(tfm);
695
696 crypto_mod_put(alg);
697 err = PTR_ERR(tfm);
698
699err:
700 if (err != -EAGAIN)
701 break;
702 if (signal_pending(current)) {
703 err = -EINTR;
704 break;
705 }
706 }
707
708 return ERR_PTR(err);
709}
710EXPORT_SYMBOL_GPL(crypto_alloc_ablkcipher);