]> git.ipfire.org Git - thirdparty/openssl.git/blame - include/openssl/core.h
CORE: Fix a couple of bugs in algorithm_do_this()
[thirdparty/openssl.git] / include / openssl / core.h
CommitLineData
7753be74 1/*
33388b44 2 * Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
7753be74
RL
3 *
4 * Licensed under the Apache License 2.0 (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
8 */
9
ae4186b0
DMSP
10#ifndef OPENSSL_CORE_H
11# define OPENSSL_CORE_H
7753be74
RL
12
13# include <stddef.h>
50cd4768 14# include <openssl/types.h>
7753be74
RL
15
16# ifdef __cplusplus
17extern "C" {
18# endif
19
20/*-
21 * Base types
22 * ----------
23 *
24 * These are the types that the OpenSSL core and providers have in common
25 * to communicate data between them.
26 */
27
28/*
29 * Dispatch table element. function_id numbers are defined further down,
30 * see macros with '_FUNC' in their names.
31 *
32 * An array of these is always terminated by function_id == 0
33 */
34struct ossl_dispatch_st {
35 int function_id;
36 void (*function)(void);
37};
38
39/*
40 * Other items, essentially an int<->pointer map element.
41 *
42 * We make this type distinct from OSSL_DISPATCH to ensure that dispatch
43 * tables remain tables with function pointers only.
44 *
45 * This is used whenever we need to pass things like a table of error reason
26175013 46 * codes <-> reason string maps, ...
7753be74
RL
47 *
48 * Usage determines which field works as key if any, rather than field order.
49 *
50 * An array of these is always terminated by id == 0 && ptr == NULL
51 */
52struct ossl_item_st {
53 unsigned int id;
54 void *ptr;
55};
56
57/*
695d195b 58 * Type to tie together algorithm names, property definition string and
7753be74
RL
59 * the algorithm implementation in the form of a dispatch table.
60 *
695d195b 61 * An array of these is always terminated by algorithm_names == NULL
7753be74
RL
62 */
63struct ossl_algorithm_st {
695d195b 64 const char *algorithm_names; /* key */
7753be74
RL
65 const char *property_definition; /* key */
66 const OSSL_DISPATCH *implementation;
67};
68
69/*
70 * Type to pass object data in a uniform way, without exposing the object
71 * structure.
72 *
73 * An array of these is always terminated by key == NULL
74 */
75struct ossl_param_st {
76 const char *key; /* the name of the parameter */
77 unsigned int data_type; /* declare what kind of content is in buffer */
8c4412ed
RL
78 void *data; /* value being passed in or out */
79 size_t data_size; /* data size */
4e7991b4 80 size_t return_size; /* returned content size */
7753be74
RL
81};
82
83/* Currently supported OSSL_PARAM data types */
84/*
85 * OSSL_PARAM_INTEGER and OSSL_PARAM_UNSIGNED_INTEGER
86 * are arbitrary length and therefore require an arbitrarily sized buffer,
87 * since they may be used to pass numbers larger than what is natively
88 * available.
89 *
90 * The number must be buffered in native form, i.e. MSB first on B_ENDIAN
91 * systems and LSB first on L_ENDIAN systems. This means that arbitrary
92 * native integers can be stored in the buffer, just make sure that the
93 * buffer size is correct and the buffer itself is properly aligned (for
94 * example by having the buffer field point at a C integer).
95 */
96# define OSSL_PARAM_INTEGER 1
97# define OSSL_PARAM_UNSIGNED_INTEGER 2
98/*-
99 * OSSL_PARAM_REAL
100 * is a C binary floating point values in native form and alignment.
101 */
102# define OSSL_PARAM_REAL 3
103/*-
104 * OSSL_PARAM_UTF8_STRING
105 * is a printable string. Is expteced to be printed as it is.
106 */
107# define OSSL_PARAM_UTF8_STRING 4
108/*-
109 * OSSL_PARAM_OCTET_STRING
110 * is a string of bytes with no further specification. Is expected to be
111 * printed as a hexdump.
112 */
113# define OSSL_PARAM_OCTET_STRING 5
7753be74 114/*-
7ffbd7ca
P
115 * OSSL_PARAM_UTF8_PTR
116 * is a pointer to a printable string. Is expteced to be printed as it is.
7753be74 117 *
7ffbd7ca
P
118 * The difference between this and OSSL_PARAM_UTF8_STRING is that only pointers
119 * are manipulated for this type.
7753be74
RL
120 *
121 * This is more relevant for parameter requests, where the responding
122 * function doesn't need to copy the data to the provided buffer, but
123 * sets the provided buffer to point at the actual data instead.
124 *
125 * WARNING! Using these is FRAGILE, as it assumes that the actual
126 * data and its location are constant.
82e1fc1b
P
127 *
128 * EXTRA WARNING! If you are not completely sure you most likely want
129 * to use the OSSL_PARAM_UTF8_STRING type.
7753be74 130 */
7ffbd7ca
P
131# define OSSL_PARAM_UTF8_PTR 6
132/*-
133 * OSSL_PARAM_OCTET_PTR
134 * is a pointer to a string of bytes with no further specification. It is
135 * expected to be printed as a hexdump.
136 *
137 * The difference between this and OSSL_PARAM_OCTET_STRING is that only pointers
138 * are manipulated for this type.
139 *
140 * This is more relevant for parameter requests, where the responding
141 * function doesn't need to copy the data to the provided buffer, but
142 * sets the provided buffer to point at the actual data instead.
143 *
144 * WARNING! Using these is FRAGILE, as it assumes that the actual
145 * data and its location are constant.
82e1fc1b
P
146 *
147 * EXTRA WARNING! If you are not completely sure you most likely want
148 * to use the OSSL_PARAM_OCTET_STRING type.
7753be74 149 */
7ffbd7ca 150# define OSSL_PARAM_OCTET_PTR 7
7753be74 151
da747958
MC
152/*
153 * Typedef for the thread stop handling callback. Used both internally and by
154 * providers.
4bd8b240 155 *
da747958
MC
156 * Providers may register for notifications about threads stopping by
157 * registering a callback to hear about such events. Providers register the
158 * callback using the OSSL_FUNC_CORE_THREAD_START function in the |in| dispatch
159 * table passed to OSSL_provider_init(). The arg passed back to a provider will
160 * be the provider side context object.
161 */
162typedef void (*OSSL_thread_stop_handler_fn)(void *arg);
163
164
4c2883a9
RL
165/*-
166 * Provider entry point
167 * --------------------
168 *
169 * This function is expected to be present in any dynamically loadable
170 * provider module. By definition, if this function doesn't exist in a
171 * module, that module is not an OpenSSL provider module.
172 */
173/*-
174 * |provider| pointer to opaque type OSSL_PROVIDER. This can be used
175 * together with some functions passed via |in| to query data.
176 * |in| is the array of functions that the Core passes to the provider.
177 * |out| will be the array of base functions that the provider passes
178 * back to the Core.
a39eb840
RL
179 * |provctx| a provider side context object, optionally created if the
180 * provider needs it. This value is passed to other provider
181 * functions, notably other context constructors.
4c2883a9
RL
182 */
183typedef int (OSSL_provider_init_fn)(const OSSL_PROVIDER *provider,
184 const OSSL_DISPATCH *in,
a39eb840
RL
185 const OSSL_DISPATCH **out,
186 void **provctx);
d88736df
RL
187# ifdef __VMS
188# pragma names save
189# pragma names uppercase,truncated
190# endif
4c2883a9 191extern OSSL_provider_init_fn OSSL_provider_init;
d88736df
RL
192# ifdef __VMS
193# pragma names restore
194# endif
4c2883a9 195
10e7216e
RL
196/*
197 * Generic callback function signature.
198 *
199 * The expectation is that any provider function that wants to offer
200 * a callback / hook can do so by taking an argument with this type,
201 * as well as a pointer to caller-specific data. When calling the
202 * callback, the provider function can populate an OSSL_PARAM array
203 * with data of its choice and pass that in the callback call, along
204 * with the caller data argument.
205 *
206 * libcrypto may use the OSSL_PARAM array to create arguments for an
207 * application callback it knows about.
208 */
209typedef int (OSSL_CALLBACK)(const OSSL_PARAM params[], void *arg);
210
0d003c52
RL
211/*
212 * Passphrase callback function signature
213 *
214 * This is similar to the generic callback function above, but adds a
215 * result parameter.
216 */
217typedef int (OSSL_PASSPHRASE_CALLBACK)(char *pass, size_t pass_size,
218 size_t *pass_len,
219 const OSSL_PARAM params[], void *arg);
220
7753be74
RL
221# ifdef __cplusplus
222}
223# endif
224
225#endif