blob: 1b92a5a61852faa7aab1ae51dceb55b13bee939a [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);
Barry Song7bc13b52020-07-05 21:18:58 +120071void *crypto_create_tfm_node(struct crypto_alg *alg,
72 const struct crypto_type *frontend, int node);
73
74static inline void *crypto_create_tfm(struct crypto_alg *alg,
75 const struct crypto_type *frontend)
76{
77 return crypto_create_tfm_node(alg, frontend, NUMA_NO_NODE);
78}
79
Herbert Xud06854f2009-07-08 17:53:16 +080080struct crypto_alg *crypto_find_alg(const char *alg_name,
81 const struct crypto_type *frontend,
82 u32 type, u32 mask);
Barry Song7bc13b52020-07-05 21:18:58 +120083
84void *crypto_alloc_tfm_node(const char *alg_name,
85 const struct crypto_type *frontend, u32 type, u32 mask,
86 int node);
87
88static inline void *crypto_alloc_tfm(const char *alg_name,
89 const struct crypto_type *frontend, u32 type, u32 mask)
90{
91 return crypto_alloc_tfm_node(alg_name, frontend, type, mask, NUMA_NO_NODE);
92}
Herbert Xu6bfd4802006-09-21 11:39:29 +100093
Herbert Xu73d38642008-08-03 21:15:23 +080094int crypto_probing_notify(unsigned long val, void *v);
Herbert Xu28259822006-08-06 21:23:26 +100095
Herbert Xu38d21432015-04-20 13:39:00 +080096unsigned int crypto_alg_extsize(struct crypto_alg *alg);
97
Herbert Xuf2aefda2016-01-23 13:51:01 +080098int crypto_type_has_alg(const char *name, const struct crypto_type *frontend,
99 u32 type, u32 mask);
100
Herbert Xu939e1772013-06-25 19:15:17 +0800101static inline struct crypto_alg *crypto_alg_get(struct crypto_alg *alg)
102{
Eric Biggersce8614a2017-12-29 10:00:46 -0600103 refcount_inc(&alg->cra_refcnt);
Herbert Xu939e1772013-06-25 19:15:17 +0800104 return alg;
105}
106
Herbert Xu6bfd4802006-09-21 11:39:29 +1000107static inline void crypto_alg_put(struct crypto_alg *alg)
108{
Eric Biggersce8614a2017-12-29 10:00:46 -0600109 if (refcount_dec_and_test(&alg->cra_refcnt) && alg->cra_destroy)
Herbert Xu6bfd4802006-09-21 11:39:29 +1000110 alg->cra_destroy(alg);
111}
112
Herbert Xu4cc77202006-08-06 21:16:34 +1000113static inline int crypto_tmpl_get(struct crypto_template *tmpl)
114{
115 return try_module_get(tmpl->module);
116}
117
118static inline void crypto_tmpl_put(struct crypto_template *tmpl)
119{
120 module_put(tmpl->module);
121}
122
Herbert Xu28259822006-08-06 21:23:26 +1000123static inline int crypto_is_larval(struct crypto_alg *alg)
124{
125 return alg->cra_flags & CRYPTO_ALG_LARVAL;
126}
127
Herbert Xu6bfd4802006-09-21 11:39:29 +1000128static inline int crypto_is_dead(struct crypto_alg *alg)
129{
130 return alg->cra_flags & CRYPTO_ALG_DEAD;
131}
132
133static inline int crypto_is_moribund(struct crypto_alg *alg)
134{
135 return alg->cra_flags & (CRYPTO_ALG_DEAD | CRYPTO_ALG_DYING);
136}
137
Herbert Xu73d38642008-08-03 21:15:23 +0800138static inline void crypto_notify(unsigned long val, void *v)
Herbert Xu28259822006-08-06 21:23:26 +1000139{
Herbert Xu73d38642008-08-03 21:15:23 +0800140 blocking_notifier_call_chain(&crypto_chain, val, v);
Herbert Xu28259822006-08-06 21:23:26 +1000141}
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143#endif /* _CRYPTO_INTERNAL_H */
144