2 * Create default crypto algorithm instances.
4 * Copyright (c) 2006 Herbert Xu <herbert@gondor.apana.org.au>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
13 #include <linux/crypto.h>
14 #include <linux/ctype.h>
15 #include <linux/err.h>
16 #include <linux/init.h>
17 #include <linux/module.h>
18 #include <linux/notifier.h>
19 #include <linux/rtnetlink.h>
20 #include <linux/sched.h>
21 #include <linux/string.h>
22 #include <linux/workqueue.h>
26 struct cryptomgr_param
{
27 struct work_struct work
;
31 struct crypto_attr_alg data
;
37 char name
[CRYPTO_MAX_ALG_NAME
];
40 char template[CRYPTO_MAX_ALG_NAME
];
43 static void cryptomgr_probe(void *data
)
45 struct cryptomgr_param
*param
= data
;
46 struct crypto_template
*tmpl
;
47 struct crypto_instance
*inst
;
50 tmpl
= crypto_lookup_template(param
->template);
55 inst
= tmpl
->alloc(¶m
->alg
, sizeof(param
->alg
));
58 else if ((err
= crypto_register_instance(tmpl
, inst
)))
60 } while (err
== -EAGAIN
&& !signal_pending(current
));
62 crypto_tmpl_put(tmpl
);
72 crypto_larval_error(param
->larval
.name
, param
->larval
.type
,
77 static int cryptomgr_schedule_probe(struct crypto_larval
*larval
)
79 struct cryptomgr_param
*param
;
80 const char *name
= larval
->alg
.cra_name
;
84 param
= kmalloc(sizeof(*param
), GFP_KERNEL
);
88 for (p
= name
; isalnum(*p
) || *p
== '-' || *p
== '_'; p
++)
92 if (!len
|| *p
!= '(')
95 memcpy(param
->template, name
, len
);
96 param
->template[len
] = 0;
99 for (p
= name
; isalnum(*p
) || *p
== '-' || *p
== '_'; p
++)
103 if (!len
|| *p
!= ')' || p
[1])
106 param
->alg
.attr
.rta_len
= sizeof(param
->alg
);
107 param
->alg
.attr
.rta_type
= CRYPTOA_ALG
;
108 memcpy(param
->alg
.data
.name
, name
, len
);
109 param
->alg
.data
.name
[len
] = 0;
111 memcpy(param
->larval
.name
, larval
->alg
.cra_name
, CRYPTO_MAX_ALG_NAME
);
112 param
->larval
.type
= larval
->alg
.cra_flags
;
113 param
->larval
.mask
= larval
->mask
;
115 INIT_WORK(¶m
->work
, cryptomgr_probe
, param
);
116 schedule_work(¶m
->work
);
126 static int cryptomgr_notify(struct notifier_block
*this, unsigned long msg
,
130 case CRYPTO_MSG_ALG_REQUEST
:
131 return cryptomgr_schedule_probe(data
);
137 static struct notifier_block cryptomgr_notifier
= {
138 .notifier_call
= cryptomgr_notify
,
141 static int __init
cryptomgr_init(void)
143 return crypto_register_notifier(&cryptomgr_notifier
);
146 static void __exit
cryptomgr_exit(void)
148 int err
= crypto_unregister_notifier(&cryptomgr_notifier
);
152 module_init(cryptomgr_init
);
153 module_exit(cryptomgr_exit
);
155 MODULE_LICENSE("GPL");
156 MODULE_DESCRIPTION("Crypto Algorithm Manager");