blob: ff06a3bd1ca10c86bdebe5debd8ea077ae44e955 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Cryptographic API.
4 *
5 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
Herbert Xu5cb1454b2005-11-05 16:58:14 +11006 * Copyright (c) 2005 Herbert Xu <herbert@gondor.apana.org.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8#ifndef _CRYPTO_INTERNAL_H
9#define _CRYPTO_INTERNAL_H
Herbert Xucce9e062006-08-21 21:08:13 +100010
11#include <crypto/algapi.h>
Herbert Xu28259822006-08-06 21:23:26 +100012#include <linux/completion.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/mm.h>
14#include <linux/highmem.h>
15#include <linux/interrupt.h>
16#include <linux/init.h>
Herbert Xu5cb1454b2005-11-05 16:58:14 +110017#include <linux/list.h>
Herbert Xu4cc77202006-08-06 21:16:34 +100018#include <linux/module.h>
Herbert Xufbdae9f2005-07-06 13:53:29 -070019#include <linux/kernel.h>
Herbert Xu28259822006-08-06 21:23:26 +100020#include <linux/notifier.h>
Herbert Xu5cb1454b2005-11-05 16:58:14 +110021#include <linux/rwsem.h>
Herbert Xu64baf3c2005-09-01 17:43:05 -070022#include <linux/slab.h>
Neil Hormanccb778e2008-08-05 14:13:08 +080023
Herbert Xu4cc77202006-08-06 21:16:34 +100024struct crypto_instance;
25struct crypto_template;
26
Herbert Xu28259822006-08-06 21:23:26 +100027struct crypto_larval {
28 struct crypto_alg alg;
29 struct crypto_alg *adult;
30 struct completion completion;
Herbert Xu492e2b62006-09-21 11:35:17 +100031 u32 mask;
Herbert Xu28259822006-08-06 21:23:26 +100032};
33
Herbert Xu5cb1454b2005-11-05 16:58:14 +110034extern struct list_head crypto_alg_list;
35extern struct rw_semaphore crypto_alg_sem;
Herbert Xu28259822006-08-06 21:23:26 +100036extern struct blocking_notifier_head crypto_chain;
Herbert Xu5cb1454b2005-11-05 16:58:14 +110037
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#ifdef CONFIG_PROC_FS
39void __init crypto_init_proc(void);
Herbert Xucce9e062006-08-21 21:08:13 +100040void __exit crypto_exit_proc(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#else
42static inline void crypto_init_proc(void)
43{ }
Herbert Xucce9e062006-08-21 21:08:13 +100044static inline void crypto_exit_proc(void)
45{ }
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#endif
47
Herbert Xuf1ddcaf2007-01-27 10:05:15 +110048static inline unsigned int crypto_cipher_ctxsize(struct crypto_alg *alg)
Herbert Xufbdae9f2005-07-06 13:53:29 -070049{
Herbert Xuf1ddcaf2007-01-27 10:05:15 +110050 return alg->cra_ctxsize;
Herbert Xufbdae9f2005-07-06 13:53:29 -070051}
52
Herbert Xuf1ddcaf2007-01-27 10:05:15 +110053static inline unsigned int crypto_compress_ctxsize(struct crypto_alg *alg)
Herbert Xufbdae9f2005-07-06 13:53:29 -070054{
55 return alg->cra_ctxsize;
56}
57
Herbert Xu28259822006-08-06 21:23:26 +100058struct crypto_alg *crypto_mod_get(struct crypto_alg *alg);
Herbert Xu492e2b62006-09-21 11:35:17 +100059struct crypto_alg *crypto_alg_mod_lookup(const char *name, u32 type, u32 mask);
Herbert Xu28259822006-08-06 21:23:26 +100060
Herbert Xu73d38642008-08-03 21:15:23 +080061struct crypto_larval *crypto_larval_alloc(const char *name, u32 type, u32 mask);
Herbert Xub9c55aa2007-12-04 12:46:48 +110062void crypto_larval_kill(struct crypto_alg *alg);
Herbert Xu73d38642008-08-03 21:15:23 +080063void crypto_alg_tested(const char *name, int err);
Herbert Xu28259822006-08-06 21:23:26 +100064
Steffen Klassert89b596b2011-09-27 07:22:08 +020065void crypto_remove_spawns(struct crypto_alg *alg, struct list_head *list,
66 struct crypto_alg *nalg);
Steffen Klassert22e5b202011-09-27 07:23:07 +020067void crypto_remove_final(struct list_head *list);
Herbert Xu66035232020-04-10 16:09:42 +100068void crypto_shoot_alg(struct crypto_alg *alg);
Herbert Xu27d2a332007-01-24 20:50:26 +110069struct crypto_tfm *__crypto_alloc_tfm(struct crypto_alg *alg, u32 type,
70 u32 mask);
Herbert Xu3f683d62009-02-18 16:56:59 +080071void *crypto_create_tfm(struct crypto_alg *alg,
72 const struct crypto_type *frontend);
Herbert Xud06854f2009-07-08 17:53:16 +080073struct crypto_alg *crypto_find_alg(const char *alg_name,
74 const struct crypto_type *frontend,
75 u32 type, u32 mask);
Herbert Xu3f683d62009-02-18 16:56:59 +080076void *crypto_alloc_tfm(const char *alg_name,
77 const struct crypto_type *frontend, u32 type, u32 mask);
Herbert Xu6bfd4802006-09-21 11:39:29 +100078
Herbert Xu73d38642008-08-03 21:15:23 +080079int crypto_probing_notify(unsigned long val, void *v);
Herbert Xu28259822006-08-06 21:23:26 +100080
Herbert Xu38d21432015-04-20 13:39:00 +080081unsigned int crypto_alg_extsize(struct crypto_alg *alg);
82
Herbert Xuf2aefda2016-01-23 13:51:01 +080083int crypto_type_has_alg(const char *name, const struct crypto_type *frontend,
84 u32 type, u32 mask);
85
Herbert Xu939e1772013-06-25 19:15:17 +080086static inline struct crypto_alg *crypto_alg_get(struct crypto_alg *alg)
87{
Eric Biggersce8614a2017-12-29 10:00:46 -060088 refcount_inc(&alg->cra_refcnt);
Herbert Xu939e1772013-06-25 19:15:17 +080089 return alg;
90}
91
Herbert Xu6bfd4802006-09-21 11:39:29 +100092static inline void crypto_alg_put(struct crypto_alg *alg)
93{
Eric Biggersce8614a2017-12-29 10:00:46 -060094 if (refcount_dec_and_test(&alg->cra_refcnt) && alg->cra_destroy)
Herbert Xu6bfd4802006-09-21 11:39:29 +100095 alg->cra_destroy(alg);
96}
97
Herbert Xu4cc77202006-08-06 21:16:34 +100098static inline int crypto_tmpl_get(struct crypto_template *tmpl)
99{
100 return try_module_get(tmpl->module);
101}
102
103static inline void crypto_tmpl_put(struct crypto_template *tmpl)
104{
105 module_put(tmpl->module);
106}
107
Herbert Xu28259822006-08-06 21:23:26 +1000108static inline int crypto_is_larval(struct crypto_alg *alg)
109{
110 return alg->cra_flags & CRYPTO_ALG_LARVAL;
111}
112
Herbert Xu6bfd4802006-09-21 11:39:29 +1000113static inline int crypto_is_dead(struct crypto_alg *alg)
114{
115 return alg->cra_flags & CRYPTO_ALG_DEAD;
116}
117
118static inline int crypto_is_moribund(struct crypto_alg *alg)
119{
120 return alg->cra_flags & (CRYPTO_ALG_DEAD | CRYPTO_ALG_DYING);
121}
122
Herbert Xu73d38642008-08-03 21:15:23 +0800123static inline void crypto_notify(unsigned long val, void *v)
Herbert Xu28259822006-08-06 21:23:26 +1000124{
Herbert Xu73d38642008-08-03 21:15:23 +0800125 blocking_notifier_call_chain(&crypto_chain, val, v);
Herbert Xu28259822006-08-06 21:23:26 +1000126}
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#endif /* _CRYPTO_INTERNAL_H */
129