/src/openssl36/crypto/cmp/cmp_ctx.c
Line | Count | Source |
1 | | /* |
2 | | * Copyright 2007-2025 The OpenSSL Project Authors. All Rights Reserved. |
3 | | * Copyright Nokia 2007-2019 |
4 | | * Copyright Siemens AG 2015-2019 |
5 | | * |
6 | | * Licensed under the Apache License 2.0 (the "License"). You may not use |
7 | | * this file except in compliance with the License. You can obtain a copy |
8 | | * in the file LICENSE in the source distribution or at |
9 | | * https://www.openssl.org/source/license.html |
10 | | */ |
11 | | |
12 | | #include "cmp_local.h" |
13 | | #include <openssl/ocsp.h> /* for OCSP_REVOKED_STATUS_* */ |
14 | | |
15 | | #define DEFINE_OSSL_CMP_CTX_get0(FIELD, TYPE) \ |
16 | | DEFINE_OSSL_CMP_CTX_get0_NAME(FIELD, FIELD, TYPE) |
17 | | #define DEFINE_OSSL_CMP_CTX_get0_NAME(NAME, FIELD, TYPE) \ |
18 | | TYPE *OSSL_CMP_CTX_get0_##NAME(const OSSL_CMP_CTX *ctx) \ |
19 | 0 | { \ |
20 | 0 | if (ctx == NULL) { \ |
21 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); \ |
22 | 0 | return NULL; \ |
23 | 0 | } \ |
24 | 0 | return ctx->FIELD; \ |
25 | 0 | } |
26 | | |
27 | | /* |
28 | | * Get current certificate store containing trusted root CA certs |
29 | | */ |
30 | 0 | DEFINE_OSSL_CMP_CTX_get0_NAME(trusted, trusted, X509_STORE) |
31 | | |
32 | | #define DEFINE_OSSL_set0(PREFIX, FIELD, TYPE) \ |
33 | | DEFINE_OSSL_set0_NAME(PREFIX, FIELD, FIELD, TYPE) |
34 | | #define DEFINE_OSSL_set0_NAME(PREFIX, NAME, FIELD, TYPE) \ |
35 | | int PREFIX##_set0##_##NAME(OSSL_CMP_CTX *ctx, TYPE *val) \ |
36 | 1.05k | { \ |
37 | 1.05k | if (ctx == NULL) { \ |
38 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); \ |
39 | 0 | return 0; \ |
40 | 0 | } \ |
41 | 1.05k | TYPE##_free(ctx->FIELD); \ |
42 | 1.05k | ctx->FIELD = val; \ |
43 | 1.05k | return 1; \ |
44 | 1.05k | } |
45 | | |
46 | | /* |
47 | | * Set certificate store containing trusted (root) CA certs and possibly CRLs |
48 | | * and a cert verification callback function used for CMP server authentication. |
49 | | * Any already existing store entry is freed. Given NULL, the entry is reset. |
50 | | */ |
51 | 0 | DEFINE_OSSL_set0_NAME(OSSL_CMP_CTX, trusted, trusted, X509_STORE) |
52 | | |
53 | 0 | DEFINE_OSSL_CMP_CTX_get0(libctx, OSSL_LIB_CTX) |
54 | 0 | DEFINE_OSSL_CMP_CTX_get0(propq, const char) |
55 | 0 |
|
56 | 0 | /* Get current list of non-trusted intermediate certs */ |
57 | 0 | DEFINE_OSSL_CMP_CTX_get0(untrusted, STACK_OF(X509)) |
58 | 0 |
|
59 | 0 | /* |
60 | 0 | * Set untrusted certificates for path construction in authentication of |
61 | 0 | * the CMP server and potentially others (TLS server, newly enrolled cert). |
62 | 0 | */ |
63 | 0 | int OSSL_CMP_CTX_set1_untrusted(OSSL_CMP_CTX *ctx, STACK_OF(X509) *certs) |
64 | 0 | { |
65 | 0 | STACK_OF(X509) *untrusted = NULL; |
66 | |
|
67 | 0 | if (ctx == NULL) { |
68 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); |
69 | 0 | return 0; |
70 | 0 | } |
71 | 0 | if (!ossl_x509_add_certs_new(&untrusted, certs, |
72 | 0 | X509_ADD_FLAG_UP_REF | X509_ADD_FLAG_NO_DUP)) |
73 | 0 | goto err; |
74 | 0 | OSSL_STACK_OF_X509_free(ctx->untrusted); |
75 | 0 | ctx->untrusted = untrusted; |
76 | 0 | return 1; |
77 | 0 | err: |
78 | 0 | OSSL_STACK_OF_X509_free(untrusted); |
79 | 0 | return 0; |
80 | 0 | } |
81 | | |
82 | | static int cmp_ctx_set_md(OSSL_CMP_CTX *ctx, EVP_MD **pmd, int nid) |
83 | 157k | { |
84 | 157k | EVP_MD *md = EVP_MD_fetch(ctx->libctx, OBJ_nid2sn(nid), ctx->propq); |
85 | | /* fetching in advance to be able to throw error early if unsupported */ |
86 | | |
87 | 157k | if (md == NULL) { |
88 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_UNSUPPORTED_ALGORITHM); |
89 | 0 | return 0; |
90 | 0 | } |
91 | 157k | EVP_MD_free(*pmd); |
92 | 157k | *pmd = md; |
93 | 157k | return 1; |
94 | 157k | } |
95 | | |
96 | | /* |
97 | | * Allocates and initializes OSSL_CMP_CTX context structure with default values. |
98 | | * Returns new context on success, NULL on error |
99 | | */ |
100 | | OSSL_CMP_CTX *OSSL_CMP_CTX_new(OSSL_LIB_CTX *libctx, const char *propq) |
101 | 64.4k | { |
102 | 64.4k | OSSL_CMP_CTX *ctx = OPENSSL_zalloc(sizeof(*ctx)); |
103 | | |
104 | 64.4k | if (ctx == NULL) |
105 | 0 | goto err; |
106 | | |
107 | 64.4k | ctx->libctx = libctx; |
108 | 64.4k | if (propq != NULL && (ctx->propq = OPENSSL_strdup(propq)) == NULL) |
109 | 0 | goto err; |
110 | | |
111 | 64.4k | ctx->log_verbosity = OSSL_CMP_LOG_INFO; |
112 | | |
113 | 64.4k | ctx->status = OSSL_CMP_PKISTATUS_unspecified; |
114 | 64.4k | ctx->failInfoCode = -1; |
115 | | |
116 | 64.4k | ctx->keep_alive = 1; |
117 | 64.4k | ctx->msg_timeout = -1; |
118 | 64.4k | ctx->tls_used = -1; /* default for backward compatibility */ |
119 | | |
120 | 64.4k | if ((ctx->untrusted = sk_X509_new_null()) == NULL) { |
121 | 0 | ERR_raise(ERR_LIB_X509, ERR_R_CRYPTO_LIB); |
122 | 0 | goto err; |
123 | 0 | } |
124 | | |
125 | 64.4k | ctx->pbm_slen = 16; |
126 | 64.4k | if (!cmp_ctx_set_md(ctx, &ctx->pbm_owf, NID_sha256)) |
127 | 0 | goto err; |
128 | 64.4k | ctx->pbm_itercnt = 500; |
129 | 64.4k | ctx->pbm_mac = NID_hmac_sha1; |
130 | | |
131 | 64.4k | if (!cmp_ctx_set_md(ctx, &ctx->digest, NID_sha256)) |
132 | 0 | goto err; |
133 | 64.4k | ctx->popoMethod = OSSL_CRMF_POPO_SIGNATURE; |
134 | 64.4k | ctx->revocationReason = CRL_REASON_NONE; |
135 | | |
136 | | /* all other elements are initialized to 0 or NULL, respectively */ |
137 | 64.4k | return ctx; |
138 | | |
139 | 0 | err: |
140 | 0 | OSSL_CMP_CTX_free(ctx); |
141 | 0 | return NULL; |
142 | 64.4k | } |
143 | | |
144 | | #define OSSL_CMP_ITAVs_free(itavs) \ |
145 | 157k | sk_OSSL_CMP_ITAV_pop_free(itavs, OSSL_CMP_ITAV_free); |
146 | | #define X509_EXTENSIONS_free(exts) \ |
147 | 78.6k | sk_X509_EXTENSION_pop_free(exts, X509_EXTENSION_free) |
148 | | #define OSSL_CMP_PKIFREETEXT_free(text) \ |
149 | 78.6k | sk_ASN1_UTF8STRING_pop_free(text, ASN1_UTF8STRING_free) |
150 | | |
151 | | /* Prepare the OSSL_CMP_CTX for next use, partly re-initializing OSSL_CMP_CTX */ |
152 | | int OSSL_CMP_CTX_reinit(OSSL_CMP_CTX *ctx) |
153 | 0 | { |
154 | 0 | if (ctx == NULL) { |
155 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); |
156 | 0 | return 0; |
157 | 0 | } |
158 | | |
159 | 0 | #ifndef OPENSSL_NO_HTTP |
160 | 0 | if (ctx->http_ctx != NULL) { |
161 | 0 | (void)OSSL_HTTP_close(ctx->http_ctx, 1); |
162 | 0 | ossl_cmp_debug(ctx, "disconnected from CMP server"); |
163 | 0 | ctx->http_ctx = NULL; |
164 | 0 | } |
165 | 0 | #endif |
166 | 0 | ctx->status = OSSL_CMP_PKISTATUS_unspecified; |
167 | 0 | ctx->failInfoCode = -1; |
168 | |
|
169 | 0 | OSSL_CMP_ITAVs_free(ctx->genm_ITAVs); |
170 | 0 | ctx->genm_ITAVs = NULL; |
171 | |
|
172 | 0 | return ossl_cmp_ctx_set0_statusString(ctx, NULL) |
173 | 0 | && ossl_cmp_ctx_set0_newCert(ctx, NULL) |
174 | 0 | && ossl_cmp_ctx_set1_newChain(ctx, NULL) |
175 | 0 | && ossl_cmp_ctx_set1_caPubs(ctx, NULL) |
176 | 0 | && ossl_cmp_ctx_set1_extraCertsIn(ctx, NULL) |
177 | 0 | && ossl_cmp_ctx_set1_validatedSrvCert(ctx, NULL) |
178 | 0 | && ossl_cmp_ctx_set1_first_senderNonce(ctx, NULL) |
179 | 0 | && OSSL_CMP_CTX_set1_transactionID(ctx, NULL) |
180 | 0 | && OSSL_CMP_CTX_set1_senderNonce(ctx, NULL) |
181 | 0 | && ossl_cmp_ctx_set1_recipNonce(ctx, NULL); |
182 | 0 | } |
183 | | |
184 | | /* Frees OSSL_CMP_CTX variables allocated in OSSL_CMP_CTX_new() */ |
185 | | void OSSL_CMP_CTX_free(OSSL_CMP_CTX *ctx) |
186 | 78.6k | { |
187 | 78.6k | if (ctx == NULL) |
188 | 0 | return; |
189 | | |
190 | 78.6k | #ifndef OPENSSL_NO_HTTP |
191 | 78.6k | if (ctx->http_ctx != NULL) { |
192 | 0 | (void)OSSL_HTTP_close(ctx->http_ctx, 1); |
193 | 0 | ossl_cmp_debug(ctx, "disconnected from CMP server"); |
194 | 0 | } |
195 | 78.6k | #endif |
196 | 78.6k | OPENSSL_free(ctx->propq); |
197 | 78.6k | OPENSSL_free(ctx->serverPath); |
198 | 78.6k | OPENSSL_free(ctx->server); |
199 | 78.6k | OPENSSL_free(ctx->proxy); |
200 | 78.6k | OPENSSL_free(ctx->no_proxy); |
201 | | |
202 | 78.6k | X509_free(ctx->srvCert); |
203 | 78.6k | X509_free(ctx->validatedSrvCert); |
204 | 78.6k | X509_NAME_free(ctx->expected_sender); |
205 | 78.6k | X509_STORE_free(ctx->trusted); |
206 | 78.6k | OSSL_STACK_OF_X509_free(ctx->untrusted); |
207 | | |
208 | 78.6k | X509_free(ctx->cert); |
209 | 78.6k | OSSL_STACK_OF_X509_free(ctx->chain); |
210 | 78.6k | EVP_PKEY_free(ctx->pkey); |
211 | 78.6k | ASN1_OCTET_STRING_free(ctx->referenceValue); |
212 | 78.6k | if (ctx->secretValue != NULL) |
213 | 39.3k | OPENSSL_cleanse(ctx->secretValue->data, ctx->secretValue->length); |
214 | 78.6k | ASN1_OCTET_STRING_free(ctx->secretValue); |
215 | 78.6k | EVP_MD_free(ctx->pbm_owf); |
216 | | |
217 | 78.6k | X509_NAME_free(ctx->recipient); |
218 | 78.6k | EVP_MD_free(ctx->digest); |
219 | 78.6k | ASN1_OCTET_STRING_free(ctx->transactionID); |
220 | 78.6k | ASN1_OCTET_STRING_free(ctx->senderNonce); |
221 | 78.6k | ASN1_OCTET_STRING_free(ctx->recipNonce); |
222 | 78.6k | ASN1_OCTET_STRING_free(ctx->first_senderNonce); |
223 | 78.6k | OSSL_CMP_ITAVs_free(ctx->geninfo_ITAVs); |
224 | 78.6k | OSSL_STACK_OF_X509_free(ctx->extraCertsOut); |
225 | | |
226 | 78.6k | EVP_PKEY_free(ctx->newPkey); |
227 | 78.6k | X509_NAME_free(ctx->issuer); |
228 | 78.6k | ASN1_INTEGER_free(ctx->serialNumber); |
229 | 78.6k | X509_NAME_free(ctx->subjectName); |
230 | 78.6k | sk_GENERAL_NAME_pop_free(ctx->subjectAltNames, GENERAL_NAME_free); |
231 | 78.6k | X509_EXTENSIONS_free(ctx->reqExtensions); |
232 | 78.6k | sk_POLICYINFO_pop_free(ctx->policies, POLICYINFO_free); |
233 | 78.6k | X509_free(ctx->oldCert); |
234 | 78.6k | X509_REQ_free(ctx->p10CSR); |
235 | | |
236 | 78.6k | OSSL_CMP_ITAVs_free(ctx->genm_ITAVs); |
237 | | |
238 | 78.6k | OSSL_CMP_PKIFREETEXT_free(ctx->statusString); |
239 | 78.6k | X509_free(ctx->newCert); |
240 | 78.6k | OSSL_STACK_OF_X509_free(ctx->newChain); |
241 | 78.6k | OSSL_STACK_OF_X509_free(ctx->caPubs); |
242 | 78.6k | OSSL_STACK_OF_X509_free(ctx->extraCertsIn); |
243 | | |
244 | 78.6k | OPENSSL_free(ctx); |
245 | 78.6k | } |
246 | | |
247 | | #define DEFINE_OSSL_set(PREFIX, FIELD, TYPE) \ |
248 | | int PREFIX##_set_##FIELD(OSSL_CMP_CTX *ctx, TYPE val) \ |
249 | 78.6k | { \ |
250 | 78.6k | if (ctx == NULL) { \ |
251 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); \ |
252 | 0 | return 0; \ |
253 | 0 | } \ |
254 | 78.6k | ctx->FIELD = val; \ |
255 | 78.6k | return 1; \ |
256 | 78.6k | } |
257 | | |
258 | 0 | DEFINE_OSSL_set(ossl_cmp_ctx, status, int) |
259 | | |
260 | | #define DEFINE_OSSL_get(PREFIX, FIELD, TYPE, ERR_RET) \ |
261 | | TYPE PREFIX##_get_##FIELD(const OSSL_CMP_CTX *ctx) \ |
262 | 0 | { \ |
263 | 0 | if (ctx == NULL) { \ |
264 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); \ |
265 | 0 | return ERR_RET; \ |
266 | 0 | } \ |
267 | 0 | return ctx->FIELD; \ |
268 | 0 | } |
269 | | |
270 | | /* |
271 | | * Returns the PKIStatus from the last CertRepMessage |
272 | | * or Revocation Response or error message, -1 on error |
273 | | */ |
274 | 0 | DEFINE_OSSL_get(OSSL_CMP_CTX, status, int, -1) |
275 | | |
276 | | /* |
277 | | * Returns the statusString from the last CertRepMessage |
278 | | * or Revocation Response or error message, NULL on error |
279 | | */ |
280 | 0 | DEFINE_OSSL_CMP_CTX_get0(statusString, OSSL_CMP_PKIFREETEXT) |
281 | 0 |
|
282 | 0 | DEFINE_OSSL_set0(ossl_cmp_ctx, statusString, OSSL_CMP_PKIFREETEXT) |
283 | 0 |
|
284 | 0 | /* Set callback function for checking if the cert is ok or should be rejected */ |
285 | 0 | DEFINE_OSSL_set(OSSL_CMP_CTX, certConf_cb, OSSL_CMP_certConf_cb_t) |
286 | | |
287 | | /* |
288 | | * Set argument, respectively a pointer to a structure containing arguments, |
289 | | * optionally to be used by the certConf callback. |
290 | | */ |
291 | 0 | DEFINE_OSSL_set(OSSL_CMP_CTX, certConf_cb_arg, void *) |
292 | | |
293 | | /* |
294 | | * Get argument, respectively the pointer to a structure containing arguments, |
295 | | * optionally to be used by certConf callback. |
296 | | * Returns callback argument set previously (NULL if not set or on error) |
297 | | */ |
298 | 0 | DEFINE_OSSL_get(OSSL_CMP_CTX, certConf_cb_arg, void *, NULL) |
299 | | |
300 | | #ifndef OPENSSL_NO_TRACE |
301 | | static size_t ossl_cmp_log_trace_cb(const char *buf, size_t cnt, |
302 | | int category, int cmd, void *vdata) |
303 | | { |
304 | | OSSL_CMP_CTX *ctx = vdata; |
305 | | const char *msg; |
306 | | OSSL_CMP_severity level = -1; |
307 | | char *func = NULL; |
308 | | char *file = NULL; |
309 | | int line = 0; |
310 | | |
311 | | if (buf == NULL || cnt == 0 || cmd != OSSL_TRACE_CTRL_WRITE || ctx == NULL) |
312 | | return 0; |
313 | | if (ctx->log_cb == NULL) |
314 | | return 1; /* silently drop message */ |
315 | | |
316 | | msg = ossl_cmp_log_parse_metadata(buf, &level, &func, &file, &line); |
317 | | |
318 | | if (level > ctx->log_verbosity) /* excludes the case level is unknown */ |
319 | | goto end; /* suppress output since severity is not sufficient */ |
320 | | |
321 | | if (!ctx->log_cb(func != NULL ? func : "(no func)", |
322 | | file != NULL ? file : "(no file)", |
323 | | line, level, msg)) |
324 | | cnt = 0; |
325 | | |
326 | | end: |
327 | | OPENSSL_free(func); |
328 | | OPENSSL_free(file); |
329 | | return cnt; |
330 | | } |
331 | | #endif |
332 | | |
333 | | /* Print CMP log messages (i.e., diagnostic info) via the log cb of the ctx */ |
334 | | int ossl_cmp_print_log(OSSL_CMP_severity level, const OSSL_CMP_CTX *ctx, |
335 | | const char *func, const char *file, int line, |
336 | | const char *level_str, const char *format, ...) |
337 | 330k | { |
338 | 330k | va_list args; |
339 | 330k | char hugebuf[1024 * 2]; |
340 | 330k | int res = 0; |
341 | | |
342 | 330k | if (ctx == NULL || ctx->log_cb == NULL) |
343 | 82.5k | return 1; /* silently drop message */ |
344 | | |
345 | 247k | if (level > ctx->log_verbosity) /* excludes the case level is unknown */ |
346 | 88.8k | return 1; /* suppress output since severity is not sufficient */ |
347 | | |
348 | 158k | if (format == NULL) |
349 | 0 | return 0; |
350 | | |
351 | 158k | va_start(args, format); |
352 | | |
353 | 158k | if (func == NULL) |
354 | 0 | func = "(unset function name)"; |
355 | 158k | if (file == NULL) |
356 | 0 | file = "(unset file name)"; |
357 | 158k | if (level_str == NULL) |
358 | 0 | level_str = "(unset level string)"; |
359 | | |
360 | | #ifndef OPENSSL_NO_TRACE |
361 | | if (OSSL_TRACE_ENABLED(CMP)) { |
362 | | OSSL_TRACE_BEGIN(CMP) |
363 | | { |
364 | | int printed = BIO_snprintf(hugebuf, sizeof(hugebuf), |
365 | | "%s:%s:%d:" OSSL_CMP_LOG_PREFIX "%s: ", |
366 | | func, file, line, level_str); |
367 | | if (printed > 0 && (size_t)printed < sizeof(hugebuf)) { |
368 | | if (BIO_vsnprintf(hugebuf + printed, |
369 | | sizeof(hugebuf) - printed, format, args) |
370 | | > 0) |
371 | | res = BIO_puts(trc_out, hugebuf) > 0; |
372 | | } |
373 | | } |
374 | | OSSL_TRACE_END(CMP); |
375 | | } |
376 | | #else /* compensate for disabled trace API */ |
377 | 158k | { |
378 | 158k | if (BIO_vsnprintf(hugebuf, sizeof(hugebuf), format, args) > 0) |
379 | 158k | res = ctx->log_cb(func, file, line, level, hugebuf); |
380 | 158k | } |
381 | 158k | #endif |
382 | 158k | va_end(args); |
383 | 158k | return res; |
384 | 158k | } |
385 | | |
386 | | /* Set a callback function for error reporting and logging messages */ |
387 | | int OSSL_CMP_CTX_set_log_cb(OSSL_CMP_CTX *ctx, OSSL_CMP_log_cb_t cb) |
388 | 78.6k | { |
389 | 78.6k | if (ctx == NULL) { |
390 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); |
391 | 0 | return 0; |
392 | 0 | } |
393 | 78.6k | ctx->log_cb = cb; |
394 | | |
395 | | #ifndef OPENSSL_NO_TRACE |
396 | | /* do also in case cb == NULL, to switch off logging output: */ |
397 | | if (!OSSL_trace_set_callback(OSSL_TRACE_CATEGORY_CMP, |
398 | | ossl_cmp_log_trace_cb, ctx)) |
399 | | return 0; |
400 | | #endif |
401 | | |
402 | 78.6k | return 1; |
403 | 78.6k | } |
404 | | |
405 | | /* Print OpenSSL and CMP errors via the log cb of the ctx or ERR_print_errors */ |
406 | | void OSSL_CMP_CTX_print_errors(const OSSL_CMP_CTX *ctx) |
407 | 44.3k | { |
408 | 44.3k | if (ctx != NULL && OSSL_CMP_LOG_ERR > ctx->log_verbosity) |
409 | 0 | return; /* suppress output since severity is not sufficient */ |
410 | 44.3k | OSSL_CMP_print_errors_cb(ctx == NULL ? NULL : ctx->log_cb); |
411 | 44.3k | } |
412 | | |
413 | | /* |
414 | | * Set or clear the reference value to be used for identification |
415 | | * (i.e., the user name) when using PBMAC. |
416 | | */ |
417 | | int OSSL_CMP_CTX_set1_referenceValue(OSSL_CMP_CTX *ctx, |
418 | | const unsigned char *ref, int len) |
419 | 0 | { |
420 | 0 | if (ctx == NULL) { |
421 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); |
422 | 0 | return 0; |
423 | 0 | } |
424 | 0 | return ossl_cmp_asn1_octet_string_set1_bytes(&ctx->referenceValue, ref, len); |
425 | 0 | } |
426 | | |
427 | | /* Set or clear the password to be used for protecting messages with PBMAC */ |
428 | | int OSSL_CMP_CTX_set1_secretValue(OSSL_CMP_CTX *ctx, |
429 | | const unsigned char *sec, int len) |
430 | 39.3k | { |
431 | 39.3k | ASN1_OCTET_STRING *secretValue = NULL; |
432 | | |
433 | 39.3k | if (ctx == NULL) { |
434 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); |
435 | 0 | return 0; |
436 | 0 | } |
437 | 39.3k | if (ossl_cmp_asn1_octet_string_set1_bytes(&secretValue, sec, len) != 1) |
438 | 0 | return 0; |
439 | 39.3k | if (ctx->secretValue != NULL) { |
440 | 0 | OPENSSL_cleanse(ctx->secretValue->data, ctx->secretValue->length); |
441 | 0 | ASN1_OCTET_STRING_free(ctx->secretValue); |
442 | 0 | } |
443 | 39.3k | ctx->secretValue = secretValue; |
444 | 39.3k | return 1; |
445 | 39.3k | } |
446 | | |
447 | | #define DEFINE_OSSL_CMP_CTX_get1_certs(FIELD) \ |
448 | | STACK_OF(X509) *OSSL_CMP_CTX_get1_##FIELD(const OSSL_CMP_CTX *ctx) \ |
449 | 0 | { \ |
450 | 0 | if (ctx == NULL) { \ |
451 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); \ |
452 | 0 | return NULL; \ |
453 | 0 | } \ |
454 | 0 | return X509_chain_up_ref(ctx->FIELD); \ |
455 | 0 | } |
456 | | |
457 | | /* Returns the cert chain computed by OSSL_CMP_certConf_cb(), NULL on error */ |
458 | 0 | DEFINE_OSSL_CMP_CTX_get1_certs(newChain) |
459 | | |
460 | | #define DEFINE_OSSL_set1_certs(PREFIX, FIELD) \ |
461 | | int PREFIX##_set1_##FIELD(OSSL_CMP_CTX *ctx, STACK_OF(X509) *certs) \ |
462 | 0 | { \ |
463 | 0 | if (ctx == NULL) { \ |
464 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); \ |
465 | 0 | return 0; \ |
466 | 0 | } \ |
467 | 0 | OSSL_STACK_OF_X509_free(ctx->FIELD); \ |
468 | 0 | ctx->FIELD = NULL; \ |
469 | 0 | return certs == NULL || (ctx->FIELD = X509_chain_up_ref(certs)) != NULL; \ |
470 | 0 | } |
471 | | |
472 | | /* |
473 | | * Copies any given stack of inbound X509 certificates to newChain |
474 | | * of the OSSL_CMP_CTX structure so that they may be retrieved later. |
475 | | */ |
476 | 0 | DEFINE_OSSL_set1_certs(ossl_cmp_ctx, newChain) |
477 | | |
478 | | /* Returns the stack of extraCerts received in CertRepMessage, NULL on error */ |
479 | 0 | DEFINE_OSSL_CMP_CTX_get1_certs(extraCertsIn) |
480 | | |
481 | | /* |
482 | | * Copies any given stack of inbound X509 certificates to extraCertsIn |
483 | | * of the OSSL_CMP_CTX structure so that they may be retrieved later. |
484 | | */ |
485 | 0 | DEFINE_OSSL_set1_certs(ossl_cmp_ctx, extraCertsIn) |
486 | | |
487 | | /* |
488 | | * Copies any given stack as the new stack of X509 |
489 | | * certificates to send out in the extraCerts field. |
490 | | */ |
491 | 0 | DEFINE_OSSL_set1_certs(OSSL_CMP_CTX, extraCertsOut) |
492 | | |
493 | | /* |
494 | | * Add the given policy info object |
495 | | * to the X509_EXTENSIONS of the requested certificate template. |
496 | | */ |
497 | | int OSSL_CMP_CTX_push0_policy(OSSL_CMP_CTX *ctx, POLICYINFO *pinfo) |
498 | 0 | { |
499 | 0 | if (ctx == NULL || pinfo == NULL) { |
500 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); |
501 | 0 | return 0; |
502 | 0 | } |
503 | | |
504 | 0 | if (ctx->policies == NULL |
505 | 0 | && (ctx->policies = CERTIFICATEPOLICIES_new()) == NULL) |
506 | 0 | return 0; |
507 | | |
508 | 0 | return sk_POLICYINFO_push(ctx->policies, pinfo); |
509 | 0 | } |
510 | | |
511 | | /* Add an ITAV for geninfo of the PKI message header */ |
512 | | int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav) |
513 | 0 | { |
514 | 0 | if (ctx == NULL) { |
515 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); |
516 | 0 | return 0; |
517 | 0 | } |
518 | 0 | return OSSL_CMP_ITAV_push0_stack_item(&ctx->geninfo_ITAVs, itav); |
519 | 0 | } |
520 | | |
521 | | int OSSL_CMP_CTX_reset_geninfo_ITAVs(OSSL_CMP_CTX *ctx) |
522 | 0 | { |
523 | 0 | if (ctx == NULL) { |
524 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); |
525 | 0 | return 0; |
526 | 0 | } |
527 | 0 | OSSL_CMP_ITAVs_free(ctx->geninfo_ITAVs); |
528 | 0 | ctx->geninfo_ITAVs = NULL; |
529 | 0 | return 1; |
530 | 0 | } |
531 | | |
532 | 0 | DEFINE_OSSL_CMP_CTX_get0(geninfo_ITAVs, STACK_OF(OSSL_CMP_ITAV)) |
533 | 0 |
|
534 | 0 | /* Add an itav for the body of outgoing general messages */ |
535 | 0 | int OSSL_CMP_CTX_push0_genm_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav) |
536 | 0 | { |
537 | 0 | if (ctx == NULL) { |
538 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); |
539 | 0 | return 0; |
540 | 0 | } |
541 | 0 | return OSSL_CMP_ITAV_push0_stack_item(&ctx->genm_ITAVs, itav); |
542 | 0 | } |
543 | | |
544 | | /* |
545 | | * Returns a duplicate of the stack of X509 certificates that |
546 | | * were received in the caPubs field of the last CertRepMessage. |
547 | | * Returns NULL on error |
548 | | */ |
549 | 0 | DEFINE_OSSL_CMP_CTX_get1_certs(caPubs) |
550 | | |
551 | | /* |
552 | | * Copies any given stack of certificates to the given |
553 | | * OSSL_CMP_CTX structure so that they may be retrieved later. |
554 | | */ |
555 | 0 | DEFINE_OSSL_set1_certs(ossl_cmp_ctx, caPubs) |
556 | | |
557 | 0 | #define char_dup OPENSSL_strdup |
558 | 0 | #define char_free OPENSSL_free |
559 | | #define DEFINE_OSSL_CMP_CTX_set1(FIELD, TYPE) /* this uses _dup */ \ |
560 | | int OSSL_CMP_CTX_set1_##FIELD(OSSL_CMP_CTX *ctx, const TYPE *val) \ |
561 | 13.7k | { \ |
562 | 13.7k | TYPE *val_dup = NULL; \ |
563 | 13.7k | \ |
564 | 13.7k | if (ctx == NULL) { \ |
565 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); \ |
566 | 0 | return 0; \ |
567 | 0 | } \ |
568 | 13.7k | \ |
569 | 13.7k | if (val != NULL && (val_dup = TYPE##_dup(val)) == NULL) \ |
570 | 13.7k | return 0; \ |
571 | 13.7k | TYPE##_free(ctx->FIELD); \ |
572 | 13.6k | ctx->FIELD = val_dup; \ |
573 | 13.6k | return 1; \ |
574 | 13.7k | } |
575 | | |
576 | 0 | #define X509_invalid(cert) (!ossl_x509v3_cache_extensions(cert)) |
577 | 0 | #define EVP_PKEY_invalid(key) 0 |
578 | | |
579 | | #define DEFINE_OSSL_set1_up_ref(PREFIX, FIELD, TYPE) \ |
580 | | int PREFIX##_set1_##FIELD(OSSL_CMP_CTX *ctx, TYPE *val) \ |
581 | 0 | { \ |
582 | 0 | if (ctx == NULL) { \ |
583 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); \ |
584 | 0 | return 0; \ |
585 | 0 | } \ |
586 | 0 | \ |
587 | 0 | /* prevent misleading error later on malformed cert or provider issue */ \ |
588 | 0 | if (val != NULL && TYPE##_invalid(val)) { \ |
589 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_POTENTIALLY_INVALID_CERTIFICATE); \ |
590 | 0 | return 0; \ |
591 | 0 | } \ |
592 | 0 | if (val != NULL && !TYPE##_up_ref(val)) \ |
593 | 0 | return 0; \ |
594 | 0 | TYPE##_free(ctx->FIELD); \ |
595 | 0 | ctx->FIELD = val; \ |
596 | 0 | return 1; \ |
597 | 0 | } |
598 | | |
599 | 0 | DEFINE_OSSL_set1_up_ref(ossl_cmp_ctx, validatedSrvCert, X509) |
600 | | |
601 | | /* |
602 | | * Pins the server certificate to be directly trusted (even if it is expired) |
603 | | * for verifying response messages. |
604 | | * Cert pointer is not consumed. It may be NULL to clear the entry. |
605 | | */ |
606 | 0 | DEFINE_OSSL_set1_up_ref(OSSL_CMP_CTX, srvCert, X509) |
607 | | |
608 | | /* Set the X509 name of the recipient to be placed in the PKIHeader */ |
609 | 13.7k | DEFINE_OSSL_CMP_CTX_set1(recipient, X509_NAME) |
610 | | |
611 | | /* Store the X509 name of the expected sender in the PKIHeader of responses */ |
612 | 0 | DEFINE_OSSL_CMP_CTX_set1(expected_sender, X509_NAME) |
613 | | |
614 | | /* Set the X509 name of the issuer to be placed in the certTemplate */ |
615 | 0 | DEFINE_OSSL_CMP_CTX_set1(issuer, X509_NAME) |
616 | | |
617 | | /* Set the ASN1_INTEGER serial to be placed in the certTemplate for rr */ |
618 | 0 | DEFINE_OSSL_CMP_CTX_set1(serialNumber, ASN1_INTEGER) |
619 | | /* |
620 | | * Set the subject name that will be placed in the certificate |
621 | | * request. This will be the subject name on the received certificate. |
622 | | */ |
623 | 0 | DEFINE_OSSL_CMP_CTX_set1(subjectName, X509_NAME) |
624 | | |
625 | | /* Set the X.509v3 certificate request extensions to be used in IR/CR/KUR */ |
626 | | int OSSL_CMP_CTX_set0_reqExtensions(OSSL_CMP_CTX *ctx, X509_EXTENSIONS *exts) |
627 | 0 | { |
628 | 0 | if (ctx == NULL) { |
629 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); |
630 | 0 | return 0; |
631 | 0 | } |
632 | | |
633 | 0 | if (sk_GENERAL_NAME_num(ctx->subjectAltNames) > 0 && exts != NULL |
634 | 0 | && X509v3_get_ext_by_NID(exts, NID_subject_alt_name, -1) >= 0) { |
635 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_MULTIPLE_SAN_SOURCES); |
636 | 0 | return 0; |
637 | 0 | } |
638 | 0 | X509_EXTENSIONS_free(ctx->reqExtensions); |
639 | 0 | ctx->reqExtensions = exts; |
640 | 0 | return 1; |
641 | 0 | } |
642 | | |
643 | | /* returns 1 if ctx contains a Subject Alternative Name extension, else 0 */ |
644 | | int OSSL_CMP_CTX_reqExtensions_have_SAN(OSSL_CMP_CTX *ctx) |
645 | 2.25k | { |
646 | 2.25k | if (ctx == NULL) { |
647 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); |
648 | 0 | return -1; |
649 | 0 | } |
650 | | /* if one of the following conditions 'fail' this is not an error */ |
651 | 2.25k | return ctx->reqExtensions != NULL |
652 | 0 | && X509v3_get_ext_by_NID(ctx->reqExtensions, |
653 | 0 | NID_subject_alt_name, -1) |
654 | 0 | >= 0; |
655 | 2.25k | } |
656 | | |
657 | | /* |
658 | | * Add a GENERAL_NAME structure that will be added to the CRMF |
659 | | * request's extensions field to request subject alternative names. |
660 | | */ |
661 | | int OSSL_CMP_CTX_push1_subjectAltName(OSSL_CMP_CTX *ctx, |
662 | | const GENERAL_NAME *name) |
663 | 0 | { |
664 | 0 | GENERAL_NAME *name_dup; |
665 | |
|
666 | 0 | if (ctx == NULL || name == NULL) { |
667 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); |
668 | 0 | return 0; |
669 | 0 | } |
670 | | |
671 | 0 | if (OSSL_CMP_CTX_reqExtensions_have_SAN(ctx) == 1) { |
672 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_MULTIPLE_SAN_SOURCES); |
673 | 0 | return 0; |
674 | 0 | } |
675 | | |
676 | 0 | if (ctx->subjectAltNames == NULL |
677 | 0 | && (ctx->subjectAltNames = sk_GENERAL_NAME_new_null()) == NULL) |
678 | 0 | return 0; |
679 | 0 | if ((name_dup = GENERAL_NAME_dup(name)) == NULL) |
680 | 0 | return 0; |
681 | 0 | if (!sk_GENERAL_NAME_push(ctx->subjectAltNames, name_dup)) { |
682 | 0 | GENERAL_NAME_free(name_dup); |
683 | 0 | return 0; |
684 | 0 | } |
685 | 0 | return 1; |
686 | 0 | } |
687 | | |
688 | | /* |
689 | | * Set our own client certificate, used for example in KUR and when |
690 | | * doing the IR with existing certificate. |
691 | | */ |
692 | 0 | DEFINE_OSSL_set1_up_ref(OSSL_CMP_CTX, cert, X509) |
693 | | |
694 | | int OSSL_CMP_CTX_build_cert_chain(OSSL_CMP_CTX *ctx, X509_STORE *own_trusted, |
695 | | STACK_OF(X509) *candidates) |
696 | 0 | { |
697 | 0 | STACK_OF(X509) *chain; |
698 | |
|
699 | 0 | if (ctx == NULL) { |
700 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); |
701 | 0 | return 0; |
702 | 0 | } |
703 | | |
704 | 0 | if (!ossl_x509_add_certs_new(&ctx->untrusted, candidates, |
705 | 0 | X509_ADD_FLAG_UP_REF | X509_ADD_FLAG_NO_DUP)) |
706 | 0 | return 0; |
707 | | |
708 | 0 | ossl_cmp_debug(ctx, "trying to build chain for own CMP signer cert"); |
709 | 0 | chain = X509_build_chain(ctx->cert, ctx->untrusted, own_trusted, 0, |
710 | 0 | ctx->libctx, ctx->propq); |
711 | 0 | if (chain == NULL) { |
712 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_FAILED_BUILDING_OWN_CHAIN); |
713 | 0 | return 0; |
714 | 0 | } |
715 | 0 | ossl_cmp_debug(ctx, "success building chain for own CMP signer cert"); |
716 | 0 | ctx->chain = chain; |
717 | 0 | return 1; |
718 | 0 | } |
719 | | |
720 | | /* |
721 | | * Set the old certificate that we are updating in KUR |
722 | | * or the certificate to be revoked in RR, respectively. |
723 | | * Also used as reference cert (defaulting to cert) for deriving subject DN |
724 | | * and SANs. Its issuer is used as default recipient in the CMP message header. |
725 | | */ |
726 | 0 | DEFINE_OSSL_set1_up_ref(OSSL_CMP_CTX, oldCert, X509) |
727 | | |
728 | | /* Set the PKCS#10 CSR to be sent in P10CR */ |
729 | 0 | DEFINE_OSSL_CMP_CTX_set1(p10CSR, X509_REQ) |
730 | | |
731 | | /* |
732 | | * Set the (newly received in IP/KUP/CP) certificate in the context. |
733 | | * This only permits for one cert to be enrolled at a time. |
734 | | */ |
735 | 1.05k | DEFINE_OSSL_set0(ossl_cmp_ctx, newCert, X509) |
736 | 1.05k | |
737 | 1.05k | /* Get successfully validated server cert, if any, of current transaction */ |
738 | 1.05k | DEFINE_OSSL_CMP_CTX_get0(validatedSrvCert, X509) |
739 | 0 |
|
740 | 0 | /* |
741 | 0 | * Get the (newly received in IP/KUP/CP) client certificate from the context |
742 | 0 | * This only permits for one client cert to be received... |
743 | 0 | */ |
744 | 0 | DEFINE_OSSL_CMP_CTX_get0(newCert, X509) |
745 | 0 |
|
746 | 0 | /* Set the client's current private key */ |
747 | 0 | DEFINE_OSSL_set1_up_ref(OSSL_CMP_CTX, pkey, EVP_PKEY) |
748 | | |
749 | | /* Set new key pair. Used e.g. when doing Key Update */ |
750 | | int OSSL_CMP_CTX_set0_newPkey(OSSL_CMP_CTX *ctx, int priv, EVP_PKEY *pkey) |
751 | 3.44k | { |
752 | 3.44k | if (ctx == NULL) { |
753 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); |
754 | 0 | return 0; |
755 | 0 | } |
756 | | |
757 | 3.44k | EVP_PKEY_free(ctx->newPkey); |
758 | 3.44k | ctx->newPkey = pkey; |
759 | 3.44k | ctx->newPkey_priv = priv; |
760 | 3.44k | return 1; |
761 | 3.44k | } |
762 | | |
763 | | /* Get the private/public key to use for cert enrollment, or NULL on error */ |
764 | | /* In case |priv| == 0, better use ossl_cmp_ctx_get0_newPubkey() below */ |
765 | | EVP_PKEY *OSSL_CMP_CTX_get0_newPkey(const OSSL_CMP_CTX *ctx, int priv) |
766 | 1.17k | { |
767 | 1.17k | if (ctx == NULL) { |
768 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); |
769 | 0 | return NULL; |
770 | 0 | } |
771 | | |
772 | 1.17k | if (ctx->newPkey != NULL) |
773 | 0 | return priv && !ctx->newPkey_priv ? NULL : ctx->newPkey; |
774 | 1.17k | if (ctx->p10CSR != NULL) |
775 | 0 | return priv ? NULL : X509_REQ_get0_pubkey(ctx->p10CSR); |
776 | 1.17k | return ctx->pkey; /* may be NULL */ |
777 | 1.17k | } |
778 | | |
779 | | EVP_PKEY *ossl_cmp_ctx_get0_newPubkey(const OSSL_CMP_CTX *ctx) |
780 | 1.17k | { |
781 | 1.17k | if (!ossl_assert(ctx != NULL)) |
782 | 0 | return NULL; |
783 | 1.17k | if (ctx->newPkey != NULL) |
784 | 0 | return ctx->newPkey; |
785 | 1.17k | if (ctx->p10CSR != NULL) |
786 | 0 | return X509_REQ_get0_pubkey(ctx->p10CSR); |
787 | 1.17k | if (ctx->oldCert != NULL) |
788 | 1.17k | return X509_get0_pubkey(ctx->oldCert); |
789 | 0 | if (ctx->cert != NULL) |
790 | 0 | return X509_get0_pubkey(ctx->cert); |
791 | 0 | return ctx->pkey; |
792 | 0 | } |
793 | | |
794 | | #define DEFINE_set1_ASN1_OCTET_STRING(PREFIX, FIELD) \ |
795 | | int PREFIX##_set1_##FIELD(OSSL_CMP_CTX *ctx, const ASN1_OCTET_STRING *id) \ |
796 | 274k | { \ |
797 | 274k | if (ctx == NULL) { \ |
798 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); \ |
799 | 0 | return 0; \ |
800 | 0 | } \ |
801 | 274k | return ossl_cmp_asn1_octet_string_set1(&ctx->FIELD, id); \ |
802 | 274k | } |
803 | | |
804 | | /* Set the given transactionID to the context */ |
805 | 120k | DEFINE_set1_ASN1_OCTET_STRING(OSSL_CMP_CTX, transactionID) |
806 | | |
807 | | /* Set the nonce to be used for the recipNonce in the message created next */ |
808 | 62.2k | DEFINE_set1_ASN1_OCTET_STRING(ossl_cmp_ctx, recipNonce) |
809 | | |
810 | | /* Stores the given nonce as the last senderNonce sent out */ |
811 | 91.4k | DEFINE_set1_ASN1_OCTET_STRING(OSSL_CMP_CTX, senderNonce) |
812 | | |
813 | | /* store the first req sender nonce for verifying delayed delivery */ |
814 | 195 | DEFINE_set1_ASN1_OCTET_STRING(ossl_cmp_ctx, first_senderNonce) |
815 | | |
816 | | /* Set the proxy server to use for HTTP(S) connections */ |
817 | 0 | DEFINE_OSSL_CMP_CTX_set1(proxy, char) |
818 | | |
819 | | /* Set the (HTTP) hostname of the CMP server */ |
820 | 0 | DEFINE_OSSL_CMP_CTX_set1(server, char) |
821 | | |
822 | | /* Set the server exclusion list of the HTTP proxy server */ |
823 | 0 | DEFINE_OSSL_CMP_CTX_set1(no_proxy, char) |
824 | | |
825 | | #ifndef OPENSSL_NO_HTTP |
826 | | /* Set the http connect/disconnect callback function to be used for HTTP(S) */ |
827 | 0 | DEFINE_OSSL_set(OSSL_CMP_CTX, http_cb, OSSL_HTTP_bio_cb_t) |
828 | | |
829 | | /* Set argument optionally to be used by the http connect/disconnect callback */ |
830 | 0 | DEFINE_OSSL_set(OSSL_CMP_CTX, http_cb_arg, void *) |
831 | | |
832 | | /* |
833 | | * Get argument optionally to be used by the http connect/disconnect callback |
834 | | * Returns callback argument set previously (NULL if not set or on error) |
835 | | */ |
836 | 0 | DEFINE_OSSL_get(OSSL_CMP_CTX, http_cb_arg, void *, NULL) |
837 | | #endif |
838 | | |
839 | | /* Set callback function for sending CMP request and receiving response */ |
840 | 39.3k | DEFINE_OSSL_set(OSSL_CMP_CTX, transfer_cb, OSSL_CMP_transfer_cb_t) |
841 | | |
842 | | /* Set argument optionally to be used by the transfer callback */ |
843 | 39.3k | DEFINE_OSSL_set(OSSL_CMP_CTX, transfer_cb_arg, void *) |
844 | | |
845 | | /* |
846 | | * Get argument optionally to be used by the transfer callback. |
847 | | * Returns callback argument set previously (NULL if not set or on error) |
848 | | */ |
849 | 0 | DEFINE_OSSL_get(OSSL_CMP_CTX, transfer_cb_arg, void *, NULL) |
850 | | |
851 | | /** Set the HTTP server port to be used */ |
852 | 0 | DEFINE_OSSL_set(OSSL_CMP_CTX, serverPort, int) |
853 | | |
854 | | /* Set the HTTP path to be used on the server (e.g "pkix/") */ |
855 | 0 | DEFINE_OSSL_CMP_CTX_set1(serverPath, char) |
856 | | |
857 | | /* Set the failInfo error code as bit encoding in OSSL_CMP_CTX */ |
858 | 0 | DEFINE_OSSL_set(ossl_cmp_ctx, failInfoCode, int) |
859 | | |
860 | | /* |
861 | | * Get the failInfo error code in OSSL_CMP_CTX as bit encoding. |
862 | | * Returns bit string as integer on success, -1 on error |
863 | | */ |
864 | 0 | DEFINE_OSSL_get(OSSL_CMP_CTX, failInfoCode, int, -1) |
865 | | |
866 | | /* Set a Boolean or integer option of the context to the "val" arg */ |
867 | | int OSSL_CMP_CTX_set_option(OSSL_CMP_CTX *ctx, int opt, int val) |
868 | 0 | { |
869 | 0 | int min_val; |
870 | |
|
871 | 0 | if (ctx == NULL) { |
872 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); |
873 | 0 | return 0; |
874 | 0 | } |
875 | | |
876 | 0 | switch (opt) { |
877 | 0 | case OSSL_CMP_OPT_REVOCATION_REASON: |
878 | 0 | min_val = OCSP_REVOKED_STATUS_NOSTATUS; |
879 | 0 | break; |
880 | 0 | case OSSL_CMP_OPT_POPO_METHOD: |
881 | 0 | min_val = OSSL_CRMF_POPO_NONE; |
882 | 0 | break; |
883 | 0 | default: |
884 | 0 | min_val = 0; |
885 | 0 | break; |
886 | 0 | } |
887 | 0 | if (val < min_val) { |
888 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_VALUE_TOO_SMALL); |
889 | 0 | return 0; |
890 | 0 | } |
891 | | |
892 | 0 | switch (opt) { |
893 | 0 | case OSSL_CMP_OPT_LOG_VERBOSITY: |
894 | 0 | if (val > OSSL_CMP_LOG_MAX) { |
895 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_VALUE_TOO_LARGE); |
896 | 0 | return 0; |
897 | 0 | } |
898 | 0 | ctx->log_verbosity = val; |
899 | 0 | break; |
900 | 0 | case OSSL_CMP_OPT_IMPLICIT_CONFIRM: |
901 | 0 | ctx->implicitConfirm = val; |
902 | 0 | break; |
903 | 0 | case OSSL_CMP_OPT_DISABLE_CONFIRM: |
904 | 0 | ctx->disableConfirm = val; |
905 | 0 | break; |
906 | 0 | case OSSL_CMP_OPT_UNPROTECTED_SEND: |
907 | 0 | ctx->unprotectedSend = val; |
908 | 0 | break; |
909 | 0 | case OSSL_CMP_OPT_UNPROTECTED_ERRORS: |
910 | 0 | ctx->unprotectedErrors = val; |
911 | 0 | break; |
912 | 0 | case OSSL_CMP_OPT_NO_CACHE_EXTRACERTS: |
913 | 0 | ctx->noCacheExtraCerts = val; |
914 | 0 | break; |
915 | 0 | case OSSL_CMP_OPT_VALIDITY_DAYS: |
916 | 0 | ctx->days = val; |
917 | 0 | break; |
918 | 0 | case OSSL_CMP_OPT_SUBJECTALTNAME_NODEFAULT: |
919 | 0 | ctx->SubjectAltName_nodefault = val; |
920 | 0 | break; |
921 | 0 | case OSSL_CMP_OPT_SUBJECTALTNAME_CRITICAL: |
922 | 0 | ctx->setSubjectAltNameCritical = val; |
923 | 0 | break; |
924 | 0 | case OSSL_CMP_OPT_POLICIES_CRITICAL: |
925 | 0 | ctx->setPoliciesCritical = val; |
926 | 0 | break; |
927 | 0 | case OSSL_CMP_OPT_IGNORE_KEYUSAGE: |
928 | 0 | ctx->ignore_keyusage = val; |
929 | 0 | break; |
930 | 0 | case OSSL_CMP_OPT_POPO_METHOD: |
931 | 0 | if (val > OSSL_CRMF_POPO_KEYAGREE) { |
932 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_VALUE_TOO_LARGE); |
933 | 0 | return 0; |
934 | 0 | } |
935 | 0 | ctx->popoMethod = val; |
936 | 0 | break; |
937 | 0 | case OSSL_CMP_OPT_DIGEST_ALGNID: |
938 | 0 | if (!cmp_ctx_set_md(ctx, &ctx->digest, val)) |
939 | 0 | return 0; |
940 | 0 | break; |
941 | 0 | case OSSL_CMP_OPT_OWF_ALGNID: |
942 | 0 | if (!cmp_ctx_set_md(ctx, &ctx->pbm_owf, val)) |
943 | 0 | return 0; |
944 | 0 | break; |
945 | 0 | case OSSL_CMP_OPT_MAC_ALGNID: |
946 | 0 | ctx->pbm_mac = val; |
947 | 0 | break; |
948 | 0 | case OSSL_CMP_OPT_KEEP_ALIVE: |
949 | 0 | ctx->keep_alive = val; |
950 | 0 | break; |
951 | 0 | case OSSL_CMP_OPT_MSG_TIMEOUT: |
952 | 0 | ctx->msg_timeout = val; |
953 | 0 | break; |
954 | 0 | case OSSL_CMP_OPT_TOTAL_TIMEOUT: |
955 | 0 | ctx->total_timeout = val; |
956 | 0 | break; |
957 | 0 | case OSSL_CMP_OPT_USE_TLS: |
958 | 0 | ctx->tls_used = val; |
959 | 0 | break; |
960 | 0 | case OSSL_CMP_OPT_PERMIT_TA_IN_EXTRACERTS_FOR_IR: |
961 | 0 | ctx->permitTAInExtraCertsForIR = val; |
962 | 0 | break; |
963 | 0 | case OSSL_CMP_OPT_REVOCATION_REASON: |
964 | 0 | if (val > OCSP_REVOKED_STATUS_AACOMPROMISE) { |
965 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_VALUE_TOO_LARGE); |
966 | 0 | return 0; |
967 | 0 | } |
968 | 0 | ctx->revocationReason = val; |
969 | 0 | break; |
970 | 0 | default: |
971 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_INVALID_OPTION); |
972 | 0 | return 0; |
973 | 0 | } |
974 | | |
975 | 0 | return 1; |
976 | 0 | } |
977 | | |
978 | | /* |
979 | | * Reads a Boolean or integer option value from the context. |
980 | | * Returns -1 on error (which is the default OSSL_CMP_OPT_REVOCATION_REASON) |
981 | | */ |
982 | | int OSSL_CMP_CTX_get_option(const OSSL_CMP_CTX *ctx, int opt) |
983 | 1.54k | { |
984 | 1.54k | if (ctx == NULL) { |
985 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); |
986 | 0 | return -1; |
987 | 0 | } |
988 | | |
989 | 1.54k | switch (opt) { |
990 | 0 | case OSSL_CMP_OPT_LOG_VERBOSITY: |
991 | 0 | return ctx->log_verbosity; |
992 | 232 | case OSSL_CMP_OPT_IMPLICIT_CONFIRM: |
993 | 232 | return ctx->implicitConfirm; |
994 | 0 | case OSSL_CMP_OPT_DISABLE_CONFIRM: |
995 | 0 | return ctx->disableConfirm; |
996 | 0 | case OSSL_CMP_OPT_UNPROTECTED_SEND: |
997 | 0 | return ctx->unprotectedSend; |
998 | 772 | case OSSL_CMP_OPT_UNPROTECTED_ERRORS: |
999 | 772 | return ctx->unprotectedErrors; |
1000 | 0 | case OSSL_CMP_OPT_NO_CACHE_EXTRACERTS: |
1001 | 0 | return ctx->noCacheExtraCerts; |
1002 | 0 | case OSSL_CMP_OPT_VALIDITY_DAYS: |
1003 | 0 | return ctx->days; |
1004 | 0 | case OSSL_CMP_OPT_SUBJECTALTNAME_NODEFAULT: |
1005 | 0 | return ctx->SubjectAltName_nodefault; |
1006 | 0 | case OSSL_CMP_OPT_SUBJECTALTNAME_CRITICAL: |
1007 | 0 | return ctx->setSubjectAltNameCritical; |
1008 | 0 | case OSSL_CMP_OPT_POLICIES_CRITICAL: |
1009 | 0 | return ctx->setPoliciesCritical; |
1010 | 0 | case OSSL_CMP_OPT_IGNORE_KEYUSAGE: |
1011 | 0 | return ctx->ignore_keyusage; |
1012 | 536 | case OSSL_CMP_OPT_POPO_METHOD: |
1013 | 536 | return ctx->popoMethod; |
1014 | 0 | case OSSL_CMP_OPT_DIGEST_ALGNID: |
1015 | 0 | return EVP_MD_get_type(ctx->digest); |
1016 | 0 | case OSSL_CMP_OPT_OWF_ALGNID: |
1017 | 0 | return EVP_MD_get_type(ctx->pbm_owf); |
1018 | 0 | case OSSL_CMP_OPT_MAC_ALGNID: |
1019 | 0 | return ctx->pbm_mac; |
1020 | 0 | case OSSL_CMP_OPT_KEEP_ALIVE: |
1021 | 0 | return ctx->keep_alive; |
1022 | 0 | case OSSL_CMP_OPT_MSG_TIMEOUT: |
1023 | 0 | return ctx->msg_timeout; |
1024 | 0 | case OSSL_CMP_OPT_TOTAL_TIMEOUT: |
1025 | 0 | return ctx->total_timeout; |
1026 | 0 | case OSSL_CMP_OPT_USE_TLS: |
1027 | 0 | return ctx->tls_used; |
1028 | 0 | case OSSL_CMP_OPT_PERMIT_TA_IN_EXTRACERTS_FOR_IR: |
1029 | 0 | return ctx->permitTAInExtraCertsForIR; |
1030 | 0 | case OSSL_CMP_OPT_REVOCATION_REASON: |
1031 | 0 | return ctx->revocationReason; |
1032 | 0 | default: |
1033 | | ERR_raise(ERR_LIB_CMP, CMP_R_INVALID_OPTION); |
1034 | 0 | return -1; |
1035 | 1.54k | } |
1036 | 1.54k | } |