crypto: api - Fix races in crypto_unregister_instance
[deliverable/linux.git] / crypto / algapi.c
CommitLineData
cce9e06d
HX
1/*
2 * Cryptographic API for algorithms (i.e., low-level API).
3 *
4 * Copyright (c) 2006 Herbert Xu <herbert@gondor.apana.org.au>
5 *
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)
9 * any later version.
10 *
11 */
12
6bfd4809 13#include <linux/err.h>
cce9e06d
HX
14#include <linux/errno.h>
15#include <linux/init.h>
16#include <linux/kernel.h>
4cc7720c 17#include <linux/list.h>
cce9e06d 18#include <linux/module.h>
7fed0bf2 19#include <linux/rtnetlink.h>
5a0e3ad6 20#include <linux/slab.h>
cce9e06d
HX
21#include <linux/string.h>
22
23#include "internal.h"
24
4cc7720c
HX
25static LIST_HEAD(crypto_template_list);
26
cce9e06d
HX
27static inline int crypto_set_driver_name(struct crypto_alg *alg)
28{
29 static const char suffix[] = "-generic";
30 char *driver_name = alg->cra_driver_name;
31 int len;
32
33 if (*driver_name)
34 return 0;
35
36 len = strlcpy(driver_name, alg->cra_name, CRYPTO_MAX_ALG_NAME);
37 if (len + sizeof(suffix) > CRYPTO_MAX_ALG_NAME)
38 return -ENAMETOOLONG;
39
40 memcpy(driver_name + len, suffix, sizeof(suffix));
41 return 0;
42}
43
002c77a4
JW
44static inline void crypto_check_module_sig(struct module *mod)
45{
46#ifdef CONFIG_CRYPTO_FIPS
47 if (fips_enabled && mod && !mod->sig_ok)
48 panic("Module %s signature verification failed in FIPS mode\n",
49 mod->name);
50#endif
51 return;
52}
53
4cc7720c 54static int crypto_check_alg(struct crypto_alg *alg)
cce9e06d 55{
002c77a4
JW
56 crypto_check_module_sig(alg->cra_module);
57
cce9e06d
HX
58 if (alg->cra_alignmask & (alg->cra_alignmask + 1))
59 return -EINVAL;
60
cce9e06d
HX
61 if (alg->cra_blocksize > PAGE_SIZE / 8)
62 return -EINVAL;
63
64 if (alg->cra_priority < 0)
65 return -EINVAL;
cce9e06d 66
4cc7720c
HX
67 return crypto_set_driver_name(alg);
68}
69
6bfd4809
HX
70static void crypto_destroy_instance(struct crypto_alg *alg)
71{
72 struct crypto_instance *inst = (void *)alg;
73 struct crypto_template *tmpl = inst->tmpl;
74
75 tmpl->free(inst);
76 crypto_tmpl_put(tmpl);
77}
78
2bf29016
HX
79static struct list_head *crypto_more_spawns(struct crypto_alg *alg,
80 struct list_head *stack,
81 struct list_head *top,
82 struct list_head *secondary_spawns)
83{
84 struct crypto_spawn *spawn, *n;
85
86 if (list_empty(stack))
87 return NULL;
88
89 spawn = list_first_entry(stack, struct crypto_spawn, list);
90 n = list_entry(spawn->list.next, struct crypto_spawn, list);
91
92 if (spawn->alg && &n->list != stack && !n->alg)
93 n->alg = (n->list.next == stack) ? alg :
94 &list_entry(n->list.next, struct crypto_spawn,
95 list)->inst->alg;
96
97 list_move(&spawn->list, secondary_spawns);
98
99 return &n->list == stack ? top : &n->inst->alg.cra_users;
100}
101
1f723710
HX
102static void crypto_remove_instance(struct crypto_instance *inst,
103 struct list_head *list)
6bfd4809 104{
a73e6996 105 struct crypto_template *tmpl = inst->tmpl;
6bfd4809 106
a73e6996
HX
107 if (crypto_is_dead(&inst->alg))
108 return;
6bfd4809 109
a73e6996 110 inst->alg.cra_flags |= CRYPTO_ALG_DEAD;
38cb2419
HX
111 if (hlist_unhashed(&inst->list))
112 return;
113
a73e6996
HX
114 if (!tmpl || !crypto_tmpl_get(tmpl))
115 return;
116
117 crypto_notify(CRYPTO_MSG_ALG_UNREGISTER, &inst->alg);
118 list_move(&inst->alg.cra_list, list);
119 hlist_del(&inst->list);
120 inst->alg.cra_destroy = crypto_destroy_instance;
121
2bf29016 122 BUG_ON(!list_empty(&inst->alg.cra_users));
a73e6996
HX
123}
124
89b596ba
SK
125void crypto_remove_spawns(struct crypto_alg *alg, struct list_head *list,
126 struct crypto_alg *nalg)
a73e6996 127{
2bf29016 128 u32 new_type = (nalg ?: alg)->cra_flags;
a73e6996
HX
129 struct crypto_spawn *spawn, *n;
130 LIST_HEAD(secondary_spawns);
2bf29016
HX
131 struct list_head *spawns;
132 LIST_HEAD(stack);
133 LIST_HEAD(top);
6bfd4809 134
2bf29016 135 spawns = &alg->cra_users;
a73e6996
HX
136 list_for_each_entry_safe(spawn, n, spawns, list) {
137 if ((spawn->alg->cra_flags ^ new_type) & spawn->mask)
6bfd4809
HX
138 continue;
139
2bf29016 140 list_move(&spawn->list, &top);
a73e6996 141 }
6bfd4809 142
2bf29016
HX
143 spawns = &top;
144 do {
145 while (!list_empty(spawns)) {
146 struct crypto_instance *inst;
147
148 spawn = list_first_entry(spawns, struct crypto_spawn,
149 list);
150 inst = spawn->inst;
151
152 BUG_ON(&inst->alg == alg);
153
154 list_move(&spawn->list, &stack);
155
156 if (&inst->alg == nalg)
157 break;
158
159 spawn->alg = NULL;
160 spawns = &inst->alg.cra_users;
161 }
162 } while ((spawns = crypto_more_spawns(alg, &stack, &top,
163 &secondary_spawns)));
164
165 list_for_each_entry_safe(spawn, n, &secondary_spawns, list) {
166 if (spawn->alg)
167 list_move(&spawn->list, &spawn->alg->cra_users);
168 else
1f723710 169 crypto_remove_instance(spawn->inst, list);
6bfd4809
HX
170 }
171}
89b596ba 172EXPORT_SYMBOL_GPL(crypto_remove_spawns);
6bfd4809 173
73d3864a 174static struct crypto_larval *__crypto_register_alg(struct crypto_alg *alg)
4cc7720c
HX
175{
176 struct crypto_alg *q;
73d3864a 177 struct crypto_larval *larval;
6bfd4809
HX
178 int ret = -EAGAIN;
179
180 if (crypto_is_dead(alg))
73d3864a 181 goto err;
6bfd4809
HX
182
183 INIT_LIST_HEAD(&alg->cra_users);
184
73d3864a
HX
185 /* No cheating! */
186 alg->cra_flags &= ~CRYPTO_ALG_TESTED;
187
6bfd4809 188 ret = -EEXIST;
4cc7720c 189
2825982d 190 atomic_set(&alg->cra_refcnt, 1);
cce9e06d 191 list_for_each_entry(q, &crypto_alg_list, cra_list) {
4cc7720c 192 if (q == alg)
73d3864a
HX
193 goto err;
194
b8e15992
HX
195 if (crypto_is_moribund(q))
196 continue;
197
73d3864a
HX
198 if (crypto_is_larval(q)) {
199 if (!strcmp(alg->cra_driver_name, q->cra_driver_name))
200 goto err;
201 continue;
202 }
203
204 if (!strcmp(q->cra_driver_name, alg->cra_name) ||
205 !strcmp(q->cra_name, alg->cra_driver_name))
206 goto err;
207 }
208
209 larval = crypto_larval_alloc(alg->cra_name,
210 alg->cra_flags | CRYPTO_ALG_TESTED, 0);
211 if (IS_ERR(larval))
212 goto out;
213
214 ret = -ENOENT;
215 larval->adult = crypto_mod_get(alg);
216 if (!larval->adult)
217 goto free_larval;
218
219 atomic_set(&larval->alg.cra_refcnt, 1);
220 memcpy(larval->alg.cra_driver_name, alg->cra_driver_name,
221 CRYPTO_MAX_ALG_NAME);
222 larval->alg.cra_priority = alg->cra_priority;
223
224 list_add(&alg->cra_list, &crypto_alg_list);
225 list_add(&larval->alg.cra_list, &crypto_alg_list);
226
5357c6c4 227out:
73d3864a
HX
228 return larval;
229
230free_larval:
231 kfree(larval);
232err:
233 larval = ERR_PTR(ret);
234 goto out;
235}
236
237void crypto_alg_tested(const char *name, int err)
238{
239 struct crypto_larval *test;
240 struct crypto_alg *alg;
241 struct crypto_alg *q;
242 LIST_HEAD(list);
243
244 down_write(&crypto_alg_sem);
245 list_for_each_entry(q, &crypto_alg_list, cra_list) {
b8e15992 246 if (crypto_is_moribund(q) || !crypto_is_larval(q))
73d3864a
HX
247 continue;
248
249 test = (struct crypto_larval *)q;
250
251 if (!strcmp(q->cra_driver_name, name))
252 goto found;
253 }
254
255 printk(KERN_ERR "alg: Unexpected test result for %s: %d\n", name, err);
256 goto unlock;
257
258found:
b8e15992 259 q->cra_flags |= CRYPTO_ALG_DEAD;
73d3864a
HX
260 alg = test->adult;
261 if (err || list_empty(&alg->cra_list))
262 goto complete;
263
264 alg->cra_flags |= CRYPTO_ALG_TESTED;
265
266 list_for_each_entry(q, &crypto_alg_list, cra_list) {
267 if (q == alg)
268 continue;
6bfd4809
HX
269
270 if (crypto_is_moribund(q))
271 continue;
272
273 if (crypto_is_larval(q)) {
2825982d
HX
274 struct crypto_larval *larval = (void *)q;
275
d8058480
HX
276 /*
277 * Check to see if either our generic name or
278 * specific name can satisfy the name requested
279 * by the larval entry q.
280 */
6bfd4809
HX
281 if (strcmp(alg->cra_name, q->cra_name) &&
282 strcmp(alg->cra_driver_name, q->cra_name))
283 continue;
284
285 if (larval->adult)
286 continue;
492e2b63
HX
287 if ((q->cra_flags ^ alg->cra_flags) & larval->mask)
288 continue;
2825982d
HX
289 if (!crypto_mod_get(alg))
290 continue;
6bfd4809 291
2825982d 292 larval->adult = alg;
6bfd4809 293 continue;
2825982d 294 }
6bfd4809
HX
295
296 if (strcmp(alg->cra_name, q->cra_name))
297 continue;
298
299 if (strcmp(alg->cra_driver_name, q->cra_driver_name) &&
300 q->cra_priority > alg->cra_priority)
301 continue;
302
2bf29016 303 crypto_remove_spawns(q, &list, alg);
cce9e06d 304 }
2825982d 305
73d3864a
HX
306complete:
307 complete_all(&test->completion);
2825982d 308
73d3864a
HX
309unlock:
310 up_write(&crypto_alg_sem);
311
312 crypto_remove_final(&list);
cce9e06d 313}
73d3864a 314EXPORT_SYMBOL_GPL(crypto_alg_tested);
4cc7720c 315
22e5b20b 316void crypto_remove_final(struct list_head *list)
6bfd4809
HX
317{
318 struct crypto_alg *alg;
319 struct crypto_alg *n;
320
321 list_for_each_entry_safe(alg, n, list, cra_list) {
322 list_del_init(&alg->cra_list);
323 crypto_alg_put(alg);
324 }
325}
22e5b20b 326EXPORT_SYMBOL_GPL(crypto_remove_final);
6bfd4809 327
73d3864a
HX
328static void crypto_wait_for_test(struct crypto_larval *larval)
329{
330 int err;
331
332 err = crypto_probing_notify(CRYPTO_MSG_ALG_REGISTER, larval->adult);
333 if (err != NOTIFY_STOP) {
334 if (WARN_ON(err != NOTIFY_DONE))
335 goto out;
336 crypto_alg_tested(larval->alg.cra_driver_name, 0);
337 }
338
339 err = wait_for_completion_interruptible(&larval->completion);
340 WARN_ON(err);
341
342out:
343 crypto_larval_kill(&larval->alg);
344}
345
4cc7720c
HX
346int crypto_register_alg(struct crypto_alg *alg)
347{
73d3864a 348 struct crypto_larval *larval;
4cc7720c
HX
349 int err;
350
351 err = crypto_check_alg(alg);
352 if (err)
353 return err;
354
355 down_write(&crypto_alg_sem);
73d3864a 356 larval = __crypto_register_alg(alg);
4cc7720c
HX
357 up_write(&crypto_alg_sem);
358
73d3864a
HX
359 if (IS_ERR(larval))
360 return PTR_ERR(larval);
361
362 crypto_wait_for_test(larval);
363 return 0;
4cc7720c 364}
cce9e06d
HX
365EXPORT_SYMBOL_GPL(crypto_register_alg);
366
6bfd4809
HX
367static int crypto_remove_alg(struct crypto_alg *alg, struct list_head *list)
368{
369 if (unlikely(list_empty(&alg->cra_list)))
370 return -ENOENT;
371
372 alg->cra_flags |= CRYPTO_ALG_DEAD;
373
374 crypto_notify(CRYPTO_MSG_ALG_UNREGISTER, alg);
375 list_del_init(&alg->cra_list);
2bf29016 376 crypto_remove_spawns(alg, list, NULL);
6bfd4809
HX
377
378 return 0;
379}
380
cce9e06d
HX
381int crypto_unregister_alg(struct crypto_alg *alg)
382{
6bfd4809
HX
383 int ret;
384 LIST_HEAD(list);
5357c6c4 385
cce9e06d 386 down_write(&crypto_alg_sem);
6bfd4809 387 ret = crypto_remove_alg(alg, &list);
cce9e06d
HX
388 up_write(&crypto_alg_sem);
389
390 if (ret)
391 return ret;
392
393 BUG_ON(atomic_read(&alg->cra_refcnt) != 1);
394 if (alg->cra_destroy)
395 alg->cra_destroy(alg);
396
6bfd4809 397 crypto_remove_final(&list);
cce9e06d
HX
398 return 0;
399}
400EXPORT_SYMBOL_GPL(crypto_unregister_alg);
401
4b004346
MB
402int crypto_register_algs(struct crypto_alg *algs, int count)
403{
404 int i, ret;
405
406 for (i = 0; i < count; i++) {
407 ret = crypto_register_alg(&algs[i]);
408 if (ret)
409 goto err;
410 }
411
412 return 0;
413
414err:
415 for (--i; i >= 0; --i)
416 crypto_unregister_alg(&algs[i]);
417
418 return ret;
419}
420EXPORT_SYMBOL_GPL(crypto_register_algs);
421
422int crypto_unregister_algs(struct crypto_alg *algs, int count)
423{
424 int i, ret;
425
426 for (i = 0; i < count; i++) {
427 ret = crypto_unregister_alg(&algs[i]);
428 if (ret)
429 pr_err("Failed to unregister %s %s: %d\n",
430 algs[i].cra_driver_name, algs[i].cra_name, ret);
431 }
432
433 return 0;
434}
435EXPORT_SYMBOL_GPL(crypto_unregister_algs);
436
4cc7720c
HX
437int crypto_register_template(struct crypto_template *tmpl)
438{
439 struct crypto_template *q;
440 int err = -EEXIST;
441
442 down_write(&crypto_alg_sem);
443
002c77a4
JW
444 crypto_check_module_sig(tmpl->module);
445
4cc7720c
HX
446 list_for_each_entry(q, &crypto_template_list, list) {
447 if (q == tmpl)
448 goto out;
449 }
450
451 list_add(&tmpl->list, &crypto_template_list);
2825982d 452 crypto_notify(CRYPTO_MSG_TMPL_REGISTER, tmpl);
4cc7720c
HX
453 err = 0;
454out:
455 up_write(&crypto_alg_sem);
456 return err;
457}
458EXPORT_SYMBOL_GPL(crypto_register_template);
459
460void crypto_unregister_template(struct crypto_template *tmpl)
461{
462 struct crypto_instance *inst;
b67bfe0d 463 struct hlist_node *n;
4cc7720c 464 struct hlist_head *list;
6bfd4809 465 LIST_HEAD(users);
4cc7720c
HX
466
467 down_write(&crypto_alg_sem);
468
469 BUG_ON(list_empty(&tmpl->list));
470 list_del_init(&tmpl->list);
471
472 list = &tmpl->instances;
b67bfe0d 473 hlist_for_each_entry(inst, list, list) {
6bfd4809 474 int err = crypto_remove_alg(&inst->alg, &users);
0efcb8d5 475
6bfd4809 476 BUG_ON(err);
4cc7720c
HX
477 }
478
2825982d
HX
479 crypto_notify(CRYPTO_MSG_TMPL_UNREGISTER, tmpl);
480
4cc7720c
HX
481 up_write(&crypto_alg_sem);
482
b67bfe0d 483 hlist_for_each_entry_safe(inst, n, list, list) {
4cc7720c
HX
484 BUG_ON(atomic_read(&inst->alg.cra_refcnt) != 1);
485 tmpl->free(inst);
486 }
6bfd4809 487 crypto_remove_final(&users);
4cc7720c
HX
488}
489EXPORT_SYMBOL_GPL(crypto_unregister_template);
490
491static struct crypto_template *__crypto_lookup_template(const char *name)
492{
493 struct crypto_template *q, *tmpl = NULL;
494
495 down_read(&crypto_alg_sem);
496 list_for_each_entry(q, &crypto_template_list, list) {
497 if (strcmp(q->name, name))
498 continue;
499 if (unlikely(!crypto_tmpl_get(q)))
500 continue;
501
502 tmpl = q;
503 break;
504 }
505 up_read(&crypto_alg_sem);
506
507 return tmpl;
508}
509
510struct crypto_template *crypto_lookup_template(const char *name)
511{
4943ba16
KC
512 return try_then_request_module(__crypto_lookup_template(name),
513 "crypto-%s", name);
4cc7720c
HX
514}
515EXPORT_SYMBOL_GPL(crypto_lookup_template);
516
517int crypto_register_instance(struct crypto_template *tmpl,
518 struct crypto_instance *inst)
519{
73d3864a
HX
520 struct crypto_larval *larval;
521 int err;
4cc7720c 522
4cc7720c
HX
523 err = crypto_check_alg(&inst->alg);
524 if (err)
525 goto err;
526
527 inst->alg.cra_module = tmpl->module;
64a947b1 528 inst->alg.cra_flags |= CRYPTO_ALG_INSTANCE;
4cc7720c
HX
529
530 down_write(&crypto_alg_sem);
531
73d3864a
HX
532 larval = __crypto_register_alg(&inst->alg);
533 if (IS_ERR(larval))
4cc7720c
HX
534 goto unlock;
535
536 hlist_add_head(&inst->list, &tmpl->instances);
537 inst->tmpl = tmpl;
538
539unlock:
540 up_write(&crypto_alg_sem);
541
73d3864a
HX
542 err = PTR_ERR(larval);
543 if (IS_ERR(larval))
544 goto err;
545
546 crypto_wait_for_test(larval);
547 err = 0;
6bfd4809 548
4cc7720c
HX
549err:
550 return err;
551}
552EXPORT_SYMBOL_GPL(crypto_register_instance);
ce3fd840
SK
553
554int crypto_unregister_instance(struct crypto_alg *alg)
555{
ce3fd840 556 struct crypto_instance *inst = (void *)alg;
1f723710 557 LIST_HEAD(list);
ce3fd840
SK
558
559 if (!(alg->cra_flags & CRYPTO_ALG_INSTANCE))
560 return -EINVAL;
561
ce3fd840
SK
562 down_write(&crypto_alg_sem);
563
1f723710
HX
564 crypto_remove_spawns(alg, &list, NULL);
565 crypto_remove_instance(inst, &list);
ce3fd840
SK
566
567 up_write(&crypto_alg_sem);
568
1f723710 569 crypto_remove_final(&list);
ce3fd840
SK
570
571 return 0;
572}
573EXPORT_SYMBOL_GPL(crypto_unregister_instance);
4cc7720c 574
6bfd4809 575int crypto_init_spawn(struct crypto_spawn *spawn, struct crypto_alg *alg,
a73e6996 576 struct crypto_instance *inst, u32 mask)
6bfd4809
HX
577{
578 int err = -EAGAIN;
579
580 spawn->inst = inst;
a73e6996 581 spawn->mask = mask;
6bfd4809
HX
582
583 down_write(&crypto_alg_sem);
584 if (!crypto_is_moribund(alg)) {
585 list_add(&spawn->list, &alg->cra_users);
586 spawn->alg = alg;
587 err = 0;
588 }
589 up_write(&crypto_alg_sem);
590
591 return err;
592}
593EXPORT_SYMBOL_GPL(crypto_init_spawn);
594
97eedce1
HX
595int crypto_init_spawn2(struct crypto_spawn *spawn, struct crypto_alg *alg,
596 struct crypto_instance *inst,
597 const struct crypto_type *frontend)
598{
599 int err = -EINVAL;
600
c614e109 601 if ((alg->cra_flags ^ frontend->type) & frontend->maskset)
97eedce1
HX
602 goto out;
603
604 spawn->frontend = frontend;
605 err = crypto_init_spawn(spawn, alg, inst, frontend->maskset);
606
607out:
608 return err;
609}
610EXPORT_SYMBOL_GPL(crypto_init_spawn2);
611
6bfd4809
HX
612void crypto_drop_spawn(struct crypto_spawn *spawn)
613{
7ede5a5b
HX
614 if (!spawn->alg)
615 return;
616
6bfd4809
HX
617 down_write(&crypto_alg_sem);
618 list_del(&spawn->list);
619 up_write(&crypto_alg_sem);
620}
621EXPORT_SYMBOL_GPL(crypto_drop_spawn);
622
97eedce1 623static struct crypto_alg *crypto_spawn_alg(struct crypto_spawn *spawn)
6bfd4809
HX
624{
625 struct crypto_alg *alg;
626 struct crypto_alg *alg2;
6bfd4809
HX
627
628 down_read(&crypto_alg_sem);
629 alg = spawn->alg;
630 alg2 = alg;
631 if (alg2)
632 alg2 = crypto_mod_get(alg2);
633 up_read(&crypto_alg_sem);
634
635 if (!alg2) {
636 if (alg)
637 crypto_shoot_alg(alg);
638 return ERR_PTR(-EAGAIN);
639 }
640
97eedce1
HX
641 return alg;
642}
643
644struct crypto_tfm *crypto_spawn_tfm(struct crypto_spawn *spawn, u32 type,
645 u32 mask)
646{
647 struct crypto_alg *alg;
648 struct crypto_tfm *tfm;
649
650 alg = crypto_spawn_alg(spawn);
651 if (IS_ERR(alg))
652 return ERR_CAST(alg);
653
2e306ee0
HX
654 tfm = ERR_PTR(-EINVAL);
655 if (unlikely((alg->cra_flags ^ type) & mask))
656 goto out_put_alg;
657
27d2a330 658 tfm = __crypto_alloc_tfm(alg, type, mask);
6bfd4809 659 if (IS_ERR(tfm))
2e306ee0
HX
660 goto out_put_alg;
661
662 return tfm;
6bfd4809 663
2e306ee0
HX
664out_put_alg:
665 crypto_mod_put(alg);
6bfd4809
HX
666 return tfm;
667}
668EXPORT_SYMBOL_GPL(crypto_spawn_tfm);
669
97eedce1
HX
670void *crypto_spawn_tfm2(struct crypto_spawn *spawn)
671{
672 struct crypto_alg *alg;
673 struct crypto_tfm *tfm;
674
675 alg = crypto_spawn_alg(spawn);
676 if (IS_ERR(alg))
677 return ERR_CAST(alg);
678
679 tfm = crypto_create_tfm(alg, spawn->frontend);
680 if (IS_ERR(tfm))
681 goto out_put_alg;
682
683 return tfm;
684
685out_put_alg:
686 crypto_mod_put(alg);
687 return tfm;
688}
689EXPORT_SYMBOL_GPL(crypto_spawn_tfm2);
690
2825982d
HX
691int crypto_register_notifier(struct notifier_block *nb)
692{
693 return blocking_notifier_chain_register(&crypto_chain, nb);
694}
695EXPORT_SYMBOL_GPL(crypto_register_notifier);
696
697int crypto_unregister_notifier(struct notifier_block *nb)
698{
699 return blocking_notifier_chain_unregister(&crypto_chain, nb);
700}
701EXPORT_SYMBOL_GPL(crypto_unregister_notifier);
702
ebc610e5 703struct crypto_attr_type *crypto_get_attr_type(struct rtattr **tb)
7fed0bf2 704{
39e1ee01 705 struct rtattr *rta = tb[0];
ebc610e5
HX
706 struct crypto_attr_type *algt;
707
708 if (!rta)
709 return ERR_PTR(-ENOENT);
710 if (RTA_PAYLOAD(rta) < sizeof(*algt))
711 return ERR_PTR(-EINVAL);
39e1ee01
HX
712 if (rta->rta_type != CRYPTOA_TYPE)
713 return ERR_PTR(-EINVAL);
ebc610e5
HX
714
715 algt = RTA_DATA(rta);
716
717 return algt;
718}
719EXPORT_SYMBOL_GPL(crypto_get_attr_type);
720
721int crypto_check_attr_type(struct rtattr **tb, u32 type)
722{
723 struct crypto_attr_type *algt;
724
725 algt = crypto_get_attr_type(tb);
726 if (IS_ERR(algt))
727 return PTR_ERR(algt);
728
729 if ((algt->type ^ type) & algt->mask)
730 return -EINVAL;
731
732 return 0;
733}
734EXPORT_SYMBOL_GPL(crypto_check_attr_type);
735
68b6c7d6 736const char *crypto_attr_alg_name(struct rtattr *rta)
ebc610e5 737{
7fed0bf2
HX
738 struct crypto_attr_alg *alga;
739
ebc610e5
HX
740 if (!rta)
741 return ERR_PTR(-ENOENT);
742 if (RTA_PAYLOAD(rta) < sizeof(*alga))
7fed0bf2 743 return ERR_PTR(-EINVAL);
39e1ee01
HX
744 if (rta->rta_type != CRYPTOA_ALG)
745 return ERR_PTR(-EINVAL);
7fed0bf2
HX
746
747 alga = RTA_DATA(rta);
748 alga->name[CRYPTO_MAX_ALG_NAME - 1] = 0;
749
68b6c7d6
HX
750 return alga->name;
751}
752EXPORT_SYMBOL_GPL(crypto_attr_alg_name);
753
d06854f0
HX
754struct crypto_alg *crypto_attr_alg2(struct rtattr *rta,
755 const struct crypto_type *frontend,
756 u32 type, u32 mask)
68b6c7d6
HX
757{
758 const char *name;
68b6c7d6
HX
759
760 name = crypto_attr_alg_name(rta);
68b6c7d6 761 if (IS_ERR(name))
3e8afe35 762 return ERR_CAST(name);
68b6c7d6 763
d06854f0 764 return crypto_find_alg(name, frontend, type, mask);
7fed0bf2 765}
d06854f0 766EXPORT_SYMBOL_GPL(crypto_attr_alg2);
3c09f17c
HX
767
768int crypto_attr_u32(struct rtattr *rta, u32 *num)
769{
770 struct crypto_attr_u32 *nu32;
771
772 if (!rta)
773 return -ENOENT;
774 if (RTA_PAYLOAD(rta) < sizeof(*nu32))
775 return -EINVAL;
776 if (rta->rta_type != CRYPTOA_U32)
777 return -EINVAL;
778
779 nu32 = RTA_DATA(rta);
780 *num = nu32->num;
781
782 return 0;
783}
784EXPORT_SYMBOL_GPL(crypto_attr_u32);
7fed0bf2 785
70ec7bb9
HX
786void *crypto_alloc_instance2(const char *name, struct crypto_alg *alg,
787 unsigned int head)
7fed0bf2
HX
788{
789 struct crypto_instance *inst;
70ec7bb9 790 char *p;
7fed0bf2
HX
791 int err;
792
70ec7bb9
HX
793 p = kzalloc(head + sizeof(*inst) + sizeof(struct crypto_spawn),
794 GFP_KERNEL);
795 if (!p)
7fed0bf2
HX
796 return ERR_PTR(-ENOMEM);
797
70ec7bb9
HX
798 inst = (void *)(p + head);
799
7fed0bf2
HX
800 err = -ENAMETOOLONG;
801 if (snprintf(inst->alg.cra_name, CRYPTO_MAX_ALG_NAME, "%s(%s)", name,
802 alg->cra_name) >= CRYPTO_MAX_ALG_NAME)
803 goto err_free_inst;
804
805 if (snprintf(inst->alg.cra_driver_name, CRYPTO_MAX_ALG_NAME, "%s(%s)",
806 name, alg->cra_driver_name) >= CRYPTO_MAX_ALG_NAME)
807 goto err_free_inst;
808
70ec7bb9
HX
809 return p;
810
811err_free_inst:
812 kfree(p);
813 return ERR_PTR(err);
814}
815EXPORT_SYMBOL_GPL(crypto_alloc_instance2);
816
817struct crypto_instance *crypto_alloc_instance(const char *name,
818 struct crypto_alg *alg)
819{
820 struct crypto_instance *inst;
821 struct crypto_spawn *spawn;
822 int err;
823
824 inst = crypto_alloc_instance2(name, alg, 0);
825 if (IS_ERR(inst))
826 goto out;
827
7fed0bf2 828 spawn = crypto_instance_ctx(inst);
a73e6996
HX
829 err = crypto_init_spawn(spawn, alg, inst,
830 CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_ASYNC);
7fed0bf2
HX
831
832 if (err)
833 goto err_free_inst;
834
835 return inst;
836
837err_free_inst:
838 kfree(inst);
70ec7bb9
HX
839 inst = ERR_PTR(err);
840
841out:
842 return inst;
7fed0bf2
HX
843}
844EXPORT_SYMBOL_GPL(crypto_alloc_instance);
845
b5b7f088
HX
846void crypto_init_queue(struct crypto_queue *queue, unsigned int max_qlen)
847{
848 INIT_LIST_HEAD(&queue->list);
849 queue->backlog = &queue->list;
850 queue->qlen = 0;
851 queue->max_qlen = max_qlen;
852}
853EXPORT_SYMBOL_GPL(crypto_init_queue);
854
855int crypto_enqueue_request(struct crypto_queue *queue,
856 struct crypto_async_request *request)
857{
858 int err = -EINPROGRESS;
859
860 if (unlikely(queue->qlen >= queue->max_qlen)) {
861 err = -EBUSY;
862 if (!(request->flags & CRYPTO_TFM_REQ_MAY_BACKLOG))
863 goto out;
864 if (queue->backlog == &queue->list)
865 queue->backlog = &request->list;
866 }
867
868 queue->qlen++;
869 list_add_tail(&request->list, &queue->list);
870
871out:
872 return err;
873}
874EXPORT_SYMBOL_GPL(crypto_enqueue_request);
875
0c7d400f 876void *__crypto_dequeue_request(struct crypto_queue *queue, unsigned int offset)
b5b7f088
HX
877{
878 struct list_head *request;
879
880 if (unlikely(!queue->qlen))
881 return NULL;
882
883 queue->qlen--;
884
885 if (queue->backlog != &queue->list)
886 queue->backlog = queue->backlog->next;
887
888 request = queue->list.next;
889 list_del(request);
890
0c7d400f
HX
891 return (char *)list_entry(request, struct crypto_async_request, list) -
892 offset;
893}
894EXPORT_SYMBOL_GPL(__crypto_dequeue_request);
895
896struct crypto_async_request *crypto_dequeue_request(struct crypto_queue *queue)
897{
898 return __crypto_dequeue_request(queue, 0);
b5b7f088
HX
899}
900EXPORT_SYMBOL_GPL(crypto_dequeue_request);
901
902int crypto_tfm_in_queue(struct crypto_queue *queue, struct crypto_tfm *tfm)
903{
904 struct crypto_async_request *req;
905
906 list_for_each_entry(req, &queue->list, list) {
907 if (req->tfm == tfm)
908 return 1;
909 }
910
911 return 0;
912}
913EXPORT_SYMBOL_GPL(crypto_tfm_in_queue);
914
7613636d
HX
915static inline void crypto_inc_byte(u8 *a, unsigned int size)
916{
917 u8 *b = (a + size);
918 u8 c;
919
920 for (; size; size--) {
921 c = *--b + 1;
922 *b = c;
923 if (c)
924 break;
925 }
926}
927
928void crypto_inc(u8 *a, unsigned int size)
929{
930 __be32 *b = (__be32 *)(a + size);
931 u32 c;
932
933 for (; size >= 4; size -= 4) {
934 c = be32_to_cpu(*--b) + 1;
935 *b = cpu_to_be32(c);
936 if (c)
937 return;
938 }
939
940 crypto_inc_byte(a, size);
941}
942EXPORT_SYMBOL_GPL(crypto_inc);
943
944static inline void crypto_xor_byte(u8 *a, const u8 *b, unsigned int size)
945{
946 for (; size; size--)
947 *a++ ^= *b++;
948}
949
950void crypto_xor(u8 *dst, const u8 *src, unsigned int size)
951{
952 u32 *a = (u32 *)dst;
953 u32 *b = (u32 *)src;
954
955 for (; size >= 4; size -= 4)
956 *a++ ^= *b++;
957
958 crypto_xor_byte((u8 *)a, (u8 *)b, size);
959}
960EXPORT_SYMBOL_GPL(crypto_xor);
961
cce9e06d
HX
962static int __init crypto_algapi_init(void)
963{
964 crypto_init_proc();
965 return 0;
966}
967
968static void __exit crypto_algapi_exit(void)
969{
970 crypto_exit_proc();
971}
972
973module_init(crypto_algapi_init);
974module_exit(crypto_algapi_exit);
975
976MODULE_LICENSE("GPL");
977MODULE_DESCRIPTION("Cryptographic algorithms API");
This page took 0.621469 seconds and 5 git commands to generate.