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