serial: 8250_uniphier: call clk_disable_unprepare() on failure path
[linux-2.6/btrfs-unstable.git] / crypto / algapi.c
blob3c079b7f23f6bada906f9d444a50cd15b0831d65
1 /*
2 * Cryptographic API for algorithms (i.e., low-level API).
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)
9 * any later version.
13 #include <linux/err.h>
14 #include <linux/errno.h>
15 #include <linux/fips.h>
16 #include <linux/init.h>
17 #include <linux/kernel.h>
18 #include <linux/list.h>
19 #include <linux/module.h>
20 #include <linux/rtnetlink.h>
21 #include <linux/slab.h>
22 #include <linux/string.h>
24 #include "internal.h"
26 static LIST_HEAD(crypto_template_list);
28 static inline int crypto_set_driver_name(struct crypto_alg *alg)
30 static const char suffix[] = "-generic";
31 char *driver_name = alg->cra_driver_name;
32 int len;
34 if (*driver_name)
35 return 0;
37 len = strlcpy(driver_name, alg->cra_name, CRYPTO_MAX_ALG_NAME);
38 if (len + sizeof(suffix) > CRYPTO_MAX_ALG_NAME)
39 return -ENAMETOOLONG;
41 memcpy(driver_name + len, suffix, sizeof(suffix));
42 return 0;
45 static inline void crypto_check_module_sig(struct module *mod)
47 if (fips_enabled && mod && !module_sig_ok(mod))
48 panic("Module %s signature verification failed in FIPS mode\n",
49 module_name(mod));
52 static int crypto_check_alg(struct crypto_alg *alg)
54 crypto_check_module_sig(alg->cra_module);
56 if (alg->cra_alignmask & (alg->cra_alignmask + 1))
57 return -EINVAL;
59 if (alg->cra_blocksize > PAGE_SIZE / 8)
60 return -EINVAL;
62 if (alg->cra_priority < 0)
63 return -EINVAL;
65 atomic_set(&alg->cra_refcnt, 1);
67 return crypto_set_driver_name(alg);
70 static void crypto_destroy_instance(struct crypto_alg *alg)
72 struct crypto_instance *inst = (void *)alg;
73 struct crypto_template *tmpl = inst->tmpl;
75 tmpl->free(inst);
76 crypto_tmpl_put(tmpl);
79 static 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)
84 struct crypto_spawn *spawn, *n;
86 if (list_empty(stack))
87 return NULL;
89 spawn = list_first_entry(stack, struct crypto_spawn, list);
90 n = list_entry(spawn->list.next, struct crypto_spawn, list);
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;
97 list_move(&spawn->list, secondary_spawns);
99 return &n->list == stack ? top : &n->inst->alg.cra_users;
102 static void crypto_remove_instance(struct crypto_instance *inst,
103 struct list_head *list)
105 struct crypto_template *tmpl = inst->tmpl;
107 if (crypto_is_dead(&inst->alg))
108 return;
110 inst->alg.cra_flags |= CRYPTO_ALG_DEAD;
111 if (hlist_unhashed(&inst->list))
112 return;
114 if (!tmpl || !crypto_tmpl_get(tmpl))
115 return;
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;
122 BUG_ON(!list_empty(&inst->alg.cra_users));
125 void crypto_remove_spawns(struct crypto_alg *alg, struct list_head *list,
126 struct crypto_alg *nalg)
128 u32 new_type = (nalg ?: alg)->cra_flags;
129 struct crypto_spawn *spawn, *n;
130 LIST_HEAD(secondary_spawns);
131 struct list_head *spawns;
132 LIST_HEAD(stack);
133 LIST_HEAD(top);
135 spawns = &alg->cra_users;
136 list_for_each_entry_safe(spawn, n, spawns, list) {
137 if ((spawn->alg->cra_flags ^ new_type) & spawn->mask)
138 continue;
140 list_move(&spawn->list, &top);
143 spawns = &top;
144 do {
145 while (!list_empty(spawns)) {
146 struct crypto_instance *inst;
148 spawn = list_first_entry(spawns, struct crypto_spawn,
149 list);
150 inst = spawn->inst;
152 BUG_ON(&inst->alg == alg);
154 list_move(&spawn->list, &stack);
156 if (&inst->alg == nalg)
157 break;
159 spawn->alg = NULL;
160 spawns = &inst->alg.cra_users;
162 } while ((spawns = crypto_more_spawns(alg, &stack, &top,
163 &secondary_spawns)));
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
169 crypto_remove_instance(spawn->inst, list);
172 EXPORT_SYMBOL_GPL(crypto_remove_spawns);
174 static struct crypto_larval *__crypto_register_alg(struct crypto_alg *alg)
176 struct crypto_alg *q;
177 struct crypto_larval *larval;
178 int ret = -EAGAIN;
180 if (crypto_is_dead(alg))
181 goto err;
183 INIT_LIST_HEAD(&alg->cra_users);
185 /* No cheating! */
186 alg->cra_flags &= ~CRYPTO_ALG_TESTED;
188 ret = -EEXIST;
190 list_for_each_entry(q, &crypto_alg_list, cra_list) {
191 if (q == alg)
192 goto err;
194 if (crypto_is_moribund(q))
195 continue;
197 if (crypto_is_larval(q)) {
198 if (!strcmp(alg->cra_driver_name, q->cra_driver_name))
199 goto err;
200 continue;
203 if (!strcmp(q->cra_driver_name, alg->cra_name) ||
204 !strcmp(q->cra_name, alg->cra_driver_name))
205 goto err;
208 larval = crypto_larval_alloc(alg->cra_name,
209 alg->cra_flags | CRYPTO_ALG_TESTED, 0);
210 if (IS_ERR(larval))
211 goto out;
213 ret = -ENOENT;
214 larval->adult = crypto_mod_get(alg);
215 if (!larval->adult)
216 goto free_larval;
218 atomic_set(&larval->alg.cra_refcnt, 1);
219 memcpy(larval->alg.cra_driver_name, alg->cra_driver_name,
220 CRYPTO_MAX_ALG_NAME);
221 larval->alg.cra_priority = alg->cra_priority;
223 list_add(&alg->cra_list, &crypto_alg_list);
224 list_add(&larval->alg.cra_list, &crypto_alg_list);
226 out:
227 return larval;
229 free_larval:
230 kfree(larval);
231 err:
232 larval = ERR_PTR(ret);
233 goto out;
236 void crypto_alg_tested(const char *name, int err)
238 struct crypto_larval *test;
239 struct crypto_alg *alg;
240 struct crypto_alg *q;
241 LIST_HEAD(list);
243 down_write(&crypto_alg_sem);
244 list_for_each_entry(q, &crypto_alg_list, cra_list) {
245 if (crypto_is_moribund(q) || !crypto_is_larval(q))
246 continue;
248 test = (struct crypto_larval *)q;
250 if (!strcmp(q->cra_driver_name, name))
251 goto found;
254 printk(KERN_ERR "alg: Unexpected test result for %s: %d\n", name, err);
255 goto unlock;
257 found:
258 q->cra_flags |= CRYPTO_ALG_DEAD;
259 alg = test->adult;
260 if (err || list_empty(&alg->cra_list))
261 goto complete;
263 alg->cra_flags |= CRYPTO_ALG_TESTED;
265 list_for_each_entry(q, &crypto_alg_list, cra_list) {
266 if (q == alg)
267 continue;
269 if (crypto_is_moribund(q))
270 continue;
272 if (crypto_is_larval(q)) {
273 struct crypto_larval *larval = (void *)q;
276 * Check to see if either our generic name or
277 * specific name can satisfy the name requested
278 * by the larval entry q.
280 if (strcmp(alg->cra_name, q->cra_name) &&
281 strcmp(alg->cra_driver_name, q->cra_name))
282 continue;
284 if (larval->adult)
285 continue;
286 if ((q->cra_flags ^ alg->cra_flags) & larval->mask)
287 continue;
288 if (!crypto_mod_get(alg))
289 continue;
291 larval->adult = alg;
292 continue;
295 if (strcmp(alg->cra_name, q->cra_name))
296 continue;
298 if (strcmp(alg->cra_driver_name, q->cra_driver_name) &&
299 q->cra_priority > alg->cra_priority)
300 continue;
302 crypto_remove_spawns(q, &list, alg);
305 complete:
306 complete_all(&test->completion);
308 unlock:
309 up_write(&crypto_alg_sem);
311 crypto_remove_final(&list);
313 EXPORT_SYMBOL_GPL(crypto_alg_tested);
315 void crypto_remove_final(struct list_head *list)
317 struct crypto_alg *alg;
318 struct crypto_alg *n;
320 list_for_each_entry_safe(alg, n, list, cra_list) {
321 list_del_init(&alg->cra_list);
322 crypto_alg_put(alg);
325 EXPORT_SYMBOL_GPL(crypto_remove_final);
327 static void crypto_wait_for_test(struct crypto_larval *larval)
329 int err;
331 err = crypto_probing_notify(CRYPTO_MSG_ALG_REGISTER, larval->adult);
332 if (err != NOTIFY_STOP) {
333 if (WARN_ON(err != NOTIFY_DONE))
334 goto out;
335 crypto_alg_tested(larval->alg.cra_driver_name, 0);
338 err = wait_for_completion_interruptible(&larval->completion);
339 WARN_ON(err);
341 out:
342 crypto_larval_kill(&larval->alg);
345 int crypto_register_alg(struct crypto_alg *alg)
347 struct crypto_larval *larval;
348 int err;
350 err = crypto_check_alg(alg);
351 if (err)
352 return err;
354 down_write(&crypto_alg_sem);
355 larval = __crypto_register_alg(alg);
356 up_write(&crypto_alg_sem);
358 if (IS_ERR(larval))
359 return PTR_ERR(larval);
361 crypto_wait_for_test(larval);
362 return 0;
364 EXPORT_SYMBOL_GPL(crypto_register_alg);
366 static int crypto_remove_alg(struct crypto_alg *alg, struct list_head *list)
368 if (unlikely(list_empty(&alg->cra_list)))
369 return -ENOENT;
371 alg->cra_flags |= CRYPTO_ALG_DEAD;
373 crypto_notify(CRYPTO_MSG_ALG_UNREGISTER, alg);
374 list_del_init(&alg->cra_list);
375 crypto_remove_spawns(alg, list, NULL);
377 return 0;
380 int crypto_unregister_alg(struct crypto_alg *alg)
382 int ret;
383 LIST_HEAD(list);
385 down_write(&crypto_alg_sem);
386 ret = crypto_remove_alg(alg, &list);
387 up_write(&crypto_alg_sem);
389 if (ret)
390 return ret;
392 BUG_ON(atomic_read(&alg->cra_refcnt) != 1);
393 if (alg->cra_destroy)
394 alg->cra_destroy(alg);
396 crypto_remove_final(&list);
397 return 0;
399 EXPORT_SYMBOL_GPL(crypto_unregister_alg);
401 int crypto_register_algs(struct crypto_alg *algs, int count)
403 int i, ret;
405 for (i = 0; i < count; i++) {
406 ret = crypto_register_alg(&algs[i]);
407 if (ret)
408 goto err;
411 return 0;
413 err:
414 for (--i; i >= 0; --i)
415 crypto_unregister_alg(&algs[i]);
417 return ret;
419 EXPORT_SYMBOL_GPL(crypto_register_algs);
421 int crypto_unregister_algs(struct crypto_alg *algs, int count)
423 int i, ret;
425 for (i = 0; i < count; i++) {
426 ret = crypto_unregister_alg(&algs[i]);
427 if (ret)
428 pr_err("Failed to unregister %s %s: %d\n",
429 algs[i].cra_driver_name, algs[i].cra_name, ret);
432 return 0;
434 EXPORT_SYMBOL_GPL(crypto_unregister_algs);
436 int crypto_register_template(struct crypto_template *tmpl)
438 struct crypto_template *q;
439 int err = -EEXIST;
441 down_write(&crypto_alg_sem);
443 crypto_check_module_sig(tmpl->module);
445 list_for_each_entry(q, &crypto_template_list, list) {
446 if (q == tmpl)
447 goto out;
450 list_add(&tmpl->list, &crypto_template_list);
451 crypto_notify(CRYPTO_MSG_TMPL_REGISTER, tmpl);
452 err = 0;
453 out:
454 up_write(&crypto_alg_sem);
455 return err;
457 EXPORT_SYMBOL_GPL(crypto_register_template);
459 void crypto_unregister_template(struct crypto_template *tmpl)
461 struct crypto_instance *inst;
462 struct hlist_node *n;
463 struct hlist_head *list;
464 LIST_HEAD(users);
466 down_write(&crypto_alg_sem);
468 BUG_ON(list_empty(&tmpl->list));
469 list_del_init(&tmpl->list);
471 list = &tmpl->instances;
472 hlist_for_each_entry(inst, list, list) {
473 int err = crypto_remove_alg(&inst->alg, &users);
475 BUG_ON(err);
478 crypto_notify(CRYPTO_MSG_TMPL_UNREGISTER, tmpl);
480 up_write(&crypto_alg_sem);
482 hlist_for_each_entry_safe(inst, n, list, list) {
483 BUG_ON(atomic_read(&inst->alg.cra_refcnt) != 1);
484 tmpl->free(inst);
486 crypto_remove_final(&users);
488 EXPORT_SYMBOL_GPL(crypto_unregister_template);
490 static struct crypto_template *__crypto_lookup_template(const char *name)
492 struct crypto_template *q, *tmpl = NULL;
494 down_read(&crypto_alg_sem);
495 list_for_each_entry(q, &crypto_template_list, list) {
496 if (strcmp(q->name, name))
497 continue;
498 if (unlikely(!crypto_tmpl_get(q)))
499 continue;
501 tmpl = q;
502 break;
504 up_read(&crypto_alg_sem);
506 return tmpl;
509 struct crypto_template *crypto_lookup_template(const char *name)
511 return try_then_request_module(__crypto_lookup_template(name),
512 "crypto-%s", name);
514 EXPORT_SYMBOL_GPL(crypto_lookup_template);
516 int crypto_register_instance(struct crypto_template *tmpl,
517 struct crypto_instance *inst)
519 struct crypto_larval *larval;
520 int err;
522 err = crypto_check_alg(&inst->alg);
523 if (err)
524 return err;
526 inst->alg.cra_module = tmpl->module;
527 inst->alg.cra_flags |= CRYPTO_ALG_INSTANCE;
529 if (unlikely(!crypto_mod_get(&inst->alg)))
530 return -EAGAIN;
532 down_write(&crypto_alg_sem);
534 larval = __crypto_register_alg(&inst->alg);
535 if (IS_ERR(larval))
536 goto unlock;
538 hlist_add_head(&inst->list, &tmpl->instances);
539 inst->tmpl = tmpl;
541 unlock:
542 up_write(&crypto_alg_sem);
544 err = PTR_ERR(larval);
545 if (IS_ERR(larval))
546 goto err;
548 crypto_wait_for_test(larval);
550 /* Remove instance if test failed */
551 if (!(inst->alg.cra_flags & CRYPTO_ALG_TESTED))
552 crypto_unregister_instance(inst);
553 err = 0;
555 err:
556 crypto_mod_put(&inst->alg);
557 return err;
559 EXPORT_SYMBOL_GPL(crypto_register_instance);
561 int crypto_unregister_instance(struct crypto_instance *inst)
563 LIST_HEAD(list);
565 down_write(&crypto_alg_sem);
567 crypto_remove_spawns(&inst->alg, &list, NULL);
568 crypto_remove_instance(inst, &list);
570 up_write(&crypto_alg_sem);
572 crypto_remove_final(&list);
574 return 0;
576 EXPORT_SYMBOL_GPL(crypto_unregister_instance);
578 int crypto_init_spawn(struct crypto_spawn *spawn, struct crypto_alg *alg,
579 struct crypto_instance *inst, u32 mask)
581 int err = -EAGAIN;
583 spawn->inst = inst;
584 spawn->mask = mask;
586 down_write(&crypto_alg_sem);
587 if (!crypto_is_moribund(alg)) {
588 list_add(&spawn->list, &alg->cra_users);
589 spawn->alg = alg;
590 err = 0;
592 up_write(&crypto_alg_sem);
594 return err;
596 EXPORT_SYMBOL_GPL(crypto_init_spawn);
598 int crypto_init_spawn2(struct crypto_spawn *spawn, struct crypto_alg *alg,
599 struct crypto_instance *inst,
600 const struct crypto_type *frontend)
602 int err = -EINVAL;
604 if ((alg->cra_flags ^ frontend->type) & frontend->maskset)
605 goto out;
607 spawn->frontend = frontend;
608 err = crypto_init_spawn(spawn, alg, inst, frontend->maskset);
610 out:
611 return err;
613 EXPORT_SYMBOL_GPL(crypto_init_spawn2);
615 int crypto_grab_spawn(struct crypto_spawn *spawn, const char *name,
616 u32 type, u32 mask)
618 struct crypto_alg *alg;
619 int err;
621 alg = crypto_find_alg(name, spawn->frontend, type, mask);
622 if (IS_ERR(alg))
623 return PTR_ERR(alg);
625 err = crypto_init_spawn(spawn, alg, spawn->inst, mask);
626 crypto_mod_put(alg);
627 return err;
629 EXPORT_SYMBOL_GPL(crypto_grab_spawn);
631 void crypto_drop_spawn(struct crypto_spawn *spawn)
633 if (!spawn->alg)
634 return;
636 down_write(&crypto_alg_sem);
637 list_del(&spawn->list);
638 up_write(&crypto_alg_sem);
640 EXPORT_SYMBOL_GPL(crypto_drop_spawn);
642 static struct crypto_alg *crypto_spawn_alg(struct crypto_spawn *spawn)
644 struct crypto_alg *alg;
645 struct crypto_alg *alg2;
647 down_read(&crypto_alg_sem);
648 alg = spawn->alg;
649 alg2 = alg;
650 if (alg2)
651 alg2 = crypto_mod_get(alg2);
652 up_read(&crypto_alg_sem);
654 if (!alg2) {
655 if (alg)
656 crypto_shoot_alg(alg);
657 return ERR_PTR(-EAGAIN);
660 return alg;
663 struct crypto_tfm *crypto_spawn_tfm(struct crypto_spawn *spawn, u32 type,
664 u32 mask)
666 struct crypto_alg *alg;
667 struct crypto_tfm *tfm;
669 alg = crypto_spawn_alg(spawn);
670 if (IS_ERR(alg))
671 return ERR_CAST(alg);
673 tfm = ERR_PTR(-EINVAL);
674 if (unlikely((alg->cra_flags ^ type) & mask))
675 goto out_put_alg;
677 tfm = __crypto_alloc_tfm(alg, type, mask);
678 if (IS_ERR(tfm))
679 goto out_put_alg;
681 return tfm;
683 out_put_alg:
684 crypto_mod_put(alg);
685 return tfm;
687 EXPORT_SYMBOL_GPL(crypto_spawn_tfm);
689 void *crypto_spawn_tfm2(struct crypto_spawn *spawn)
691 struct crypto_alg *alg;
692 struct crypto_tfm *tfm;
694 alg = crypto_spawn_alg(spawn);
695 if (IS_ERR(alg))
696 return ERR_CAST(alg);
698 tfm = crypto_create_tfm(alg, spawn->frontend);
699 if (IS_ERR(tfm))
700 goto out_put_alg;
702 return tfm;
704 out_put_alg:
705 crypto_mod_put(alg);
706 return tfm;
708 EXPORT_SYMBOL_GPL(crypto_spawn_tfm2);
710 int crypto_register_notifier(struct notifier_block *nb)
712 return blocking_notifier_chain_register(&crypto_chain, nb);
714 EXPORT_SYMBOL_GPL(crypto_register_notifier);
716 int crypto_unregister_notifier(struct notifier_block *nb)
718 return blocking_notifier_chain_unregister(&crypto_chain, nb);
720 EXPORT_SYMBOL_GPL(crypto_unregister_notifier);
722 struct crypto_attr_type *crypto_get_attr_type(struct rtattr **tb)
724 struct rtattr *rta = tb[0];
725 struct crypto_attr_type *algt;
727 if (!rta)
728 return ERR_PTR(-ENOENT);
729 if (RTA_PAYLOAD(rta) < sizeof(*algt))
730 return ERR_PTR(-EINVAL);
731 if (rta->rta_type != CRYPTOA_TYPE)
732 return ERR_PTR(-EINVAL);
734 algt = RTA_DATA(rta);
736 return algt;
738 EXPORT_SYMBOL_GPL(crypto_get_attr_type);
740 int crypto_check_attr_type(struct rtattr **tb, u32 type)
742 struct crypto_attr_type *algt;
744 algt = crypto_get_attr_type(tb);
745 if (IS_ERR(algt))
746 return PTR_ERR(algt);
748 if ((algt->type ^ type) & algt->mask)
749 return -EINVAL;
751 return 0;
753 EXPORT_SYMBOL_GPL(crypto_check_attr_type);
755 const char *crypto_attr_alg_name(struct rtattr *rta)
757 struct crypto_attr_alg *alga;
759 if (!rta)
760 return ERR_PTR(-ENOENT);
761 if (RTA_PAYLOAD(rta) < sizeof(*alga))
762 return ERR_PTR(-EINVAL);
763 if (rta->rta_type != CRYPTOA_ALG)
764 return ERR_PTR(-EINVAL);
766 alga = RTA_DATA(rta);
767 alga->name[CRYPTO_MAX_ALG_NAME - 1] = 0;
769 return alga->name;
771 EXPORT_SYMBOL_GPL(crypto_attr_alg_name);
773 struct crypto_alg *crypto_attr_alg2(struct rtattr *rta,
774 const struct crypto_type *frontend,
775 u32 type, u32 mask)
777 const char *name;
779 name = crypto_attr_alg_name(rta);
780 if (IS_ERR(name))
781 return ERR_CAST(name);
783 return crypto_find_alg(name, frontend, type, mask);
785 EXPORT_SYMBOL_GPL(crypto_attr_alg2);
787 int crypto_attr_u32(struct rtattr *rta, u32 *num)
789 struct crypto_attr_u32 *nu32;
791 if (!rta)
792 return -ENOENT;
793 if (RTA_PAYLOAD(rta) < sizeof(*nu32))
794 return -EINVAL;
795 if (rta->rta_type != CRYPTOA_U32)
796 return -EINVAL;
798 nu32 = RTA_DATA(rta);
799 *num = nu32->num;
801 return 0;
803 EXPORT_SYMBOL_GPL(crypto_attr_u32);
805 void *crypto_alloc_instance2(const char *name, struct crypto_alg *alg,
806 unsigned int head)
808 struct crypto_instance *inst;
809 char *p;
810 int err;
812 p = kzalloc(head + sizeof(*inst) + sizeof(struct crypto_spawn),
813 GFP_KERNEL);
814 if (!p)
815 return ERR_PTR(-ENOMEM);
817 inst = (void *)(p + head);
819 err = -ENAMETOOLONG;
820 if (snprintf(inst->alg.cra_name, CRYPTO_MAX_ALG_NAME, "%s(%s)", name,
821 alg->cra_name) >= CRYPTO_MAX_ALG_NAME)
822 goto err_free_inst;
824 if (snprintf(inst->alg.cra_driver_name, CRYPTO_MAX_ALG_NAME, "%s(%s)",
825 name, alg->cra_driver_name) >= CRYPTO_MAX_ALG_NAME)
826 goto err_free_inst;
828 return p;
830 err_free_inst:
831 kfree(p);
832 return ERR_PTR(err);
834 EXPORT_SYMBOL_GPL(crypto_alloc_instance2);
836 struct crypto_instance *crypto_alloc_instance(const char *name,
837 struct crypto_alg *alg)
839 struct crypto_instance *inst;
840 struct crypto_spawn *spawn;
841 int err;
843 inst = crypto_alloc_instance2(name, alg, 0);
844 if (IS_ERR(inst))
845 goto out;
847 spawn = crypto_instance_ctx(inst);
848 err = crypto_init_spawn(spawn, alg, inst,
849 CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_ASYNC);
851 if (err)
852 goto err_free_inst;
854 return inst;
856 err_free_inst:
857 kfree(inst);
858 inst = ERR_PTR(err);
860 out:
861 return inst;
863 EXPORT_SYMBOL_GPL(crypto_alloc_instance);
865 void crypto_init_queue(struct crypto_queue *queue, unsigned int max_qlen)
867 INIT_LIST_HEAD(&queue->list);
868 queue->backlog = &queue->list;
869 queue->qlen = 0;
870 queue->max_qlen = max_qlen;
872 EXPORT_SYMBOL_GPL(crypto_init_queue);
874 int crypto_enqueue_request(struct crypto_queue *queue,
875 struct crypto_async_request *request)
877 int err = -EINPROGRESS;
879 if (unlikely(queue->qlen >= queue->max_qlen)) {
880 err = -EBUSY;
881 if (!(request->flags & CRYPTO_TFM_REQ_MAY_BACKLOG))
882 goto out;
883 if (queue->backlog == &queue->list)
884 queue->backlog = &request->list;
887 queue->qlen++;
888 list_add_tail(&request->list, &queue->list);
890 out:
891 return err;
893 EXPORT_SYMBOL_GPL(crypto_enqueue_request);
895 void *__crypto_dequeue_request(struct crypto_queue *queue, unsigned int offset)
897 struct list_head *request;
899 if (unlikely(!queue->qlen))
900 return NULL;
902 queue->qlen--;
904 if (queue->backlog != &queue->list)
905 queue->backlog = queue->backlog->next;
907 request = queue->list.next;
908 list_del(request);
910 return (char *)list_entry(request, struct crypto_async_request, list) -
911 offset;
913 EXPORT_SYMBOL_GPL(__crypto_dequeue_request);
915 struct crypto_async_request *crypto_dequeue_request(struct crypto_queue *queue)
917 return __crypto_dequeue_request(queue, 0);
919 EXPORT_SYMBOL_GPL(crypto_dequeue_request);
921 int crypto_tfm_in_queue(struct crypto_queue *queue, struct crypto_tfm *tfm)
923 struct crypto_async_request *req;
925 list_for_each_entry(req, &queue->list, list) {
926 if (req->tfm == tfm)
927 return 1;
930 return 0;
932 EXPORT_SYMBOL_GPL(crypto_tfm_in_queue);
934 static inline void crypto_inc_byte(u8 *a, unsigned int size)
936 u8 *b = (a + size);
937 u8 c;
939 for (; size; size--) {
940 c = *--b + 1;
941 *b = c;
942 if (c)
943 break;
947 void crypto_inc(u8 *a, unsigned int size)
949 __be32 *b = (__be32 *)(a + size);
950 u32 c;
952 for (; size >= 4; size -= 4) {
953 c = be32_to_cpu(*--b) + 1;
954 *b = cpu_to_be32(c);
955 if (c)
956 return;
959 crypto_inc_byte(a, size);
961 EXPORT_SYMBOL_GPL(crypto_inc);
963 static inline void crypto_xor_byte(u8 *a, const u8 *b, unsigned int size)
965 for (; size; size--)
966 *a++ ^= *b++;
969 void crypto_xor(u8 *dst, const u8 *src, unsigned int size)
971 u32 *a = (u32 *)dst;
972 u32 *b = (u32 *)src;
974 for (; size >= 4; size -= 4)
975 *a++ ^= *b++;
977 crypto_xor_byte((u8 *)a, (u8 *)b, size);
979 EXPORT_SYMBOL_GPL(crypto_xor);
981 unsigned int crypto_alg_extsize(struct crypto_alg *alg)
983 return alg->cra_ctxsize +
984 (alg->cra_alignmask & ~(crypto_tfm_ctx_alignment() - 1));
986 EXPORT_SYMBOL_GPL(crypto_alg_extsize);
988 static int __init crypto_algapi_init(void)
990 crypto_init_proc();
991 return 0;
994 static void __exit crypto_algapi_exit(void)
996 crypto_exit_proc();
999 module_init(crypto_algapi_init);
1000 module_exit(crypto_algapi_exit);
1002 MODULE_LICENSE("GPL");
1003 MODULE_DESCRIPTION("Cryptographic algorithms API");