blob: 93df7bec844a7ce3cec2bcc604cc1ffbeb620761 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070061int crypto_init_cipher_ops(struct crypto_tfm *tfm);
62int crypto_init_compress_ops(struct crypto_tfm *tfm);
63
Herbert Xu73d38642008-08-03 21:15:23 +080064struct crypto_larval *crypto_larval_alloc(const char *name, u32 type, u32 mask);
Herbert Xub9c55aa2007-12-04 12:46:48 +110065void crypto_larval_kill(struct crypto_alg *alg);
Herbert Xu73d38642008-08-03 21:15:23 +080066void crypto_alg_tested(const char *name, int err);
Herbert Xu28259822006-08-06 21:23:26 +100067
Steffen Klassert89b596b2011-09-27 07:22:08 +020068void crypto_remove_spawns(struct crypto_alg *alg, struct list_head *list,
69 struct crypto_alg *nalg);
Steffen Klassert22e5b202011-09-27 07:23:07 +020070void crypto_remove_final(struct list_head *list);
Herbert Xu6bfd4802006-09-21 11:39:29 +100071void crypto_shoot_alg(struct crypto_alg *alg);
Herbert Xu27d2a332007-01-24 20:50:26 +110072struct crypto_tfm *__crypto_alloc_tfm(struct crypto_alg *alg, u32 type,
73 u32 mask);
Herbert Xu3f683d62009-02-18 16:56:59 +080074void *crypto_create_tfm(struct crypto_alg *alg,
75 const struct crypto_type *frontend);
Herbert Xud06854f2009-07-08 17:53:16 +080076struct crypto_alg *crypto_find_alg(const char *alg_name,
77 const struct crypto_type *frontend,
78 u32 type, u32 mask);
Herbert Xu3f683d62009-02-18 16:56:59 +080079void *crypto_alloc_tfm(const char *alg_name,
80 const struct crypto_type *frontend, u32 type, u32 mask);
Herbert Xu6bfd4802006-09-21 11:39:29 +100081
Herbert Xu73d38642008-08-03 21:15:23 +080082int crypto_probing_notify(unsigned long val, void *v);
Herbert Xu28259822006-08-06 21:23:26 +100083
Herbert Xu38d21432015-04-20 13:39:00 +080084unsigned int crypto_alg_extsize(struct crypto_alg *alg);
85
Herbert Xuf2aefda2016-01-23 13:51:01 +080086int crypto_type_has_alg(const char *name, const struct crypto_type *frontend,
87 u32 type, u32 mask);
88
Herbert Xu939e1772013-06-25 19:15:17 +080089static inline struct crypto_alg *crypto_alg_get(struct crypto_alg *alg)
90{
Eric Biggersce8614a2017-12-29 10:00:46 -060091 refcount_inc(&alg->cra_refcnt);
Herbert Xu939e1772013-06-25 19:15:17 +080092 return alg;
93}
94
Herbert Xu6bfd4802006-09-21 11:39:29 +100095static inline void crypto_alg_put(struct crypto_alg *alg)
96{
Eric Biggersce8614a2017-12-29 10:00:46 -060097 if (refcount_dec_and_test(&alg->cra_refcnt) && alg->cra_destroy)
Herbert Xu6bfd4802006-09-21 11:39:29 +100098 alg->cra_destroy(alg);
99}
100
Herbert Xu4cc77202006-08-06 21:16:34 +1000101static inline int crypto_tmpl_get(struct crypto_template *tmpl)
102{
103 return try_module_get(tmpl->module);
104}
105
106static inline void crypto_tmpl_put(struct crypto_template *tmpl)
107{
108 module_put(tmpl->module);
109}
110
Herbert Xu28259822006-08-06 21:23:26 +1000111static inline int crypto_is_larval(struct crypto_alg *alg)
112{
113 return alg->cra_flags & CRYPTO_ALG_LARVAL;
114}
115
Herbert Xu6bfd4802006-09-21 11:39:29 +1000116static inline int crypto_is_dead(struct crypto_alg *alg)
117{
118 return alg->cra_flags & CRYPTO_ALG_DEAD;
119}
120
121static inline int crypto_is_moribund(struct crypto_alg *alg)
122{
123 return alg->cra_flags & (CRYPTO_ALG_DEAD | CRYPTO_ALG_DYING);
124}
125
Herbert Xu73d38642008-08-03 21:15:23 +0800126static inline void crypto_notify(unsigned long val, void *v)
Herbert Xu28259822006-08-06 21:23:26 +1000127{
Herbert Xu73d38642008-08-03 21:15:23 +0800128 blocking_notifier_call_chain(&crypto_chain, val, v);
Herbert Xu28259822006-08-06 21:23:26 +1000129}
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#endif /* _CRYPTO_INTERNAL_H */
132