/src/openssl32/crypto/cmp/cmp_vfy.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright 2007-2024 The OpenSSL Project Authors. All Rights Reserved. |
3 | | * Copyright Nokia 2007-2020 |
4 | | * Copyright Siemens AG 2015-2020 |
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 | | /* CMP functions for PKIMessage checking */ |
13 | | |
14 | | #include "cmp_local.h" |
15 | | #include <openssl/cmp_util.h> |
16 | | |
17 | | /* explicit #includes not strictly needed since implied by the above: */ |
18 | | #include <openssl/asn1t.h> |
19 | | #include <openssl/cmp.h> |
20 | | #include <openssl/crmf.h> |
21 | | #include <openssl/err.h> |
22 | | #include <openssl/x509.h> |
23 | | |
24 | | /* Verify a message protected by signature according to RFC section 5.1.3.3 */ |
25 | | static int verify_signature(const OSSL_CMP_CTX *cmp_ctx, |
26 | | const OSSL_CMP_MSG *msg, X509 *cert) |
27 | 1.55k | { |
28 | 1.55k | OSSL_CMP_PROTECTEDPART prot_part; |
29 | 1.55k | EVP_PKEY *pubkey = NULL; |
30 | 1.55k | BIO *bio; |
31 | 1.55k | int res = 0; |
32 | | |
33 | 1.55k | if (!ossl_assert(cmp_ctx != NULL && msg != NULL && cert != NULL)) |
34 | 0 | return 0; |
35 | | |
36 | 1.55k | bio = BIO_new(BIO_s_mem()); /* may be NULL */ |
37 | 1.55k | if (bio == NULL) |
38 | 0 | return 0; |
39 | | /* verify that keyUsage, if present, contains digitalSignature */ |
40 | 1.55k | if (!cmp_ctx->ignore_keyusage |
41 | 1.55k | && (X509_get_key_usage(cert) & X509v3_KU_DIGITAL_SIGNATURE) == 0) { |
42 | 182 | ERR_raise(ERR_LIB_CMP, CMP_R_MISSING_KEY_USAGE_DIGITALSIGNATURE); |
43 | 182 | goto sig_err; |
44 | 182 | } |
45 | | |
46 | 1.37k | pubkey = X509_get_pubkey(cert); |
47 | 1.37k | if (pubkey == NULL) { |
48 | 854 | ERR_raise(ERR_LIB_CMP, CMP_R_FAILED_EXTRACTING_PUBKEY); |
49 | 854 | goto sig_err; |
50 | 854 | } |
51 | | |
52 | 519 | prot_part.header = msg->header; |
53 | 519 | prot_part.body = msg->body; |
54 | | |
55 | 519 | if (ASN1_item_verify_ex(ASN1_ITEM_rptr(OSSL_CMP_PROTECTEDPART), |
56 | 519 | msg->header->protectionAlg, msg->protection, |
57 | 519 | &prot_part, NULL, pubkey, cmp_ctx->libctx, |
58 | 519 | cmp_ctx->propq) > 0) { |
59 | 28 | res = 1; |
60 | 28 | goto end; |
61 | 28 | } |
62 | | |
63 | 1.52k | sig_err: |
64 | 1.52k | res = ossl_x509_print_ex_brief(bio, cert, X509_FLAG_NO_EXTENSIONS); |
65 | 1.52k | ERR_raise(ERR_LIB_CMP, CMP_R_ERROR_VALIDATING_SIGNATURE); |
66 | 1.52k | if (res) |
67 | 1.52k | ERR_add_error_mem_bio("\n", bio); |
68 | 1.52k | res = 0; |
69 | | |
70 | 1.55k | end: |
71 | 1.55k | EVP_PKEY_free(pubkey); |
72 | 1.55k | BIO_free(bio); |
73 | | |
74 | 1.55k | return res; |
75 | 1.52k | } |
76 | | |
77 | | /* Verify a message protected with PBMAC */ |
78 | | static int verify_PBMAC(OSSL_CMP_CTX *ctx, const OSSL_CMP_MSG *msg) |
79 | 771 | { |
80 | 771 | ASN1_BIT_STRING *protection = NULL; |
81 | 771 | int valid = 0; |
82 | | |
83 | | /* generate expected protection for the message */ |
84 | 771 | if ((protection = ossl_cmp_calc_protection(ctx, msg)) == NULL) |
85 | 525 | return 0; /* failed to generate protection string! */ |
86 | | |
87 | 246 | valid = msg->protection != NULL && msg->protection->length >= 0 |
88 | 246 | && msg->protection->type == protection->type |
89 | 246 | && msg->protection->length == protection->length |
90 | 246 | && CRYPTO_memcmp(msg->protection->data, protection->data, |
91 | 127 | protection->length) == 0; |
92 | 246 | ASN1_BIT_STRING_free(protection); |
93 | 246 | if (!valid) |
94 | 246 | ERR_raise(ERR_LIB_CMP, CMP_R_WRONG_PBM_VALUE); |
95 | | |
96 | 246 | return valid; |
97 | 771 | } |
98 | | |
99 | | /*- |
100 | | * Attempt to validate certificate and path using any given store with trusted |
101 | | * certs (possibly including CRLs and a cert verification callback function) |
102 | | * and non-trusted intermediate certs from the given ctx. |
103 | | * |
104 | | * Returns 1 on successful validation and 0 otherwise. |
105 | | */ |
106 | | int OSSL_CMP_validate_cert_path(const OSSL_CMP_CTX *ctx, |
107 | | X509_STORE *trusted_store, X509 *cert) |
108 | 36 | { |
109 | 36 | int valid = 0; |
110 | 36 | X509_STORE_CTX *csc = NULL; |
111 | 36 | int err; |
112 | | |
113 | 36 | if (ctx == NULL || cert == NULL) { |
114 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); |
115 | 0 | return 0; |
116 | 0 | } |
117 | | |
118 | 36 | if (trusted_store == NULL) { |
119 | 36 | ERR_raise(ERR_LIB_CMP, CMP_R_MISSING_TRUST_STORE); |
120 | 36 | return 0; |
121 | 36 | } |
122 | | |
123 | 0 | if ((csc = X509_STORE_CTX_new_ex(ctx->libctx, ctx->propq)) == NULL |
124 | 0 | || !X509_STORE_CTX_init(csc, trusted_store, |
125 | 0 | cert, ctx->untrusted)) |
126 | 0 | goto err; |
127 | | |
128 | 0 | valid = X509_verify_cert(csc) > 0; |
129 | | |
130 | | /* make sure suitable error is queued even if callback did not do */ |
131 | 0 | err = ERR_peek_last_error(); |
132 | 0 | if (!valid && ERR_GET_REASON(err) != CMP_R_POTENTIALLY_INVALID_CERTIFICATE) |
133 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_POTENTIALLY_INVALID_CERTIFICATE); |
134 | |
|
135 | 0 | err: |
136 | | /* directly output any fresh errors, needed for check_msg_find_cert() */ |
137 | 0 | OSSL_CMP_CTX_print_errors(ctx); |
138 | 0 | X509_STORE_CTX_free(csc); |
139 | 0 | return valid; |
140 | 0 | } |
141 | | |
142 | | static int verify_cb_cert(X509_STORE *ts, X509 *cert, int err) |
143 | 1.08k | { |
144 | 1.08k | X509_STORE_CTX_verify_cb verify_cb; |
145 | 1.08k | X509_STORE_CTX *csc; |
146 | 1.08k | int ok = 0; |
147 | | |
148 | 1.08k | if (ts == NULL || (verify_cb = X509_STORE_get_verify_cb(ts)) == NULL) |
149 | 1.08k | return ok; |
150 | 0 | if ((csc = X509_STORE_CTX_new()) != NULL |
151 | 0 | && X509_STORE_CTX_init(csc, ts, cert, NULL)) { |
152 | 0 | X509_STORE_CTX_set_error(csc, err); |
153 | 0 | X509_STORE_CTX_set_current_cert(csc, cert); |
154 | 0 | ok = (*verify_cb)(0, csc); |
155 | 0 | } |
156 | 0 | X509_STORE_CTX_free(csc); |
157 | 0 | return ok; |
158 | 1.08k | } |
159 | | |
160 | | /* Return 0 if expect_name != NULL and there is no matching actual_name */ |
161 | | static int check_name(const OSSL_CMP_CTX *ctx, int log_success, |
162 | | const char *actual_desc, const X509_NAME *actual_name, |
163 | | const char *expect_desc, const X509_NAME *expect_name) |
164 | 20.3k | { |
165 | 20.3k | char *str; |
166 | | |
167 | 20.3k | if (expect_name == NULL) |
168 | 14.8k | return 1; /* no expectation, thus trivially fulfilled */ |
169 | | |
170 | | /* make sure that a matching name is there */ |
171 | 5.48k | if (actual_name == NULL) { |
172 | 0 | ossl_cmp_log1(WARN, ctx, "missing %s", actual_desc); |
173 | 0 | return 0; |
174 | 0 | } |
175 | 5.48k | str = X509_NAME_oneline(actual_name, NULL, 0); |
176 | 5.48k | if (X509_NAME_cmp(actual_name, expect_name) == 0) { |
177 | 2.49k | if (log_success && str != NULL) |
178 | 2.49k | ossl_cmp_log2(INFO, ctx, " subject matches %s: %s", expect_desc, |
179 | 2.49k | str); |
180 | 2.49k | OPENSSL_free(str); |
181 | 2.49k | return 1; |
182 | 2.49k | } |
183 | | |
184 | 2.99k | if (str != NULL) |
185 | 2.99k | ossl_cmp_log2(INFO, ctx, " actual name in %s = %s", actual_desc, str); |
186 | 2.99k | OPENSSL_free(str); |
187 | 2.99k | if ((str = X509_NAME_oneline(expect_name, NULL, 0)) != NULL) |
188 | 2.99k | ossl_cmp_log2(INFO, ctx, " does not match %s = %s", expect_desc, str); |
189 | 2.99k | OPENSSL_free(str); |
190 | 2.99k | return 0; |
191 | 5.48k | } |
192 | | |
193 | | /* Return 0 if skid != NULL and there is no matching subject key ID in cert */ |
194 | | static int check_kid(const OSSL_CMP_CTX *ctx, |
195 | | const ASN1_OCTET_STRING *ckid, |
196 | | const ASN1_OCTET_STRING *skid) |
197 | 2.49k | { |
198 | 2.49k | char *str; |
199 | | |
200 | 2.49k | if (skid == NULL) |
201 | 1.43k | return 1; /* no expectation, thus trivially fulfilled */ |
202 | | |
203 | | /* make sure that the expected subject key identifier is there */ |
204 | 1.06k | if (ckid == NULL) { |
205 | 84 | ossl_cmp_warn(ctx, "missing Subject Key Identifier in certificate"); |
206 | 84 | return 0; |
207 | 84 | } |
208 | 979 | str = i2s_ASN1_OCTET_STRING(NULL, ckid); |
209 | 979 | if (ASN1_OCTET_STRING_cmp(ckid, skid) == 0) { |
210 | 903 | if (str != NULL) |
211 | 903 | ossl_cmp_log1(INFO, ctx, " subjectKID matches senderKID: %s", str); |
212 | 903 | OPENSSL_free(str); |
213 | 903 | return 1; |
214 | 903 | } |
215 | | |
216 | 76 | if (str != NULL) |
217 | 76 | ossl_cmp_log1(INFO, ctx, " cert Subject Key Identifier = %s", str); |
218 | 76 | OPENSSL_free(str); |
219 | 76 | if ((str = i2s_ASN1_OCTET_STRING(NULL, skid)) != NULL) |
220 | 76 | ossl_cmp_log1(INFO, ctx, " does not match senderKID = %s", str); |
221 | 76 | OPENSSL_free(str); |
222 | 76 | return 0; |
223 | 979 | } |
224 | | |
225 | | static int already_checked(const X509 *cert, |
226 | | const STACK_OF(X509) *already_checked) |
227 | 22.0k | { |
228 | 22.0k | int i; |
229 | | |
230 | 33.7k | for (i = sk_X509_num(already_checked /* may be NULL */); i > 0; i--) |
231 | 19.0k | if (X509_cmp(sk_X509_value(already_checked, i - 1), cert) == 0) |
232 | 7.33k | return 1; |
233 | 14.6k | return 0; |
234 | 22.0k | } |
235 | | |
236 | | /*- |
237 | | * Check if the given cert is acceptable as sender cert of the given message. |
238 | | * The subject DN must match, the subject key ID as well if present in the msg, |
239 | | * and the cert must be current (checked if ctx->trusted is not NULL). |
240 | | * Note that cert revocation etc. is checked by OSSL_CMP_validate_cert_path(). |
241 | | * |
242 | | * Returns 0 on error or not acceptable, else 1. |
243 | | */ |
244 | | static int cert_acceptable(const OSSL_CMP_CTX *ctx, |
245 | | const char *desc1, const char *desc2, X509 *cert, |
246 | | const STACK_OF(X509) *already_checked1, |
247 | | const STACK_OF(X509) *already_checked2, |
248 | | const OSSL_CMP_MSG *msg) |
249 | 10.3k | { |
250 | 10.3k | X509_STORE *ts = ctx->trusted; |
251 | 10.3k | int self_issued = X509_check_issued(cert, cert) == X509_V_OK; |
252 | 10.3k | char *str; |
253 | 10.3k | X509_VERIFY_PARAM *vpm = ts != NULL ? X509_STORE_get0_param(ts) : NULL; |
254 | 10.3k | int time_cmp; |
255 | | |
256 | 10.3k | ossl_cmp_log3(INFO, ctx, " considering %s%s %s with..", |
257 | 10.3k | self_issued ? "self-issued ": "", desc1, desc2); |
258 | 10.3k | if ((str = X509_NAME_oneline(X509_get_subject_name(cert), NULL, 0)) != NULL) |
259 | 10.3k | ossl_cmp_log1(INFO, ctx, " subject = %s", str); |
260 | 10.3k | OPENSSL_free(str); |
261 | 10.3k | if (!self_issued) { |
262 | 9.49k | str = X509_NAME_oneline(X509_get_issuer_name(cert), NULL, 0); |
263 | 9.49k | if (str != NULL) |
264 | 9.49k | ossl_cmp_log1(INFO, ctx, " issuer = %s", str); |
265 | 9.49k | OPENSSL_free(str); |
266 | 9.49k | } |
267 | | |
268 | 10.3k | if (already_checked(cert, already_checked1) |
269 | 10.3k | || already_checked(cert, already_checked2)) { |
270 | 5.15k | ossl_cmp_info(ctx, " cert has already been checked"); |
271 | 5.15k | return 0; |
272 | 5.15k | } |
273 | | |
274 | 5.15k | time_cmp = X509_cmp_timeframe(vpm, X509_get0_notBefore(cert), |
275 | 5.15k | X509_get0_notAfter(cert)); |
276 | 5.15k | if (time_cmp != 0) { |
277 | 2.16k | int err = time_cmp > 0 ? X509_V_ERR_CERT_HAS_EXPIRED |
278 | 2.16k | : X509_V_ERR_CERT_NOT_YET_VALID; |
279 | | |
280 | 2.16k | ossl_cmp_warn(ctx, time_cmp > 0 ? "cert has expired" |
281 | 2.16k | : "cert is not yet valid"); |
282 | 2.16k | if (ctx->log_cb != NULL /* logging not temporarily disabled */ |
283 | 2.16k | && verify_cb_cert(ts, cert, err) <= 0) |
284 | 1.08k | return 0; |
285 | 2.16k | } |
286 | | |
287 | 4.06k | if (!check_name(ctx, 1, |
288 | 4.06k | "cert subject", X509_get_subject_name(cert), |
289 | 4.06k | "sender field", msg->header->sender->d.directoryName)) |
290 | 2.33k | return 0; |
291 | | |
292 | 1.73k | if (!check_kid(ctx, X509_get0_subject_key_id(cert), msg->header->senderKID)) |
293 | 92 | return 0; |
294 | | /* prevent misleading error later in case x509v3_cache_extensions() fails */ |
295 | 1.64k | if (!ossl_x509v3_cache_extensions(cert)) { |
296 | 91 | ossl_cmp_warn(ctx, "cert appears to be invalid"); |
297 | 91 | return 0; |
298 | 91 | } |
299 | 1.55k | if (!verify_signature(ctx, msg, cert)) { |
300 | 1.52k | ossl_cmp_warn(ctx, "msg signature verification failed"); |
301 | 1.52k | return 0; |
302 | 1.52k | } |
303 | | /* acceptable also if there is no senderKID in msg header */ |
304 | 28 | ossl_cmp_info(ctx, " cert seems acceptable"); |
305 | 28 | return 1; |
306 | 1.55k | } |
307 | | |
308 | | static int check_cert_path(const OSSL_CMP_CTX *ctx, X509_STORE *store, |
309 | | X509 *scrt) |
310 | 36 | { |
311 | 36 | if (OSSL_CMP_validate_cert_path(ctx, store, scrt)) |
312 | 0 | return 1; |
313 | | |
314 | 36 | ossl_cmp_warn(ctx, |
315 | 36 | "msg signature validates but cert path validation failed"); |
316 | 36 | return 0; |
317 | 36 | } |
318 | | |
319 | | /* |
320 | | * Exceptional handling for 3GPP TS 33.310 [3G/LTE Network Domain Security |
321 | | * (NDS); Authentication Framework (AF)], only to use for IP messages |
322 | | * and if the ctx option is explicitly set: use self-issued certificates |
323 | | * from extraCerts as trust anchor to validate sender cert - |
324 | | * provided it also can validate the newly enrolled certificate |
325 | | */ |
326 | | static int check_cert_path_3gpp(const OSSL_CMP_CTX *ctx, |
327 | | const OSSL_CMP_MSG *msg, X509 *scrt) |
328 | 0 | { |
329 | 0 | int valid = 0; |
330 | 0 | X509_STORE *store; |
331 | |
|
332 | 0 | if (!ctx->permitTAInExtraCertsForIR) |
333 | 0 | return 0; |
334 | | |
335 | 0 | if ((store = X509_STORE_new()) == NULL |
336 | 0 | || !ossl_cmp_X509_STORE_add1_certs(store, msg->extraCerts, |
337 | 0 | 1 /* self-issued only */)) |
338 | 0 | goto err; |
339 | | |
340 | | /* store does not include CRLs */ |
341 | 0 | valid = OSSL_CMP_validate_cert_path(ctx, store, scrt); |
342 | 0 | if (!valid) { |
343 | 0 | ossl_cmp_warn(ctx, |
344 | 0 | "also exceptional 3GPP mode cert path validation failed"); |
345 | 0 | } else { |
346 | | /* |
347 | | * verify that the newly enrolled certificate (which assumed rid == |
348 | | * OSSL_CMP_CERTREQID) can also be validated with the same trusted store |
349 | | */ |
350 | 0 | OSSL_CMP_CERTRESPONSE *crep = |
351 | 0 | ossl_cmp_certrepmessage_get0_certresponse(msg->body->value.ip, |
352 | 0 | OSSL_CMP_CERTREQID); |
353 | 0 | X509 *newcrt = ossl_cmp_certresponse_get1_cert(ctx, crep); |
354 | | |
355 | | /* |
356 | | * maybe better use get_cert_status() from cmp_client.c, which catches |
357 | | * errors |
358 | | */ |
359 | 0 | valid = OSSL_CMP_validate_cert_path(ctx, store, newcrt); |
360 | 0 | X509_free(newcrt); |
361 | 0 | } |
362 | |
|
363 | 0 | err: |
364 | 0 | X509_STORE_free(store); |
365 | 0 | return valid; |
366 | 0 | } |
367 | | |
368 | | static int check_msg_given_cert(const OSSL_CMP_CTX *ctx, X509 *cert, |
369 | | const OSSL_CMP_MSG *msg) |
370 | 0 | { |
371 | 0 | return cert_acceptable(ctx, "previously validated", "sender cert", |
372 | 0 | cert, NULL, NULL, msg) |
373 | 0 | && (check_cert_path(ctx, ctx->trusted, cert) |
374 | 0 | || check_cert_path_3gpp(ctx, msg, cert)); |
375 | 0 | } |
376 | | |
377 | | /*- |
378 | | * Try all certs in given list for verifying msg, normally or in 3GPP mode. |
379 | | * If already_checked1 == NULL then certs are assumed to be the msg->extraCerts. |
380 | | * On success cache the found cert using ossl_cmp_ctx_set1_validatedSrvCert(). |
381 | | */ |
382 | | static int check_msg_with_certs(OSSL_CMP_CTX *ctx, const STACK_OF(X509) *certs, |
383 | | const char *desc, |
384 | | const STACK_OF(X509) *already_checked1, |
385 | | const STACK_OF(X509) *already_checked2, |
386 | | const OSSL_CMP_MSG *msg, int mode_3gpp) |
387 | 5.13k | { |
388 | 5.13k | int in_extraCerts = already_checked1 == NULL; |
389 | 5.13k | int n_acceptable_certs = 0; |
390 | 5.13k | int i; |
391 | | |
392 | 5.13k | if (sk_X509_num(certs) <= 0) { |
393 | 296 | ossl_cmp_log1(WARN, ctx, "no %s", desc); |
394 | 296 | return 0; |
395 | 296 | } |
396 | | |
397 | 15.1k | for (i = 0; i < sk_X509_num(certs); i++) { /* certs may be NULL */ |
398 | 10.3k | X509 *cert = sk_X509_value(certs, i); |
399 | | |
400 | 10.3k | if (!ossl_assert(cert != NULL)) |
401 | 0 | return 0; |
402 | 10.3k | if (!cert_acceptable(ctx, "cert from", desc, cert, |
403 | 10.3k | already_checked1, already_checked2, msg)) |
404 | 10.2k | continue; |
405 | 28 | n_acceptable_certs++; |
406 | 28 | if (mode_3gpp ? check_cert_path_3gpp(ctx, msg, cert) |
407 | 28 | : check_cert_path(ctx, ctx->trusted, cert)) { |
408 | | /* store successful sender cert for further msgs in transaction */ |
409 | 0 | return ossl_cmp_ctx_set1_validatedSrvCert(ctx, cert); |
410 | 0 | } |
411 | 28 | } |
412 | 4.83k | if (in_extraCerts && n_acceptable_certs == 0) |
413 | 4.83k | ossl_cmp_warn(ctx, "no acceptable cert in extraCerts"); |
414 | 4.83k | return 0; |
415 | 4.83k | } |
416 | | |
417 | | /*- |
418 | | * Verify msg trying first ctx->untrusted, which should include extraCerts |
419 | | * at its front, then trying the trusted certs in truststore (if any) of ctx. |
420 | | * On success cache the found cert using ossl_cmp_ctx_set1_validatedSrvCert(). |
421 | | */ |
422 | | static int check_msg_all_certs(OSSL_CMP_CTX *ctx, const OSSL_CMP_MSG *msg, |
423 | | int mode_3gpp) |
424 | 4.71k | { |
425 | 4.71k | int ret = 0; |
426 | | |
427 | 4.71k | if (mode_3gpp |
428 | 4.71k | && ((!ctx->permitTAInExtraCertsForIR |
429 | 2.35k | || OSSL_CMP_MSG_get_bodytype(msg) != OSSL_CMP_PKIBODY_IP))) |
430 | 2.35k | return 0; |
431 | | |
432 | 2.35k | ossl_cmp_info(ctx, |
433 | 2.35k | mode_3gpp ? "normal mode failed; trying now 3GPP mode trusting extraCerts" |
434 | 2.35k | : "trying first normal mode using trust store"); |
435 | 2.35k | if (check_msg_with_certs(ctx, msg->extraCerts, "extraCerts", |
436 | 2.35k | NULL, NULL, msg, mode_3gpp)) |
437 | 0 | return 1; |
438 | 2.35k | if (check_msg_with_certs(ctx, ctx->untrusted, "untrusted certs", |
439 | 2.35k | msg->extraCerts, NULL, msg, mode_3gpp)) |
440 | 0 | return 1; |
441 | | |
442 | 2.35k | if (ctx->trusted == NULL) { |
443 | 2.35k | ossl_cmp_warn(ctx, mode_3gpp ? "no self-issued extraCerts" |
444 | 2.35k | : "no trusted store"); |
445 | 2.35k | } else { |
446 | 0 | STACK_OF(X509) *trusted = X509_STORE_get1_all_certs(ctx->trusted); |
447 | |
|
448 | 0 | ret = check_msg_with_certs(ctx, trusted, |
449 | 0 | mode_3gpp ? "self-issued extraCerts" |
450 | 0 | : "certs in trusted store", |
451 | 0 | msg->extraCerts, ctx->untrusted, |
452 | 0 | msg, mode_3gpp); |
453 | 0 | OSSL_STACK_OF_X509_free(trusted); |
454 | 0 | } |
455 | 2.35k | return ret; |
456 | 2.35k | } |
457 | | |
458 | | /*- |
459 | | * Verify message signature with any acceptable and valid candidate cert. |
460 | | * On success cache the found cert using ossl_cmp_ctx_set1_validatedSrvCert(). |
461 | | */ |
462 | | static int check_msg_find_cert(OSSL_CMP_CTX *ctx, const OSSL_CMP_MSG *msg) |
463 | 1.81k | { |
464 | 1.81k | X509 *scrt = ctx->validatedSrvCert; /* previous successful sender cert */ |
465 | 1.81k | GENERAL_NAME *sender = msg->header->sender; |
466 | 1.81k | char *sname = NULL; |
467 | 1.81k | char *skid_str = NULL; |
468 | 1.81k | const ASN1_OCTET_STRING *skid = msg->header->senderKID; |
469 | 1.81k | OSSL_CMP_log_cb_t backup_log_cb = ctx->log_cb; |
470 | 1.81k | int res = 0; |
471 | | |
472 | 1.81k | if (sender == NULL || msg->body == NULL) |
473 | 0 | return 0; /* other NULL cases already have been checked */ |
474 | 1.81k | if (sender->type != GEN_DIRNAME) { |
475 | | /* So far, only X509_NAME is supported */ |
476 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_SENDER_GENERALNAME_TYPE_NOT_SUPPORTED); |
477 | 0 | return 0; |
478 | 0 | } |
479 | | |
480 | | /* dump any hitherto errors to avoid confusion when printing further ones */ |
481 | 1.81k | OSSL_CMP_CTX_print_errors(ctx); |
482 | | |
483 | | /* enable clearing irrelevant errors in attempts to validate sender certs */ |
484 | 1.81k | (void)ERR_set_mark(); |
485 | 1.81k | ctx->log_cb = NULL; /* temporarily disable logging */ |
486 | | |
487 | | /* |
488 | | * try first cached scrt, used successfully earlier in same transaction, |
489 | | * for validating this and any further msgs where extraCerts may be left out |
490 | | */ |
491 | 1.81k | if (scrt != NULL) { |
492 | 0 | if (check_msg_given_cert(ctx, scrt, msg)) { |
493 | 0 | ctx->log_cb = backup_log_cb; |
494 | 0 | (void)ERR_pop_to_mark(); |
495 | 0 | return 1; |
496 | 0 | } |
497 | | /* cached sender cert has shown to be no more successfully usable */ |
498 | 0 | (void)ossl_cmp_ctx_set1_validatedSrvCert(ctx, NULL); |
499 | | /* re-do the above check (just) for adding diagnostic information */ |
500 | 0 | ossl_cmp_info(ctx, |
501 | 0 | "trying to verify msg signature with previously validated cert"); |
502 | 0 | (void)check_msg_given_cert(ctx, scrt, msg); |
503 | 0 | } |
504 | | |
505 | 1.81k | res = check_msg_all_certs(ctx, msg, 0 /* using ctx->trusted */) |
506 | 1.81k | || check_msg_all_certs(ctx, msg, 1 /* 3gpp */); |
507 | 1.81k | ctx->log_cb = backup_log_cb; |
508 | 1.81k | if (res) { |
509 | | /* discard any diagnostic information on trying to use certs */ |
510 | 0 | (void)ERR_pop_to_mark(); |
511 | 0 | goto end; |
512 | 0 | } |
513 | | /* failed finding a sender cert that verifies the message signature */ |
514 | 1.81k | (void)ERR_clear_last_mark(); |
515 | | |
516 | 1.81k | sname = X509_NAME_oneline(sender->d.directoryName, NULL, 0); |
517 | 1.81k | skid_str = skid == NULL ? NULL : i2s_ASN1_OCTET_STRING(NULL, skid); |
518 | 1.81k | if (ctx->log_cb != NULL) { |
519 | 1.81k | ossl_cmp_info(ctx, "trying to verify msg signature with a valid cert that.."); |
520 | 1.81k | if (sname != NULL) |
521 | 1.81k | ossl_cmp_log1(INFO, ctx, "matches msg sender = %s", sname); |
522 | 1.81k | if (skid_str != NULL) |
523 | 848 | ossl_cmp_log1(INFO, ctx, "matches msg senderKID = %s", skid_str); |
524 | 967 | else |
525 | 1.81k | ossl_cmp_info(ctx, "while msg header does not contain senderKID"); |
526 | | /* re-do the above checks (just) for adding diagnostic information */ |
527 | 1.81k | (void)check_msg_all_certs(ctx, msg, 0 /* using ctx->trusted */); |
528 | 1.81k | (void)check_msg_all_certs(ctx, msg, 1 /* 3gpp */); |
529 | 1.81k | } |
530 | | |
531 | 1.81k | ERR_raise(ERR_LIB_CMP, CMP_R_NO_SUITABLE_SENDER_CERT); |
532 | 1.81k | if (sname != NULL) { |
533 | 1.81k | ERR_add_error_txt(NULL, "for msg sender name = "); |
534 | 1.81k | ERR_add_error_txt(NULL, sname); |
535 | 1.81k | } |
536 | 1.81k | if (skid_str != NULL) { |
537 | 848 | ERR_add_error_txt(" and ", "for msg senderKID = "); |
538 | 848 | ERR_add_error_txt(NULL, skid_str); |
539 | 848 | } |
540 | | |
541 | 1.81k | end: |
542 | 1.81k | OPENSSL_free(sname); |
543 | 1.81k | OPENSSL_free(skid_str); |
544 | 1.81k | return res; |
545 | 1.81k | } |
546 | | |
547 | | /*- |
548 | | * Validate the protection of the given PKIMessage using either password- |
549 | | * based mac (PBM) or a signature algorithm. In the case of signature algorithm, |
550 | | * the sender certificate can have been pinned by providing it in ctx->srvCert, |
551 | | * else it is searched in msg->extraCerts, ctx->untrusted, in ctx->trusted |
552 | | * (in this order) and is path is validated against ctx->trusted. |
553 | | * On success cache the found cert using ossl_cmp_ctx_set1_validatedSrvCert(). |
554 | | * |
555 | | * If ctx->permitTAInExtraCertsForIR is true and when validating a CMP IP msg, |
556 | | * the trust anchor for validating the IP msg may be taken from msg->extraCerts |
557 | | * if a self-issued certificate is found there that can be used to |
558 | | * validate the enrolled certificate returned in the IP. |
559 | | * This is according to the need given in 3GPP TS 33.310. |
560 | | * |
561 | | * Returns 1 on success, 0 on error or validation failed. |
562 | | */ |
563 | | int OSSL_CMP_validate_msg(OSSL_CMP_CTX *ctx, const OSSL_CMP_MSG *msg) |
564 | 4.24k | { |
565 | 4.24k | X509 *scrt; |
566 | | |
567 | 4.24k | ossl_cmp_debug(ctx, "validating CMP message"); |
568 | 4.24k | if (ctx == NULL || msg == NULL |
569 | 4.24k | || msg->header == NULL || msg->body == NULL) { |
570 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); |
571 | 0 | return 0; |
572 | 0 | } |
573 | | |
574 | 4.24k | if (msg->header->protectionAlg == NULL /* unprotected message */ |
575 | 4.24k | || msg->protection == NULL || msg->protection->data == NULL) { |
576 | 340 | ERR_raise(ERR_LIB_CMP, CMP_R_MISSING_PROTECTION); |
577 | 340 | return 0; |
578 | 340 | } |
579 | | |
580 | 3.90k | switch (ossl_cmp_hdr_get_protection_nid(msg->header)) { |
581 | | /* 5.1.3.1. Shared Secret Information */ |
582 | 1.12k | case NID_id_PasswordBasedMAC: |
583 | 1.12k | if (ctx->secretValue == NULL) { |
584 | 534 | ossl_cmp_info(ctx, "no secret available for verifying PBM-based CMP message protection"); |
585 | 534 | ERR_raise(ERR_LIB_CMP, CMP_R_MISSING_SECRET); |
586 | 534 | return 0; |
587 | 534 | } |
588 | 591 | if (verify_PBMAC(ctx, msg)) { |
589 | | /* |
590 | | * RFC 4210, 5.3.2: 'Note that if the PKI Message Protection is |
591 | | * "shared secret information", then any certificate transported in |
592 | | * the caPubs field may be directly trusted as a root CA |
593 | | * certificate by the initiator.' |
594 | | */ |
595 | 4 | switch (OSSL_CMP_MSG_get_bodytype(msg)) { |
596 | 0 | case -1: |
597 | 0 | return 0; |
598 | 0 | case OSSL_CMP_PKIBODY_IP: |
599 | 0 | case OSSL_CMP_PKIBODY_CP: |
600 | 0 | case OSSL_CMP_PKIBODY_KUP: |
601 | 2 | case OSSL_CMP_PKIBODY_CCP: |
602 | 2 | if (ctx->trusted != NULL) { |
603 | 0 | STACK_OF(X509) *certs = msg->body->value.ip->caPubs; |
604 | | /* value.ip is same for cp, kup, and ccp */ |
605 | |
|
606 | 0 | if (!ossl_cmp_X509_STORE_add1_certs(ctx->trusted, certs, 0)) |
607 | | /* adds both self-issued and not self-issued certs */ |
608 | 0 | return 0; |
609 | 0 | } |
610 | 2 | break; |
611 | 2 | default: |
612 | 2 | break; |
613 | 4 | } |
614 | 4 | ossl_cmp_debug(ctx, |
615 | 4 | "successfully validated PBM-based CMP message protection"); |
616 | 4 | return 1; |
617 | 4 | } |
618 | 587 | ossl_cmp_warn(ctx, "verifying PBM-based CMP message protection failed"); |
619 | 587 | break; |
620 | | |
621 | | /* |
622 | | * 5.1.3.2 DH Key Pairs |
623 | | * Not yet supported |
624 | | */ |
625 | 18 | case NID_id_DHBasedMac: |
626 | 18 | ERR_raise(ERR_LIB_CMP, CMP_R_UNSUPPORTED_PROTECTION_ALG_DHBASEDMAC); |
627 | 18 | break; |
628 | | |
629 | | /* |
630 | | * 5.1.3.3. Signature |
631 | | */ |
632 | 2.75k | default: |
633 | 2.75k | scrt = ctx->srvCert; |
634 | 2.75k | if (scrt == NULL) { |
635 | 2.75k | if (ctx->trusted == NULL && ctx->secretValue != NULL) { |
636 | 944 | ossl_cmp_info(ctx, "no trust store nor pinned server cert available for verifying signature-based CMP message protection"); |
637 | 944 | ERR_raise(ERR_LIB_CMP, CMP_R_MISSING_TRUST_ANCHOR); |
638 | 944 | return 0; |
639 | 944 | } |
640 | 1.81k | if (check_msg_find_cert(ctx, msg)) { |
641 | 0 | ossl_cmp_debug(ctx, |
642 | 0 | "successfully validated signature-based CMP message protection using trust store"); |
643 | 0 | return 1; |
644 | 0 | } |
645 | 1.81k | } else { /* use pinned sender cert */ |
646 | | /* use ctx->srvCert for signature check even if not acceptable */ |
647 | 0 | if (verify_signature(ctx, msg, scrt)) { |
648 | 0 | ossl_cmp_debug(ctx, |
649 | 0 | "successfully validated signature-based CMP message protection using pinned server cert"); |
650 | 0 | return ossl_cmp_ctx_set1_validatedSrvCert(ctx, scrt); |
651 | 0 | } |
652 | 0 | ossl_cmp_warn(ctx, "CMP message signature verification failed"); |
653 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_SRVCERT_DOES_NOT_VALIDATE_MSG); |
654 | 0 | } |
655 | 1.81k | break; |
656 | 3.90k | } |
657 | 2.42k | return 0; |
658 | 3.90k | } |
659 | | |
660 | | static int check_transactionID_or_nonce(ASN1_OCTET_STRING *expected, |
661 | | ASN1_OCTET_STRING *actual, int reason) |
662 | 27.7k | { |
663 | 27.7k | if (expected != NULL |
664 | 27.7k | && (actual == NULL || ASN1_OCTET_STRING_cmp(expected, actual) != 0)) { |
665 | | #ifndef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION |
666 | | char *expected_str, *actual_str; |
667 | | |
668 | | expected_str = i2s_ASN1_OCTET_STRING(NULL, expected); |
669 | | actual_str = actual == NULL ? NULL: i2s_ASN1_OCTET_STRING(NULL, actual); |
670 | | ERR_raise_data(ERR_LIB_CMP, reason, |
671 | | "expected = %s, actual = %s", |
672 | | expected_str == NULL ? "?" : expected_str, |
673 | | actual == NULL ? "(none)" : |
674 | | actual_str == NULL ? "?" : actual_str); |
675 | | OPENSSL_free(expected_str); |
676 | | OPENSSL_free(actual_str); |
677 | | return 0; |
678 | | #endif |
679 | 0 | } |
680 | 27.7k | return 1; |
681 | 27.7k | } |
682 | | |
683 | | /*- |
684 | | * Check received message (i.e., response by server or request from client) |
685 | | * Any msg->extraCerts are prepended to ctx->untrusted. |
686 | | * |
687 | | * Ensures that: |
688 | | * its sender is of appropriate type (currently only X509_NAME) and |
689 | | * matches any expected sender or srvCert subject given in the ctx |
690 | | * it has a valid body type |
691 | | * its protection is valid (or invalid/absent, but only if a callback function |
692 | | * is present and yields a positive result using also the supplied argument) |
693 | | * its transaction ID matches the previous transaction ID stored in ctx (if any) |
694 | | * its recipNonce matches the previous senderNonce stored in the ctx (if any) |
695 | | * |
696 | | * If everything is fine: |
697 | | * learns the senderNonce from the received message, |
698 | | * learns the transaction ID if it is not yet in ctx, |
699 | | * and makes any certs in caPubs directly trusted. |
700 | | * |
701 | | * Returns 1 on success, 0 on error. |
702 | | */ |
703 | | int ossl_cmp_msg_check_update(OSSL_CMP_CTX *ctx, const OSSL_CMP_MSG *msg, |
704 | | ossl_cmp_allow_unprotected_cb_t cb, int cb_arg) |
705 | 9.80k | { |
706 | 9.80k | OSSL_CMP_PKIHEADER *hdr; |
707 | 9.80k | const X509_NAME *expected_sender; |
708 | | |
709 | 9.80k | if (!ossl_assert(ctx != NULL && msg != NULL && msg->header != NULL)) |
710 | 0 | return 0; |
711 | 9.80k | hdr = OSSL_CMP_MSG_get0_header(msg); |
712 | | |
713 | | /* validate sender name of received msg */ |
714 | 9.80k | if (hdr->sender->type != GEN_DIRNAME) { |
715 | 4.50k | ERR_raise(ERR_LIB_CMP, CMP_R_SENDER_GENERALNAME_TYPE_NOT_SUPPORTED); |
716 | 4.50k | return 0; |
717 | 4.50k | } |
718 | | /* |
719 | | * Compare actual sender name of response with expected sender name. |
720 | | * Mitigates risk to accept misused PBM secret |
721 | | * or misused certificate of an unauthorized entity of a trusted hierarchy. |
722 | | */ |
723 | 5.29k | expected_sender = ctx->expected_sender; |
724 | 5.29k | if (expected_sender == NULL && ctx->srvCert != NULL) |
725 | 0 | expected_sender = X509_get_subject_name(ctx->srvCert); |
726 | 5.29k | if (!check_name(ctx, 0, "sender DN field", hdr->sender->d.directoryName, |
727 | 5.29k | "expected sender", expected_sender)) |
728 | 0 | return 0; |
729 | | /* Note: if recipient was NULL-DN it could be learned here if needed */ |
730 | | |
731 | 5.29k | if (sk_X509_num(msg->extraCerts) > 10) |
732 | 5.29k | ossl_cmp_warn(ctx, |
733 | 5.29k | "received CMP message contains more than 10 extraCerts"); |
734 | | /* |
735 | | * Store any provided extraCerts in ctx for use in OSSL_CMP_validate_msg() |
736 | | * and for future use, such that they are available to ctx->certConf_cb and |
737 | | * the peer does not need to send them again in the same transaction. |
738 | | * Note that it does not help validating the message before storing the |
739 | | * extraCerts because they do not belong to the protected msg part anyway. |
740 | | * For efficiency, the extraCerts are prepended so they get used first. |
741 | | */ |
742 | 5.29k | if (!X509_add_certs(ctx->untrusted, msg->extraCerts, |
743 | | /* this allows self-signed certs */ |
744 | 5.29k | X509_ADD_FLAG_UP_REF | X509_ADD_FLAG_NO_DUP |
745 | 5.29k | | X509_ADD_FLAG_PREPEND)) |
746 | 0 | return 0; |
747 | | |
748 | | /* validate message protection */ |
749 | 5.29k | if (hdr->protectionAlg != NULL) { |
750 | | /* detect explicitly permitted exceptions for invalid protection */ |
751 | 1.59k | if (!OSSL_CMP_validate_msg(ctx, msg) |
752 | 1.59k | && (cb == NULL || (*cb)(ctx, msg, 1, cb_arg) <= 0)) { |
753 | | #ifndef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION |
754 | | ERR_raise(ERR_LIB_CMP, CMP_R_ERROR_VALIDATING_PROTECTION); |
755 | | return 0; |
756 | | #endif |
757 | 954 | } |
758 | 3.70k | } else { |
759 | | /* detect explicitly permitted exceptions for missing protection */ |
760 | 3.70k | if (cb == NULL || (*cb)(ctx, msg, 0, cb_arg) <= 0) { |
761 | | #ifndef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION |
762 | | ERR_raise(ERR_LIB_CMP, CMP_R_MISSING_PROTECTION); |
763 | | return 0; |
764 | | #endif |
765 | 1.90k | } |
766 | 3.70k | } |
767 | | |
768 | | /* check CMP version number in header */ |
769 | 5.29k | if (ossl_cmp_hdr_get_pvno(hdr) != OSSL_CMP_PVNO_2 |
770 | 5.29k | && ossl_cmp_hdr_get_pvno(hdr) != OSSL_CMP_PVNO_3) { |
771 | | #ifndef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION |
772 | | ERR_raise(ERR_LIB_CMP, CMP_R_UNEXPECTED_PVNO); |
773 | | return 0; |
774 | | #endif |
775 | 3.89k | } |
776 | | |
777 | 5.29k | if (OSSL_CMP_MSG_get_bodytype(msg) < 0) { |
778 | | #ifndef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION |
779 | | ERR_raise(ERR_LIB_CMP, CMP_R_PKIBODY_ERROR); |
780 | | return 0; |
781 | | #endif |
782 | 0 | } |
783 | | |
784 | | /* compare received transactionID with the expected one in previous msg */ |
785 | 5.29k | if (!check_transactionID_or_nonce(ctx->transactionID, hdr->transactionID, |
786 | 5.29k | CMP_R_TRANSACTIONID_UNMATCHED)) |
787 | 0 | return 0; |
788 | | |
789 | | /* compare received nonce with the one we sent */ |
790 | 5.29k | if (!check_transactionID_or_nonce(ctx->senderNonce, hdr->recipNonce, |
791 | 5.29k | CMP_R_RECIPNONCE_UNMATCHED)) |
792 | 0 | return 0; |
793 | | |
794 | | /* if not yet present, learn transactionID */ |
795 | 5.29k | if (ctx->transactionID == NULL |
796 | 5.29k | && !OSSL_CMP_CTX_set1_transactionID(ctx, hdr->transactionID)) |
797 | 0 | return 0; |
798 | | |
799 | | /* |
800 | | * RFC 4210 section 5.1.1 states: the recipNonce is copied from |
801 | | * the senderNonce of the previous message in the transaction. |
802 | | * --> Store for setting in next message |
803 | | */ |
804 | 5.29k | if (!ossl_cmp_ctx_set1_recipNonce(ctx, hdr->senderNonce)) |
805 | 0 | return 0; |
806 | | |
807 | | /* |
808 | | * Store any provided extraCerts in ctx for future use, |
809 | | * such that they are available to ctx->certConf_cb and |
810 | | * the peer does not need to send them again in the same transaction. |
811 | | * For efficiency, the extraCerts are prepended so they get used first. |
812 | | */ |
813 | 5.29k | if (!X509_add_certs(ctx->untrusted, msg->extraCerts, |
814 | | /* this allows self-signed certs */ |
815 | 5.29k | X509_ADD_FLAG_UP_REF | X509_ADD_FLAG_NO_DUP |
816 | 5.29k | | X509_ADD_FLAG_PREPEND)) |
817 | 0 | return 0; |
818 | | |
819 | 5.29k | if (ossl_cmp_hdr_get_protection_nid(hdr) == NID_id_PasswordBasedMAC) { |
820 | | /* |
821 | | * RFC 4210, 5.3.2: 'Note that if the PKI Message Protection is |
822 | | * "shared secret information", then any certificate transported in |
823 | | * the caPubs field may be directly trusted as a root CA |
824 | | * certificate by the initiator.' |
825 | | */ |
826 | 464 | switch (OSSL_CMP_MSG_get_bodytype(msg)) { |
827 | 5 | case OSSL_CMP_PKIBODY_IP: |
828 | 8 | case OSSL_CMP_PKIBODY_CP: |
829 | 9 | case OSSL_CMP_PKIBODY_KUP: |
830 | 13 | case OSSL_CMP_PKIBODY_CCP: |
831 | 13 | if (ctx->trusted != NULL) { |
832 | 0 | STACK_OF(X509) *certs = msg->body->value.ip->caPubs; |
833 | | /* value.ip is same for cp, kup, and ccp */ |
834 | |
|
835 | 0 | if (!ossl_cmp_X509_STORE_add1_certs(ctx->trusted, certs, 0)) |
836 | | /* adds both self-issued and not self-issued certs */ |
837 | 0 | return 0; |
838 | 0 | } |
839 | 13 | break; |
840 | 451 | default: |
841 | 451 | break; |
842 | 464 | } |
843 | 464 | } |
844 | 5.29k | return 1; |
845 | 5.29k | } |
846 | | |
847 | | int ossl_cmp_verify_popo(const OSSL_CMP_CTX *ctx, |
848 | | const OSSL_CMP_MSG *msg, int acceptRAVerified) |
849 | 3.48k | { |
850 | 3.48k | if (!ossl_assert(msg != NULL && msg->body != NULL)) |
851 | 0 | return 0; |
852 | 3.48k | switch (msg->body->type) { |
853 | 2.56k | case OSSL_CMP_PKIBODY_P10CR: |
854 | 2.56k | { |
855 | 2.56k | X509_REQ *req = msg->body->value.p10cr; |
856 | | |
857 | 2.56k | if (X509_REQ_verify_ex(req, X509_REQ_get0_pubkey(req), ctx->libctx, |
858 | 2.56k | ctx->propq) <= 0) { |
859 | | #ifndef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION |
860 | | ERR_raise(ERR_LIB_CMP, CMP_R_REQUEST_NOT_ACCEPTED); |
861 | | return 0; |
862 | | #endif |
863 | 2.55k | } |
864 | 2.56k | } |
865 | 2.56k | break; |
866 | 419 | case OSSL_CMP_PKIBODY_IR: |
867 | 758 | case OSSL_CMP_PKIBODY_CR: |
868 | 924 | case OSSL_CMP_PKIBODY_KUR: |
869 | 924 | if (!OSSL_CRMF_MSGS_verify_popo(msg->body->value.ir, OSSL_CMP_CERTREQID, |
870 | 924 | acceptRAVerified, |
871 | 924 | ctx->libctx, ctx->propq)) { |
872 | | #ifndef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION |
873 | | return 0; |
874 | | #endif |
875 | 872 | } |
876 | 924 | break; |
877 | 0 | default: |
878 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_PKIBODY_ERROR); |
879 | 0 | return 0; |
880 | 3.48k | } |
881 | 3.48k | return 1; |
882 | 3.48k | } |