Change OSSL_PARAM return size to not be a pointer.
[oweals/openssl.git] / include / openssl / core_numbers.h
1 /*
2  * Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
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
10 #ifndef OSSL_CORE_NUMBERS_H
11 # define OSSL_CORE_NUMBERS_H
12
13 # include <stdarg.h>
14 # include <openssl/core.h>
15
16 # ifdef __cplusplus
17 extern "C" {
18 # endif
19
20 /*-
21  * Identities
22  * ----------
23  *
24  * All series start with 1, to allow 0 to be an array terminator.
25  * For any FUNC identity, we also provide a function signature typedef
26  * and a static inline function to extract a function pointer from a
27  * OSSL_DISPATCH element in a type safe manner.
28  *
29  * Names:
30  * for any function base name 'foo' (uppercase form 'FOO'), we will have
31  * the following:
32  * - a macro for the identity with the name OSSL_FUNC_'FOO' or derivates
33  *   thereof (to be specified further down)
34  * - a function signature typedef with the name OSSL_'foo'_fn
35  * - a function pointer extractor function with the name OSSL_'foo'
36  */
37
38 /* Helper macro to create the function signature typedef and the extractor */
39 #define OSSL_CORE_MAKE_FUNC(type,name,args)                             \
40     typedef type (OSSL_##name##_fn)args;                                \
41     static ossl_inline \
42     OSSL_##name##_fn *OSSL_get_##name(const OSSL_DISPATCH *opf)         \
43     {                                                                   \
44         return (OSSL_##name##_fn *)opf->function;                       \
45     }
46
47 /*
48  * Core function identities, for the two OSSL_DISPATCH tables being passed
49  * in the OSSL_provider_init call.
50  *
51  * 0 serves as a marker for the end of the OSSL_DISPATCH array, and must
52  * therefore NEVER be used as a function identity.
53  */
54 /* Functions provided by the Core to the provider, reserved numbers 1-1023 */
55 # define OSSL_FUNC_CORE_GET_PARAM_TYPES        1
56 OSSL_CORE_MAKE_FUNC(const OSSL_ITEM *,
57                     core_get_param_types,(const OSSL_PROVIDER *prov))
58 # define OSSL_FUNC_CORE_GET_PARAMS             2
59 OSSL_CORE_MAKE_FUNC(int,core_get_params,(const OSSL_PROVIDER *prov,
60                                          OSSL_PARAM params[]))
61 # define OSSL_FUNC_CORE_THREAD_START           3
62 OSSL_CORE_MAKE_FUNC(int,core_thread_start,(const OSSL_PROVIDER *prov,
63                                            OSSL_thread_stop_handler_fn handfn))
64 # define OSSL_FUNC_CORE_PUT_ERROR              4
65 OSSL_CORE_MAKE_FUNC(void,core_put_error,(int lib, int func, int reason,
66                                          const char *file, int line))
67 # define OSSL_FUNC_CORE_ADD_ERROR_VDATA        5
68 OSSL_CORE_MAKE_FUNC(void,core_add_error_vdata,(int num, va_list args))
69 # define OSSL_FUNC_CORE_GET_LIBRARY_CONTEXT    6
70 OSSL_CORE_MAKE_FUNC(OPENSSL_CTX *,core_get_library_context,
71                     (const OSSL_PROVIDER *prov))
72
73
74 /* Functions provided by the provider to the Core, reserved numbers 1024-1535 */
75 # define OSSL_FUNC_PROVIDER_TEARDOWN         1024
76 OSSL_CORE_MAKE_FUNC(void,provider_teardown,(void *provctx))
77 # define OSSL_FUNC_PROVIDER_GET_PARAM_TYPES  1025
78 OSSL_CORE_MAKE_FUNC(const OSSL_ITEM *,
79                     provider_get_param_types,(void *provctx))
80 # define OSSL_FUNC_PROVIDER_GET_PARAMS       1026
81 OSSL_CORE_MAKE_FUNC(int,provider_get_params,(void *provctx,
82                                              OSSL_PARAM params[]))
83 # define OSSL_FUNC_PROVIDER_QUERY_OPERATION  1027
84 OSSL_CORE_MAKE_FUNC(const OSSL_ALGORITHM *,provider_query_operation,
85                     (void *provctx, int operation_id, const int *no_store))
86
87 /* Digests */
88
89 # define OSSL_OP_DIGEST                     1
90
91 # define OSSL_FUNC_DIGEST_NEWCTX            1
92 # define OSSL_FUNC_DIGEST_INIT              2
93 # define OSSL_FUNC_DIGEST_UPDATE            3
94 # define OSSL_FUNC_DIGEST_FINAL             4
95 # define OSSL_FUNC_DIGEST_DIGEST            5
96 # define OSSL_FUNC_DIGEST_FREECTX           6
97 # define OSSL_FUNC_DIGEST_DUPCTX            7
98 # define OSSL_FUNC_DIGEST_SIZE              8
99 # define OSSL_FUNC_DIGEST_BLOCK_SIZE        9
100 # define OSSL_FUNC_DIGEST_SET_PARAMS        10
101 # define OSSL_FUNC_DIGEST_GET_PARAMS        11
102
103 OSSL_CORE_MAKE_FUNC(void *, OP_digest_newctx, (void *provctx))
104 OSSL_CORE_MAKE_FUNC(int, OP_digest_init, (void *dctx))
105 OSSL_CORE_MAKE_FUNC(int, OP_digest_update,
106                     (void *dctx, const unsigned char *in, size_t inl))
107 OSSL_CORE_MAKE_FUNC(int, OP_digest_final,
108                     (void *dctx,
109                      unsigned char *out, size_t *outl, size_t outsz))
110 OSSL_CORE_MAKE_FUNC(int, OP_digest_digest,
111                     (void *provctx, const unsigned char *in, size_t inl,
112                      unsigned char *out, size_t *out_l, size_t outsz))
113
114 OSSL_CORE_MAKE_FUNC(void, OP_digest_cleanctx, (void *dctx))
115 OSSL_CORE_MAKE_FUNC(void, OP_digest_freectx, (void *dctx))
116 OSSL_CORE_MAKE_FUNC(void *, OP_digest_dupctx, (void *dctx))
117
118 OSSL_CORE_MAKE_FUNC(size_t, OP_digest_size, (void))
119 OSSL_CORE_MAKE_FUNC(size_t, OP_digest_block_size, (void))
120 OSSL_CORE_MAKE_FUNC(int, OP_digest_set_params,
121                     (void *vctx, const OSSL_PARAM params[]))
122 OSSL_CORE_MAKE_FUNC(int, OP_digest_get_params,
123                     (void *vctx, OSSL_PARAM params[]))
124
125 /* Symmetric Ciphers */
126
127 # define OSSL_OP_CIPHER                              2
128
129 # define OSSL_FUNC_CIPHER_NEWCTX                     1
130 # define OSSL_FUNC_CIPHER_ENCRYPT_INIT               2
131 # define OSSL_FUNC_CIPHER_DECRYPT_INIT               3
132 # define OSSL_FUNC_CIPHER_UPDATE                     4
133 # define OSSL_FUNC_CIPHER_FINAL                      5
134 # define OSSL_FUNC_CIPHER_CIPHER                     6
135 # define OSSL_FUNC_CIPHER_FREECTX                    7
136 # define OSSL_FUNC_CIPHER_DUPCTX                     8
137 # define OSSL_FUNC_CIPHER_KEY_LENGTH                 9
138 # define OSSL_FUNC_CIPHER_IV_LENGTH                 10
139 # define OSSL_FUNC_CIPHER_BLOCK_SIZE                11
140 # define OSSL_FUNC_CIPHER_GET_PARAMS                12
141 # define OSSL_FUNC_CIPHER_CTX_GET_PARAMS            13
142 # define OSSL_FUNC_CIPHER_CTX_SET_PARAMS            14
143
144 OSSL_CORE_MAKE_FUNC(void *, OP_cipher_newctx, (void *provctx))
145 OSSL_CORE_MAKE_FUNC(int, OP_cipher_encrypt_init, (void *cctx,
146                                                   const unsigned char *key,
147                                                   size_t keylen,
148                                                   const unsigned char *iv,
149                                                   size_t ivlen))
150 OSSL_CORE_MAKE_FUNC(int, OP_cipher_decrypt_init, (void *cctx,
151                                                   const unsigned char *key,
152                                                   size_t keylen,
153                                                   const unsigned char *iv,
154                                                   size_t ivlen))
155 OSSL_CORE_MAKE_FUNC(int, OP_cipher_update,
156                     (void *cctx,
157                      unsigned char *out, size_t *outl, size_t outsize,
158                      const unsigned char *in, size_t inl))
159 OSSL_CORE_MAKE_FUNC(int, OP_cipher_final,
160                     (void *cctx,
161                      unsigned char *out, size_t *outl, size_t outsize))
162 OSSL_CORE_MAKE_FUNC(int, OP_cipher_cipher,
163                     (void *cctx,
164                      unsigned char *out, size_t *outl, size_t outsize,
165                      const unsigned char *in, size_t inl))
166 OSSL_CORE_MAKE_FUNC(void, OP_cipher_freectx, (void *cctx))
167 OSSL_CORE_MAKE_FUNC(void *, OP_cipher_dupctx, (void *cctx))
168 OSSL_CORE_MAKE_FUNC(size_t, OP_cipher_key_length, (void))
169 OSSL_CORE_MAKE_FUNC(size_t, OP_cipher_iv_length, (void))
170 OSSL_CORE_MAKE_FUNC(size_t, OP_cipher_block_size, (void))
171 OSSL_CORE_MAKE_FUNC(int, OP_cipher_get_params, (OSSL_PARAM params[]))
172 OSSL_CORE_MAKE_FUNC(int, OP_cipher_ctx_get_params, (void *cctx,
173                                                     OSSL_PARAM params[]))
174 OSSL_CORE_MAKE_FUNC(int, OP_cipher_ctx_set_params, (void *cctx,
175                                                     const OSSL_PARAM params[]))
176
177 # ifdef __cplusplus
178 }
179 # endif
180
181 #endif