diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2006-08-06 09:10:45 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2006-09-20 21:41:04 -0400 |
commit | 7fed0bf271b374be4c98a5880faed4b1128e78e9 (patch) | |
tree | 29a1244ed286c500bf64afcef0c571e771ed0cd5 /crypto | |
parent | df89820ebd5bbf4f3c6b5f8ee7d9e983107f6a91 (diff) |
[CRYPTO] api: Add common instance initialisation code
This patch adds the helpers crypto_get_attr_alg and crypto_alloc_instance
which can be used by simple one-argument templates like hmac to process
input parameters and allocate instances.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/algapi.c | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/crypto/algapi.c b/crypto/algapi.c index 36c4f1bdb521..c91530021e9c 100644 --- a/crypto/algapi.c +++ b/crypto/algapi.c | |||
@@ -16,6 +16,7 @@ | |||
16 | #include <linux/kernel.h> | 16 | #include <linux/kernel.h> |
17 | #include <linux/list.h> | 17 | #include <linux/list.h> |
18 | #include <linux/module.h> | 18 | #include <linux/module.h> |
19 | #include <linux/rtnetlink.h> | ||
19 | #include <linux/string.h> | 20 | #include <linux/string.h> |
20 | 21 | ||
21 | #include "internal.h" | 22 | #include "internal.h" |
@@ -415,6 +416,58 @@ int crypto_unregister_notifier(struct notifier_block *nb) | |||
415 | } | 416 | } |
416 | EXPORT_SYMBOL_GPL(crypto_unregister_notifier); | 417 | EXPORT_SYMBOL_GPL(crypto_unregister_notifier); |
417 | 418 | ||
419 | struct crypto_alg *crypto_get_attr_alg(void *param, unsigned int len, | ||
420 | u32 type, u32 mask) | ||
421 | { | ||
422 | struct rtattr *rta = param; | ||
423 | struct crypto_attr_alg *alga; | ||
424 | |||
425 | if (!RTA_OK(rta, len)) | ||
426 | return ERR_PTR(-EBADR); | ||
427 | if (rta->rta_type != CRYPTOA_ALG || RTA_PAYLOAD(rta) < sizeof(*alga)) | ||
428 | return ERR_PTR(-EINVAL); | ||
429 | |||
430 | alga = RTA_DATA(rta); | ||
431 | alga->name[CRYPTO_MAX_ALG_NAME - 1] = 0; | ||
432 | |||
433 | return crypto_alg_mod_lookup(alga->name, type, mask); | ||
434 | } | ||
435 | EXPORT_SYMBOL_GPL(crypto_get_attr_alg); | ||
436 | |||
437 | struct crypto_instance *crypto_alloc_instance(const char *name, | ||
438 | struct crypto_alg *alg) | ||
439 | { | ||
440 | struct crypto_instance *inst; | ||
441 | struct crypto_spawn *spawn; | ||
442 | int err; | ||
443 | |||
444 | inst = kzalloc(sizeof(*inst) + sizeof(*spawn), GFP_KERNEL); | ||
445 | if (!inst) | ||
446 | return ERR_PTR(-ENOMEM); | ||
447 | |||
448 | err = -ENAMETOOLONG; | ||
449 | if (snprintf(inst->alg.cra_name, CRYPTO_MAX_ALG_NAME, "%s(%s)", name, | ||
450 | alg->cra_name) >= CRYPTO_MAX_ALG_NAME) | ||
451 | goto err_free_inst; | ||
452 | |||
453 | if (snprintf(inst->alg.cra_driver_name, CRYPTO_MAX_ALG_NAME, "%s(%s)", | ||
454 | name, alg->cra_driver_name) >= CRYPTO_MAX_ALG_NAME) | ||
455 | goto err_free_inst; | ||
456 | |||
457 | spawn = crypto_instance_ctx(inst); | ||
458 | err = crypto_init_spawn(spawn, alg, inst); | ||
459 | |||
460 | if (err) | ||
461 | goto err_free_inst; | ||
462 | |||
463 | return inst; | ||
464 | |||
465 | err_free_inst: | ||
466 | kfree(inst); | ||
467 | return ERR_PTR(err); | ||
468 | } | ||
469 | EXPORT_SYMBOL_GPL(crypto_alloc_instance); | ||
470 | |||
418 | static int __init crypto_algapi_init(void) | 471 | static int __init crypto_algapi_init(void) |
419 | { | 472 | { |
420 | crypto_init_proc(); | 473 | crypto_init_proc(); |