2 * Asynchronous block chaining cipher operations.
4 * This is the asynchronous version of blkcipher.c indicating completion
7 * Copyright (c) 2006 Herbert Xu <herbert@gondor.apana.org.au>
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
11 * Software Foundation; either version 2 of the License, or (at your option)
16 #include <crypto/internal/skcipher.h>
17 #include <linux/err.h>
18 #include <linux/init.h>
19 #include <linux/kernel.h>
20 #include <linux/module.h>
21 #include <linux/rtnetlink.h>
22 #include <linux/sched.h>
23 #include <linux/slab.h>
24 #include <linux/seq_file.h>
28 static int setkey_unaligned(struct crypto_ablkcipher *tfm, const u8 *key,
31 struct ablkcipher_alg *cipher = crypto_ablkcipher_alg(tfm);
32 unsigned long alignmask = crypto_ablkcipher_alignmask(tfm);
34 u8 *buffer, *alignbuffer;
37 absize = keylen + alignmask;
38 buffer = kmalloc(absize, GFP_ATOMIC);
42 alignbuffer = (u8 *)ALIGN((unsigned long)buffer, alignmask + 1);
43 memcpy(alignbuffer, key, keylen);
44 ret = cipher->setkey(tfm, alignbuffer, keylen);
45 memset(alignbuffer, 0, keylen);
50 static int setkey(struct crypto_ablkcipher *tfm, const u8 *key,
53 struct ablkcipher_alg *cipher = crypto_ablkcipher_alg(tfm);
54 unsigned long alignmask = crypto_ablkcipher_alignmask(tfm);
56 if (keylen < cipher->min_keysize || keylen > cipher->max_keysize) {
57 crypto_ablkcipher_set_flags(tfm, CRYPTO_TFM_RES_BAD_KEY_LEN);
61 if ((unsigned long)key & alignmask)
62 return setkey_unaligned(tfm, key, keylen);
64 return cipher->setkey(tfm, key, keylen);
67 static unsigned int crypto_ablkcipher_ctxsize(struct crypto_alg *alg, u32 type,
70 return alg->cra_ctxsize;
73 int skcipher_null_givencrypt(struct skcipher_givcrypt_request *req)
75 return crypto_ablkcipher_encrypt(&req->creq);
78 int skcipher_null_givdecrypt(struct skcipher_givcrypt_request *req)
80 return crypto_ablkcipher_decrypt(&req->creq);
83 static int crypto_init_ablkcipher_ops(struct crypto_tfm *tfm, u32 type,
86 struct ablkcipher_alg *alg = &tfm->__crt_alg->cra_ablkcipher;
87 struct ablkcipher_tfm *crt = &tfm->crt_ablkcipher;
89 if (alg->ivsize > PAGE_SIZE / 8)
93 crt->encrypt = alg->encrypt;
94 crt->decrypt = alg->decrypt;
96 crt->givencrypt = skcipher_null_givencrypt;
97 crt->givdecrypt = skcipher_null_givdecrypt;
99 crt->base = __crypto_ablkcipher_cast(tfm);
100 crt->ivsize = alg->ivsize;
105 static void crypto_ablkcipher_show(struct seq_file *m, struct crypto_alg *alg)
106 __attribute__ ((unused));
107 static void crypto_ablkcipher_show(struct seq_file *m, struct crypto_alg *alg)
109 struct ablkcipher_alg *ablkcipher = &alg->cra_ablkcipher;
111 seq_printf(m, "type : ablkcipher\n");
112 seq_printf(m, "async : %s\n", alg->cra_flags & CRYPTO_ALG_ASYNC ?
114 seq_printf(m, "blocksize : %u\n", alg->cra_blocksize);
115 seq_printf(m, "min keysize : %u\n", ablkcipher->min_keysize);
116 seq_printf(m, "max keysize : %u\n", ablkcipher->max_keysize);
117 seq_printf(m, "ivsize : %u\n", ablkcipher->ivsize);
118 seq_printf(m, "geniv : %s\n", ablkcipher->geniv ?: "<default>");
121 const struct crypto_type crypto_ablkcipher_type = {
122 .ctxsize = crypto_ablkcipher_ctxsize,
123 .init = crypto_init_ablkcipher_ops,
124 #ifdef CONFIG_PROC_FS
125 .show = crypto_ablkcipher_show,
128 EXPORT_SYMBOL_GPL(crypto_ablkcipher_type);
130 static int no_givdecrypt(struct skcipher_givcrypt_request *req)
135 static int crypto_init_givcipher_ops(struct crypto_tfm *tfm, u32 type,
138 struct ablkcipher_alg *alg = &tfm->__crt_alg->cra_ablkcipher;
139 struct ablkcipher_tfm *crt = &tfm->crt_ablkcipher;
141 if (alg->ivsize > PAGE_SIZE / 8)
144 crt->setkey = tfm->__crt_alg->cra_flags & CRYPTO_ALG_GENIV ?
145 alg->setkey : setkey;
146 crt->encrypt = alg->encrypt;
147 crt->decrypt = alg->decrypt;
148 crt->givencrypt = alg->givencrypt;
149 crt->givdecrypt = alg->givdecrypt ?: no_givdecrypt;
150 crt->base = __crypto_ablkcipher_cast(tfm);
151 crt->ivsize = alg->ivsize;
156 static void crypto_givcipher_show(struct seq_file *m, struct crypto_alg *alg)
157 __attribute__ ((unused));
158 static void crypto_givcipher_show(struct seq_file *m, struct crypto_alg *alg)
160 struct ablkcipher_alg *ablkcipher = &alg->cra_ablkcipher;
162 seq_printf(m, "type : givcipher\n");
163 seq_printf(m, "async : %s\n", alg->cra_flags & CRYPTO_ALG_ASYNC ?
165 seq_printf(m, "blocksize : %u\n", alg->cra_blocksize);
166 seq_printf(m, "min keysize : %u\n", ablkcipher->min_keysize);
167 seq_printf(m, "max keysize : %u\n", ablkcipher->max_keysize);
168 seq_printf(m, "ivsize : %u\n", ablkcipher->ivsize);
169 seq_printf(m, "geniv : %s\n", ablkcipher->geniv ?: "<built-in>");
172 const struct crypto_type crypto_givcipher_type = {
173 .ctxsize = crypto_ablkcipher_ctxsize,
174 .init = crypto_init_givcipher_ops,
175 #ifdef CONFIG_PROC_FS
176 .show = crypto_givcipher_show,
179 EXPORT_SYMBOL_GPL(crypto_givcipher_type);
181 const char *crypto_default_geniv(const struct crypto_alg *alg)
183 return alg->cra_flags & CRYPTO_ALG_ASYNC ? "eseqiv" : "chainiv";
186 static int crypto_givcipher_default(struct crypto_alg *alg, u32 type, u32 mask)
188 struct rtattr *tb[3];
191 struct crypto_attr_type data;
195 struct crypto_attr_alg data;
197 struct crypto_template *tmpl;
198 struct crypto_instance *inst;
199 struct crypto_alg *larval;
203 larval = crypto_larval_lookup(alg->cra_driver_name,
204 CRYPTO_ALG_TYPE_GIVCIPHER,
205 CRYPTO_ALG_TYPE_MASK);
206 err = PTR_ERR(larval);
211 if (!crypto_is_larval(larval))
214 ptype.attr.rta_len = sizeof(ptype);
215 ptype.attr.rta_type = CRYPTOA_TYPE;
216 ptype.data.type = type | CRYPTO_ALG_GENIV;
217 /* GENIV tells the template that we're making a default geniv. */
218 ptype.data.mask = mask | CRYPTO_ALG_GENIV;
221 palg.attr.rta_len = sizeof(palg);
222 palg.attr.rta_type = CRYPTOA_ALG;
223 /* Must use the exact name to locate ourselves. */
224 memcpy(palg.data.name, alg->cra_driver_name, CRYPTO_MAX_ALG_NAME);
229 if ((alg->cra_flags & CRYPTO_ALG_TYPE_MASK) ==
230 CRYPTO_ALG_TYPE_BLKCIPHER)
231 geniv = alg->cra_blkcipher.geniv;
233 geniv = alg->cra_ablkcipher.geniv;
236 geniv = crypto_default_geniv(alg);
238 tmpl = crypto_lookup_template(geniv);
243 inst = tmpl->alloc(tb);
248 if ((err = crypto_register_instance(tmpl, inst))) {
253 /* Redo the lookup to use the instance we just registered. */
257 crypto_tmpl_put(tmpl);
259 crypto_larval_kill(larval);
261 crypto_mod_put(larval);
267 static struct crypto_alg *crypto_lookup_skcipher(const char *name, u32 type,
270 struct crypto_alg *alg;
272 alg = crypto_alg_mod_lookup(name, type, mask);
276 if ((alg->cra_flags & CRYPTO_ALG_TYPE_MASK) ==
277 CRYPTO_ALG_TYPE_GIVCIPHER)
280 if (!((alg->cra_flags & CRYPTO_ALG_TYPE_MASK) ==
281 CRYPTO_ALG_TYPE_BLKCIPHER ? alg->cra_blkcipher.ivsize :
282 alg->cra_ablkcipher.ivsize))
286 alg = crypto_alg_mod_lookup(name, type | CRYPTO_ALG_TESTED,
287 mask & ~CRYPTO_ALG_TESTED);
291 if ((alg->cra_flags & CRYPTO_ALG_TYPE_MASK) ==
292 CRYPTO_ALG_TYPE_GIVCIPHER) {
293 if ((alg->cra_flags ^ type ^ ~mask) & CRYPTO_ALG_TESTED) {
295 alg = ERR_PTR(-ENOENT);
300 BUG_ON(!((alg->cra_flags & CRYPTO_ALG_TYPE_MASK) ==
301 CRYPTO_ALG_TYPE_BLKCIPHER ? alg->cra_blkcipher.ivsize :
302 alg->cra_ablkcipher.ivsize));
304 return ERR_PTR(crypto_givcipher_default(alg, type, mask));
307 int crypto_grab_skcipher(struct crypto_skcipher_spawn *spawn, const char *name,
310 struct crypto_alg *alg;
313 type = crypto_skcipher_type(type);
314 mask = crypto_skcipher_mask(mask);
316 alg = crypto_lookup_skcipher(name, type, mask);
320 err = crypto_init_spawn(&spawn->base, alg, spawn->base.inst, mask);
324 EXPORT_SYMBOL_GPL(crypto_grab_skcipher);
326 struct crypto_ablkcipher *crypto_alloc_ablkcipher(const char *alg_name,
329 struct crypto_tfm *tfm;
332 type = crypto_skcipher_type(type);
333 mask = crypto_skcipher_mask(mask);
336 struct crypto_alg *alg;
338 alg = crypto_lookup_skcipher(alg_name, type, mask);
344 tfm = __crypto_alloc_tfm(alg, type, mask);
346 return __crypto_ablkcipher_cast(tfm);
354 if (signal_pending(current)) {
362 EXPORT_SYMBOL_GPL(crypto_alloc_ablkcipher);