xref: /openbmc/linux/include/crypto/algapi.h (revision 4f87ee118d16b4b2116a477229573ed5003b0d78)
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3  * Cryptographic API for algorithms (i.e., low-level API).
4  *
5  * Copyright (c) 2006 Herbert Xu <herbert@gondor.apana.org.au>
6  */
7 #ifndef _CRYPTO_ALGAPI_H
8 #define _CRYPTO_ALGAPI_H
9 
10 #include <linux/crypto.h>
11 #include <linux/list.h>
12 #include <linux/kernel.h>
13 #include <linux/skbuff.h>
14 
15 /*
16  * Maximum values for blocksize and alignmask, used to allocate
17  * static buffers that are big enough for any combination of
18  * algs and architectures. Ciphers have a lower maximum size.
19  */
20 #define MAX_ALGAPI_BLOCKSIZE		160
21 #define MAX_ALGAPI_ALIGNMASK		63
22 #define MAX_CIPHER_BLOCKSIZE		16
23 #define MAX_CIPHER_ALIGNMASK		15
24 
25 struct crypto_aead;
26 struct crypto_instance;
27 struct module;
28 struct rtattr;
29 struct seq_file;
30 
31 struct crypto_type {
32 	unsigned int (*ctxsize)(struct crypto_alg *alg, u32 type, u32 mask);
33 	unsigned int (*extsize)(struct crypto_alg *alg);
34 	int (*init)(struct crypto_tfm *tfm, u32 type, u32 mask);
35 	int (*init_tfm)(struct crypto_tfm *tfm);
36 	void (*show)(struct seq_file *m, struct crypto_alg *alg);
37 	int (*report)(struct sk_buff *skb, struct crypto_alg *alg);
38 	void (*free)(struct crypto_instance *inst);
39 
40 	unsigned int type;
41 	unsigned int maskclear;
42 	unsigned int maskset;
43 	unsigned int tfmsize;
44 };
45 
46 struct crypto_instance {
47 	struct crypto_alg alg;
48 
49 	struct crypto_template *tmpl;
50 	struct hlist_node list;
51 
52 	void *__ctx[] CRYPTO_MINALIGN_ATTR;
53 };
54 
55 struct crypto_template {
56 	struct list_head list;
57 	struct hlist_head instances;
58 	struct module *module;
59 
60 	struct crypto_instance *(*alloc)(struct rtattr **tb);
61 	void (*free)(struct crypto_instance *inst);
62 	int (*create)(struct crypto_template *tmpl, struct rtattr **tb);
63 
64 	char name[CRYPTO_MAX_ALG_NAME];
65 };
66 
67 struct crypto_spawn {
68 	struct list_head list;
69 	struct crypto_alg *alg;
70 	struct crypto_instance *inst;
71 	const struct crypto_type *frontend;
72 	u32 mask;
73 	bool dead;
74 };
75 
76 struct crypto_queue {
77 	struct list_head list;
78 	struct list_head *backlog;
79 
80 	unsigned int qlen;
81 	unsigned int max_qlen;
82 };
83 
84 struct scatter_walk {
85 	struct scatterlist *sg;
86 	unsigned int offset;
87 };
88 
89 void crypto_mod_put(struct crypto_alg *alg);
90 
91 int crypto_register_template(struct crypto_template *tmpl);
92 int crypto_register_templates(struct crypto_template *tmpls, int count);
93 void crypto_unregister_template(struct crypto_template *tmpl);
94 void crypto_unregister_templates(struct crypto_template *tmpls, int count);
95 struct crypto_template *crypto_lookup_template(const char *name);
96 
97 int crypto_register_instance(struct crypto_template *tmpl,
98 			     struct crypto_instance *inst);
99 int crypto_unregister_instance(struct crypto_instance *inst);
100 
101 int crypto_init_spawn(struct crypto_spawn *spawn, struct crypto_alg *alg,
102 		      struct crypto_instance *inst, u32 mask);
103 int crypto_init_spawn2(struct crypto_spawn *spawn, struct crypto_alg *alg,
104 		       struct crypto_instance *inst,
105 		       const struct crypto_type *frontend);
106 int crypto_grab_spawn(struct crypto_spawn *spawn, const char *name,
107 		      u32 type, u32 mask);
108 
109 void crypto_drop_spawn(struct crypto_spawn *spawn);
110 struct crypto_tfm *crypto_spawn_tfm(struct crypto_spawn *spawn, u32 type,
111 				    u32 mask);
112 void *crypto_spawn_tfm2(struct crypto_spawn *spawn);
113 
114 static inline void crypto_set_spawn(struct crypto_spawn *spawn,
115 				    struct crypto_instance *inst)
116 {
117 	spawn->inst = inst;
118 }
119 
120 struct crypto_attr_type *crypto_get_attr_type(struct rtattr **tb);
121 int crypto_check_attr_type(struct rtattr **tb, u32 type);
122 const char *crypto_attr_alg_name(struct rtattr *rta);
123 struct crypto_alg *crypto_attr_alg2(struct rtattr *rta,
124 				    const struct crypto_type *frontend,
125 				    u32 type, u32 mask);
126 
127 static inline struct crypto_alg *crypto_attr_alg(struct rtattr *rta,
128 						 u32 type, u32 mask)
129 {
130 	return crypto_attr_alg2(rta, NULL, type, mask);
131 }
132 
133 int crypto_attr_u32(struct rtattr *rta, u32 *num);
134 int crypto_inst_setname(struct crypto_instance *inst, const char *name,
135 			struct crypto_alg *alg);
136 void *crypto_alloc_instance(const char *name, struct crypto_alg *alg,
137 			    unsigned int head);
138 
139 void crypto_init_queue(struct crypto_queue *queue, unsigned int max_qlen);
140 int crypto_enqueue_request(struct crypto_queue *queue,
141 			   struct crypto_async_request *request);
142 struct crypto_async_request *crypto_dequeue_request(struct crypto_queue *queue);
143 static inline unsigned int crypto_queue_len(struct crypto_queue *queue)
144 {
145 	return queue->qlen;
146 }
147 
148 void crypto_inc(u8 *a, unsigned int size);
149 void __crypto_xor(u8 *dst, const u8 *src1, const u8 *src2, unsigned int size);
150 
151 static inline void crypto_xor(u8 *dst, const u8 *src, unsigned int size)
152 {
153 	if (IS_ENABLED(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) &&
154 	    __builtin_constant_p(size) &&
155 	    (size % sizeof(unsigned long)) == 0) {
156 		unsigned long *d = (unsigned long *)dst;
157 		unsigned long *s = (unsigned long *)src;
158 
159 		while (size > 0) {
160 			*d++ ^= *s++;
161 			size -= sizeof(unsigned long);
162 		}
163 	} else {
164 		__crypto_xor(dst, dst, src, size);
165 	}
166 }
167 
168 static inline void crypto_xor_cpy(u8 *dst, const u8 *src1, const u8 *src2,
169 				  unsigned int size)
170 {
171 	if (IS_ENABLED(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) &&
172 	    __builtin_constant_p(size) &&
173 	    (size % sizeof(unsigned long)) == 0) {
174 		unsigned long *d = (unsigned long *)dst;
175 		unsigned long *s1 = (unsigned long *)src1;
176 		unsigned long *s2 = (unsigned long *)src2;
177 
178 		while (size > 0) {
179 			*d++ = *s1++ ^ *s2++;
180 			size -= sizeof(unsigned long);
181 		}
182 	} else {
183 		__crypto_xor(dst, src1, src2, size);
184 	}
185 }
186 
187 static inline void *crypto_tfm_ctx_aligned(struct crypto_tfm *tfm)
188 {
189 	return PTR_ALIGN(crypto_tfm_ctx(tfm),
190 			 crypto_tfm_alg_alignmask(tfm) + 1);
191 }
192 
193 static inline struct crypto_instance *crypto_tfm_alg_instance(
194 	struct crypto_tfm *tfm)
195 {
196 	return container_of(tfm->__crt_alg, struct crypto_instance, alg);
197 }
198 
199 static inline void *crypto_instance_ctx(struct crypto_instance *inst)
200 {
201 	return inst->__ctx;
202 }
203 
204 static inline struct crypto_cipher *crypto_spawn_cipher(
205 	struct crypto_spawn *spawn)
206 {
207 	u32 type = CRYPTO_ALG_TYPE_CIPHER;
208 	u32 mask = CRYPTO_ALG_TYPE_MASK;
209 
210 	return __crypto_cipher_cast(crypto_spawn_tfm(spawn, type, mask));
211 }
212 
213 static inline struct cipher_alg *crypto_cipher_alg(struct crypto_cipher *tfm)
214 {
215 	return &crypto_cipher_tfm(tfm)->__crt_alg->cra_cipher;
216 }
217 
218 static inline struct crypto_async_request *crypto_get_backlog(
219 	struct crypto_queue *queue)
220 {
221 	return queue->backlog == &queue->list ? NULL :
222 	       container_of(queue->backlog, struct crypto_async_request, list);
223 }
224 
225 static inline struct crypto_alg *crypto_get_attr_alg(struct rtattr **tb,
226 						     u32 type, u32 mask)
227 {
228 	return crypto_attr_alg(tb[1], type, mask);
229 }
230 
231 static inline int crypto_requires_off(u32 type, u32 mask, u32 off)
232 {
233 	return (type ^ off) & mask & off;
234 }
235 
236 /*
237  * Returns CRYPTO_ALG_ASYNC if type/mask requires the use of sync algorithms.
238  * Otherwise returns zero.
239  */
240 static inline int crypto_requires_sync(u32 type, u32 mask)
241 {
242 	return crypto_requires_off(type, mask, CRYPTO_ALG_ASYNC);
243 }
244 
245 noinline unsigned long __crypto_memneq(const void *a, const void *b, size_t size);
246 
247 /**
248  * crypto_memneq - Compare two areas of memory without leaking
249  *		   timing information.
250  *
251  * @a: One area of memory
252  * @b: Another area of memory
253  * @size: The size of the area.
254  *
255  * Returns 0 when data is equal, 1 otherwise.
256  */
257 static inline int crypto_memneq(const void *a, const void *b, size_t size)
258 {
259 	return __crypto_memneq(a, b, size) != 0UL ? 1 : 0;
260 }
261 
262 static inline void crypto_yield(u32 flags)
263 {
264 	if (flags & CRYPTO_TFM_REQ_MAY_SLEEP)
265 		cond_resched();
266 }
267 
268 int crypto_register_notifier(struct notifier_block *nb);
269 int crypto_unregister_notifier(struct notifier_block *nb);
270 
271 /* Crypto notification events. */
272 enum {
273 	CRYPTO_MSG_ALG_REQUEST,
274 	CRYPTO_MSG_ALG_REGISTER,
275 	CRYPTO_MSG_ALG_LOADED,
276 };
277 
278 #endif	/* _CRYPTO_ALGAPI_H */
279