Replumbing: offer a core upcall to get the provider object's library context
[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                                          const OSSL_PARAM params[]))
61 # define OSSL_FUNC_CORE_PUT_ERROR              3
62 OSSL_CORE_MAKE_FUNC(void,core_put_error,(int lib, int func, int reason,
63                                          const char *file, int line))
64 # define OSSL_FUNC_CORE_ADD_ERROR_VDATA        4
65 OSSL_CORE_MAKE_FUNC(void,core_add_error_vdata,(int num, va_list args))
66 # define OSSL_FUNC_CORE_GET_LIBRARY_CONTEXT    5
67 OSSL_CORE_MAKE_FUNC(OPENSSL_CTX *,core_get_library_context,
68                     (const OSSL_PROVIDER *prov))
69
70
71 /* Functions provided by the provider to the Core, reserved numbers 1024-1535 */
72 # define OSSL_FUNC_PROVIDER_TEARDOWN         1024
73 OSSL_CORE_MAKE_FUNC(void,provider_teardown,(void *provctx))
74 # define OSSL_FUNC_PROVIDER_GET_PARAM_TYPES  1025
75 OSSL_CORE_MAKE_FUNC(const OSSL_ITEM *,
76                     provider_get_param_types,(void *provctx))
77 # define OSSL_FUNC_PROVIDER_GET_PARAMS       1026
78 OSSL_CORE_MAKE_FUNC(int,provider_get_params,(void *provctx,
79                                              const OSSL_PARAM params[]))
80 # define OSSL_FUNC_PROVIDER_QUERY_OPERATION  1027
81 OSSL_CORE_MAKE_FUNC(const OSSL_ALGORITHM *,provider_query_operation,
82                     (void *provctx, int operation_id, const int *no_store))
83
84 /* Digests */
85
86 # define OSSL_OP_DIGEST                     1
87
88 # define OSSL_FUNC_DIGEST_NEWCTX            1
89 # define OSSL_FUNC_DIGEST_INIT              2
90 # define OSSL_FUNC_DIGEST_UPDATE            3
91 # define OSSL_FUNC_DIGEST_FINAL             4
92 # define OSSL_FUNC_DIGEST_DIGEST            5
93 # define OSSL_FUNC_DIGEST_FREECTX           6
94 # define OSSL_FUNC_DIGEST_DUPCTX            7
95 # define OSSL_FUNC_DIGEST_SIZE              8
96 # define OSSL_FUNC_DIGEST_BLOCK_SIZE        9
97 # define OSSL_FUNC_DIGEST_SET_PARAMS        10
98 # define OSSL_FUNC_DIGEST_GET_PARAMS        11
99
100 OSSL_CORE_MAKE_FUNC(void *, OP_digest_newctx, (void *provctx))
101 OSSL_CORE_MAKE_FUNC(int, OP_digest_init, (void *dctx))
102 OSSL_CORE_MAKE_FUNC(int, OP_digest_update,
103                     (void *dctx, const unsigned char *in, size_t inl))
104 OSSL_CORE_MAKE_FUNC(int, OP_digest_final,
105                     (void *dctx,
106                      unsigned char *out, size_t *outl, size_t outsz))
107 OSSL_CORE_MAKE_FUNC(int, OP_digest_digest,
108                     (void *provctx, const unsigned char *in, size_t inl,
109                      unsigned char *out, size_t *out_l, size_t outsz))
110
111 OSSL_CORE_MAKE_FUNC(void, OP_digest_cleanctx, (void *dctx))
112 OSSL_CORE_MAKE_FUNC(void, OP_digest_freectx, (void *dctx))
113 OSSL_CORE_MAKE_FUNC(void *, OP_digest_dupctx, (void *dctx))
114
115 OSSL_CORE_MAKE_FUNC(size_t, OP_digest_size, (void))
116 OSSL_CORE_MAKE_FUNC(size_t, OP_digest_block_size, (void))
117 OSSL_CORE_MAKE_FUNC(int, OP_digest_set_params,
118                     (void *vctx, const OSSL_PARAM params[]))
119 OSSL_CORE_MAKE_FUNC(int, OP_digest_get_params,
120                     (void *vctx, const OSSL_PARAM params[]))
121
122 /* Symmetric Ciphers */
123
124 # define OSSL_OP_CIPHER                              2
125
126 # define OSSL_FUNC_CIPHER_NEWCTX                     1
127 # define OSSL_FUNC_CIPHER_ENCRYPT_INIT               2
128 # define OSSL_FUNC_CIPHER_DECRYPT_INIT               3
129 # define OSSL_FUNC_CIPHER_UPDATE                     4
130 # define OSSL_FUNC_CIPHER_FINAL                      5
131 # define OSSL_FUNC_CIPHER_CIPHER                     6
132 # define OSSL_FUNC_CIPHER_FREECTX                    7
133 # define OSSL_FUNC_CIPHER_DUPCTX                     8
134 # define OSSL_FUNC_CIPHER_KEY_LENGTH                 9
135 # define OSSL_FUNC_CIPHER_IV_LENGTH                 10
136 # define OSSL_FUNC_CIPHER_BLOCK_SIZE                11
137 # define OSSL_FUNC_CIPHER_GET_PARAMS                12
138 # define OSSL_FUNC_CIPHER_CTX_GET_PARAMS            13
139 # define OSSL_FUNC_CIPHER_CTX_SET_PARAMS            14
140
141 OSSL_CORE_MAKE_FUNC(void *, OP_cipher_newctx, (void *provctx))
142 OSSL_CORE_MAKE_FUNC(int, OP_cipher_encrypt_init, (void *cctx,
143                                                   const unsigned char *key,
144                                                   size_t keylen,
145                                                   const unsigned char *iv,
146                                                   size_t ivlen))
147 OSSL_CORE_MAKE_FUNC(int, OP_cipher_decrypt_init, (void *cctx,
148                                                   const unsigned char *key,
149                                                   size_t keylen,
150                                                   const unsigned char *iv,
151                                                   size_t ivlen))
152 OSSL_CORE_MAKE_FUNC(int, OP_cipher_update,
153                     (void *cctx,
154                      unsigned char *out, size_t *outl, size_t outsize,
155                      const unsigned char *in, size_t inl))
156 OSSL_CORE_MAKE_FUNC(int, OP_cipher_final,
157                     (void *cctx,
158                      unsigned char *out, size_t *outl, size_t outsize))
159 OSSL_CORE_MAKE_FUNC(int, OP_cipher_cipher,
160                     (void *cctx,
161                      unsigned char *out, size_t *outl, size_t outsize,
162                      const unsigned char *in, size_t inl))
163 OSSL_CORE_MAKE_FUNC(void, OP_cipher_freectx, (void *cctx))
164 OSSL_CORE_MAKE_FUNC(void *, OP_cipher_dupctx, (void *cctx))
165 OSSL_CORE_MAKE_FUNC(size_t, OP_cipher_key_length, (void))
166 OSSL_CORE_MAKE_FUNC(size_t, OP_cipher_iv_length, (void))
167 OSSL_CORE_MAKE_FUNC(size_t, OP_cipher_block_size, (void))
168 OSSL_CORE_MAKE_FUNC(int, OP_cipher_get_params, (const OSSL_PARAM params[]))
169 OSSL_CORE_MAKE_FUNC(int, OP_cipher_ctx_get_params, (void *cctx,
170                                                     const OSSL_PARAM params[]))
171 OSSL_CORE_MAKE_FUNC(int, OP_cipher_ctx_set_params, (void *cctx,
172                                                     const OSSL_PARAM params[]))
173
174 # ifdef __cplusplus
175 }
176 # endif
177
178 #endif