]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/engine/tb_asnmth.c
Move e_os.h to include/internal
[thirdparty/openssl.git] / crypto / engine / tb_asnmth.c
CommitLineData
b1322259 1/*
3c2bdd7d 2 * Copyright 2006-2021 The OpenSSL Project Authors. All Rights Reserved.
de9fcfe3 3 *
3c120f91 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
b1322259
RS
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
de9fcfe3
DSH
8 */
9
e4468e6d
P
10/* We need to use some engine deprecated APIs */
11#define OPENSSL_SUPPRESS_DEPRECATED
12
d5f9166b 13#include "internal/e_os.h"
706457b7 14#include "eng_local.h"
1e26a8ba 15#include <openssl/evp.h>
25f2138b 16#include "crypto/asn1.h"
de9fcfe3 17
0f113f3e
MC
18/*
19 * If this symbol is defined then ENGINE_get_pkey_asn1_meth_engine(), the
01b8b3c7
DSH
20 * function that is used by EVP to hook in pkey_asn1_meth code and cache
21 * defaults (etc), will display brief debugging summaries to stderr with the
0f113f3e
MC
22 * 'nid'.
23 */
de9fcfe3
DSH
24/* #define ENGINE_PKEY_ASN1_METH_DEBUG */
25
26static ENGINE_TABLE *pkey_asn1_meth_table = NULL;
27
28void ENGINE_unregister_pkey_asn1_meths(ENGINE *e)
0f113f3e
MC
29{
30 engine_table_unregister(&pkey_asn1_meth_table, e);
31}
de9fcfe3
DSH
32
33static void engine_unregister_all_pkey_asn1_meths(void)
0f113f3e
MC
34{
35 engine_table_cleanup(&pkey_asn1_meth_table);
36}
de9fcfe3
DSH
37
38int ENGINE_register_pkey_asn1_meths(ENGINE *e)
0f113f3e
MC
39{
40 if (e->pkey_asn1_meths) {
41 const int *nids;
42 int num_nids = e->pkey_asn1_meths(e, NULL, &nids, 0);
43 if (num_nids > 0)
44 return engine_table_register(&pkey_asn1_meth_table,
45 engine_unregister_all_pkey_asn1_meths,
46 e, nids, num_nids, 0);
47 }
48 return 1;
49}
de9fcfe3 50
777c47ac 51void ENGINE_register_all_pkey_asn1_meths(void)
0f113f3e
MC
52{
53 ENGINE *e;
de9fcfe3 54
0f113f3e
MC
55 for (e = ENGINE_get_first(); e; e = ENGINE_get_next(e))
56 ENGINE_register_pkey_asn1_meths(e);
57}
de9fcfe3
DSH
58
59int ENGINE_set_default_pkey_asn1_meths(ENGINE *e)
0f113f3e
MC
60{
61 if (e->pkey_asn1_meths) {
62 const int *nids;
63 int num_nids = e->pkey_asn1_meths(e, NULL, &nids, 0);
64 if (num_nids > 0)
65 return engine_table_register(&pkey_asn1_meth_table,
66 engine_unregister_all_pkey_asn1_meths,
67 e, nids, num_nids, 1);
68 }
69 return 1;
70}
71
72/*
73 * Exposed API function to get a functional reference from the implementation
de9fcfe3 74 * table (ie. try to get a functional reference from the tabled structural
0f113f3e
MC
75 * references) for a given pkey_asn1_meth 'nid'
76 */
de9fcfe3 77ENGINE *ENGINE_get_pkey_asn1_meth_engine(int nid)
0f113f3e 78{
a861711b
RS
79 return ossl_engine_table_select(&pkey_asn1_meth_table, nid,
80 OPENSSL_FILE, OPENSSL_LINE);
0f113f3e 81}
de9fcfe3 82
0f113f3e
MC
83/*
84 * Obtains a pkey_asn1_meth implementation from an ENGINE functional
85 * reference
86 */
de9fcfe3 87const EVP_PKEY_ASN1_METHOD *ENGINE_get_pkey_asn1_meth(ENGINE *e, int nid)
0f113f3e
MC
88{
89 EVP_PKEY_ASN1_METHOD *ret;
90 ENGINE_PKEY_ASN1_METHS_PTR fn = ENGINE_get_pkey_asn1_meths(e);
91 if (!fn || !fn(e, &ret, NULL, nid)) {
9311d0c4 92 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_UNIMPLEMENTED_PUBLIC_KEY_METHOD);
0f113f3e
MC
93 return NULL;
94 }
95 return ret;
96}
de9fcfe3
DSH
97
98/* Gets the pkey_asn1_meth callback from an ENGINE structure */
99ENGINE_PKEY_ASN1_METHS_PTR ENGINE_get_pkey_asn1_meths(const ENGINE *e)
0f113f3e
MC
100{
101 return e->pkey_asn1_meths;
102}
de9fcfe3
DSH
103
104/* Sets the pkey_asn1_meth callback in an ENGINE structure */
105int ENGINE_set_pkey_asn1_meths(ENGINE *e, ENGINE_PKEY_ASN1_METHS_PTR f)
0f113f3e
MC
106{
107 e->pkey_asn1_meths = f;
108 return 1;
109}
de9fcfe3 110
0f113f3e
MC
111/*
112 * Internal function to free up EVP_PKEY_ASN1_METHOD structures before an
de9fcfe3
DSH
113 * ENGINE is destroyed
114 */
115
116void engine_pkey_asn1_meths_free(ENGINE *e)
0f113f3e
MC
117{
118 int i;
119 EVP_PKEY_ASN1_METHOD *pkm;
120 if (e->pkey_asn1_meths) {
121 const int *pknids;
122 int npknids;
123 npknids = e->pkey_asn1_meths(e, NULL, &pknids, 0);
124 for (i = 0; i < npknids; i++) {
125 if (e->pkey_asn1_meths(e, &pkm, NULL, pknids[i])) {
126 EVP_PKEY_asn1_free(pkm);
127 }
128 }
129 }
130}
131
132/*
133 * Find a method based on a string. This does a linear search through all
134 * implemented algorithms. This is OK in practice because only a small number
135 * of algorithms are likely to be implemented in an engine and it is not used
136 * for speed critical operations.
01b8b3c7
DSH
137 */
138
139const EVP_PKEY_ASN1_METHOD *ENGINE_get_pkey_asn1_meth_str(ENGINE *e,
0f113f3e
MC
140 const char *str,
141 int len)
142{
143 int i, nidcount;
144 const int *nids;
145 EVP_PKEY_ASN1_METHOD *ameth;
146 if (!e->pkey_asn1_meths)
147 return NULL;
148 if (len == -1)
149 len = strlen(str);
150 nidcount = e->pkey_asn1_meths(e, NULL, &nids, 0);
151 for (i = 0; i < nidcount; i++) {
152 e->pkey_asn1_meths(e, &ameth, NULL, nids[i]);
9bada854
P
153 if (ameth != NULL
154 && ((int)strlen(ameth->pem_str) == len)
86885c28 155 && strncasecmp(ameth->pem_str, str, len) == 0)
0f113f3e
MC
156 return ameth;
157 }
158 return NULL;
159}
160
161typedef struct {
162 ENGINE *e;
163 const EVP_PKEY_ASN1_METHOD *ameth;
164 const char *str;
165 int len;
166} ENGINE_FIND_STR;
2f0550c4
DSH
167
168static void look_str_cb(int nid, STACK_OF(ENGINE) *sk, ENGINE *def, void *arg)
0f113f3e
MC
169{
170 ENGINE_FIND_STR *lk = arg;
171 int i;
172 if (lk->ameth)
173 return;
174 for (i = 0; i < sk_ENGINE_num(sk); i++) {
175 ENGINE *e = sk_ENGINE_value(sk, i);
176 EVP_PKEY_ASN1_METHOD *ameth;
177 e->pkey_asn1_meths(e, &ameth, NULL, nid);
5eb77432
RL
178 if (ameth != NULL
179 && ((int)strlen(ameth->pem_str) == lk->len)
86885c28 180 && strncasecmp(ameth->pem_str, lk->str, lk->len) == 0) {
0f113f3e
MC
181 lk->e = e;
182 lk->ameth = ameth;
183 return;
184 }
185 }
186}
2f0550c4
DSH
187
188const EVP_PKEY_ASN1_METHOD *ENGINE_pkey_asn1_find_str(ENGINE **pe,
0f113f3e
MC
189 const char *str,
190 int len)
191{
192 ENGINE_FIND_STR fstr;
193 fstr.e = NULL;
194 fstr.ameth = NULL;
195 fstr.str = str;
196 fstr.len = len;
40e068d5 197
c2e4e5d2 198 if (!RUN_ONCE(&engine_lock_init, do_engine_lock_init)) {
9311d0c4 199 ERR_raise(ERR_LIB_ENGINE, ERR_R_MALLOC_FAILURE);
c2e4e5d2
RL
200 return NULL;
201 }
202
cd3f8c1b
RS
203 if (!CRYPTO_THREAD_write_lock(global_engine_lock))
204 return NULL;
0f113f3e
MC
205 engine_table_doall(pkey_asn1_meth_table, look_str_cb, &fstr);
206 /* If found obtain a structural reference to engine */
207 if (fstr.e) {
208 fstr.e->struct_ref++;
a935791d 209 ENGINE_REF_PRINT(fstr.e, 0, 1);
0f113f3e
MC
210 }
211 *pe = fstr.e;
40e068d5 212 CRYPTO_THREAD_unlock(global_engine_lock);
0f113f3e
MC
213 return fstr.ameth;
214}