/src/openssl/crypto/x509/t_x509.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright 1995-2025 The OpenSSL Project Authors. All Rights Reserved. |
3 | | * |
4 | | * Licensed under the Apache License 2.0 (the "License"). You may not use |
5 | | * this file except in compliance with the License. You can obtain a copy |
6 | | * in the file LICENSE in the source distribution or at |
7 | | * https://www.openssl.org/source/license.html |
8 | | */ |
9 | | |
10 | | #include <stdio.h> |
11 | | #include "internal/cryptlib.h" |
12 | | #include <openssl/buffer.h> |
13 | | #include <openssl/bn.h> |
14 | | #include <openssl/objects.h> |
15 | | #include <openssl/x509.h> |
16 | | #include <openssl/x509v3.h> |
17 | | #include "crypto/asn1.h" |
18 | | #include "crypto/x509.h" |
19 | | |
20 | | void OSSL_STACK_OF_X509_free(STACK_OF(X509) *certs) |
21 | 1.63M | { |
22 | 1.63M | sk_X509_pop_free(certs, X509_free); |
23 | 1.63M | } |
24 | | |
25 | | #ifndef OPENSSL_NO_STDIO |
26 | | int X509_print_fp(FILE *fp, X509 *x) |
27 | 0 | { |
28 | 0 | return X509_print_ex_fp(fp, x, XN_FLAG_COMPAT, X509_FLAG_COMPAT); |
29 | 0 | } |
30 | | |
31 | | int X509_print_ex_fp(FILE *fp, X509 *x, unsigned long nmflag, |
32 | | unsigned long cflag) |
33 | 0 | { |
34 | 0 | BIO *b; |
35 | 0 | int ret; |
36 | |
|
37 | 0 | if ((b = BIO_new(BIO_s_file())) == NULL) { |
38 | 0 | ERR_raise(ERR_LIB_X509, ERR_R_BUF_LIB); |
39 | 0 | return 0; |
40 | 0 | } |
41 | 0 | BIO_set_fp(b, fp, BIO_NOCLOSE); |
42 | 0 | ret = X509_print_ex(b, x, nmflag, cflag); |
43 | 0 | BIO_free(b); |
44 | 0 | return ret; |
45 | 0 | } |
46 | | #endif |
47 | | |
48 | | int X509_print(BIO *bp, X509 *x) |
49 | 29.3k | { |
50 | 29.3k | return X509_print_ex(bp, x, XN_FLAG_COMPAT, X509_FLAG_COMPAT); |
51 | 29.3k | } |
52 | | |
53 | | int X509_print_ex(BIO *bp, X509 *x, unsigned long nmflags, |
54 | | unsigned long cflag) |
55 | 10.3k | { |
56 | 10.3k | long l; |
57 | 10.3k | int ret = 0; |
58 | 10.3k | char mlch = ' '; |
59 | 10.3k | int nmindent = 0, printok = 0; |
60 | 10.3k | EVP_PKEY *pkey = NULL; |
61 | | |
62 | 10.3k | if ((nmflags & XN_FLAG_SEP_MASK) == XN_FLAG_SEP_MULTILINE) { |
63 | 0 | mlch = '\n'; |
64 | 0 | nmindent = 12; |
65 | 0 | } |
66 | | |
67 | 10.3k | if (nmflags == XN_FLAG_COMPAT) |
68 | 7.45k | printok = 1; |
69 | | |
70 | 10.3k | if (!(cflag & X509_FLAG_NO_HEADER)) { |
71 | 7.45k | if (BIO_write(bp, "Certificate:\n", 13) <= 0) |
72 | 0 | goto err; |
73 | 7.45k | if (BIO_write(bp, " Data:\n", 10) <= 0) |
74 | 0 | goto err; |
75 | 7.45k | } |
76 | 10.3k | if (!(cflag & X509_FLAG_NO_VERSION)) { |
77 | 7.45k | l = X509_get_version(x); |
78 | 7.45k | if (l >= X509_VERSION_1 && l <= X509_VERSION_3) { |
79 | 6.94k | if (BIO_printf(bp, "%8sVersion: %ld (0x%lx)\n", "", l + 1, (unsigned long)l) <= 0) |
80 | 0 | goto err; |
81 | 6.94k | } else { |
82 | 514 | if (BIO_printf(bp, "%8sVersion: Unknown (%ld)\n", "", l) <= 0) |
83 | 0 | goto err; |
84 | 514 | } |
85 | 7.45k | } |
86 | 10.3k | if (!(cflag & X509_FLAG_NO_SERIAL)) { |
87 | 8.19k | const ASN1_INTEGER *bs = X509_get0_serialNumber(x); |
88 | | |
89 | 8.19k | if (BIO_write(bp, " Serial Number:", 22) <= 0) |
90 | 0 | goto err; |
91 | 8.19k | if (ossl_serial_number_print(bp, bs, 12) != 0) |
92 | 0 | goto err; |
93 | 8.19k | if (BIO_puts(bp, "\n") <= 0) |
94 | 0 | goto err; |
95 | 8.19k | } |
96 | | |
97 | 10.3k | if (!(cflag & X509_FLAG_NO_SIGNAME)) { |
98 | 7.45k | const X509_ALGOR *tsig_alg = X509_get0_tbs_sigalg(x); |
99 | | |
100 | 7.45k | if (BIO_puts(bp, " ") <= 0) |
101 | 0 | goto err; |
102 | 7.45k | if (X509_signature_print(bp, tsig_alg, NULL) <= 0) |
103 | 0 | goto err; |
104 | 7.45k | } |
105 | | |
106 | 10.3k | if (!(cflag & X509_FLAG_NO_ISSUER)) { |
107 | 8.16k | if (BIO_printf(bp, " Issuer:%c", mlch) <= 0) |
108 | 0 | goto err; |
109 | 8.16k | if (X509_NAME_print_ex(bp, X509_get_issuer_name(x), nmindent, nmflags) |
110 | 8.16k | < printok) |
111 | 6 | goto err; |
112 | 8.15k | if (BIO_write(bp, "\n", 1) <= 0) |
113 | 0 | goto err; |
114 | 8.15k | } |
115 | 10.3k | if (!(cflag & X509_FLAG_NO_VALIDITY)) { |
116 | 8.19k | if (BIO_write(bp, " Validity\n", 17) <= 0) |
117 | 0 | goto err; |
118 | 8.19k | if (BIO_write(bp, " Not Before: ", 24) <= 0) |
119 | 0 | goto err; |
120 | 8.19k | if (ossl_asn1_time_print_ex(bp, X509_get0_notBefore(x), ASN1_DTFLGS_RFC822) == 0) |
121 | 0 | goto err; |
122 | 8.19k | if (BIO_write(bp, "\n Not After : ", 25) <= 0) |
123 | 0 | goto err; |
124 | 8.19k | if (ossl_asn1_time_print_ex(bp, X509_get0_notAfter(x), ASN1_DTFLGS_RFC822) == 0) |
125 | 0 | goto err; |
126 | 8.19k | if (BIO_write(bp, "\n", 1) <= 0) |
127 | 0 | goto err; |
128 | 8.19k | } |
129 | 10.3k | if (!(cflag & X509_FLAG_NO_SUBJECT)) { |
130 | 8.19k | if (BIO_printf(bp, " Subject:%c", mlch) <= 0) |
131 | 0 | goto err; |
132 | 8.19k | if (X509_NAME_print_ex |
133 | 8.19k | (bp, X509_get_subject_name(x), nmindent, nmflags) < printok) |
134 | 17 | goto err; |
135 | 8.17k | if (BIO_write(bp, "\n", 1) <= 0) |
136 | 0 | goto err; |
137 | 8.17k | } |
138 | 10.3k | if (!(cflag & X509_FLAG_NO_PUBKEY)) { |
139 | 7.43k | X509_PUBKEY *xpkey = X509_get_X509_PUBKEY(x); |
140 | 7.43k | ASN1_OBJECT *xpoid; |
141 | 7.43k | X509_PUBKEY_get0_param(&xpoid, NULL, NULL, NULL, xpkey); |
142 | 7.43k | if (BIO_write(bp, " Subject Public Key Info:\n", 33) <= 0) |
143 | 0 | goto err; |
144 | 7.43k | if (BIO_printf(bp, "%12sPublic Key Algorithm: ", "") <= 0) |
145 | 0 | goto err; |
146 | 7.43k | if (i2a_ASN1_OBJECT(bp, xpoid) <= 0) |
147 | 0 | goto err; |
148 | 7.43k | if (BIO_puts(bp, "\n") <= 0) |
149 | 0 | goto err; |
150 | | |
151 | 7.43k | pkey = X509_get0_pubkey(x); |
152 | 7.43k | if (pkey == NULL) { |
153 | 6.00k | BIO_printf(bp, "%12sUnable to load Public Key\n", ""); |
154 | 6.00k | ERR_print_errors(bp); |
155 | 6.00k | } else { |
156 | 1.42k | EVP_PKEY_print_public(bp, pkey, 16, NULL); |
157 | 1.42k | } |
158 | 7.43k | } |
159 | | |
160 | 10.3k | if (!(cflag & X509_FLAG_NO_IDS)) { |
161 | 7.43k | const ASN1_BIT_STRING *iuid, *suid; |
162 | 7.43k | X509_get0_uids(x, &iuid, &suid); |
163 | 7.43k | if (iuid != NULL) { |
164 | 7 | if (BIO_printf(bp, "%8sIssuer Unique ID: ", "") <= 0) |
165 | 0 | goto err; |
166 | 7 | if (!X509_signature_dump(bp, iuid, 12)) |
167 | 0 | goto err; |
168 | 7 | } |
169 | 7.43k | if (suid != NULL) { |
170 | 16 | if (BIO_printf(bp, "%8sSubject Unique ID: ", "") <= 0) |
171 | 0 | goto err; |
172 | 16 | if (!X509_signature_dump(bp, suid, 12)) |
173 | 0 | goto err; |
174 | 16 | } |
175 | 7.43k | } |
176 | | |
177 | 10.3k | if (!(cflag & X509_FLAG_NO_EXTENSIONS) |
178 | 10.3k | && !X509V3_extensions_print(bp, "X509v3 extensions", |
179 | 8.17k | X509_get0_extensions(x), cflag, 8)) |
180 | 0 | goto err; |
181 | | |
182 | 10.3k | if (!(cflag & X509_FLAG_NO_SIGDUMP)) { |
183 | 7.43k | const X509_ALGOR *sig_alg; |
184 | 7.43k | const ASN1_BIT_STRING *sig; |
185 | 7.43k | X509_get0_signature(&sig, &sig_alg, x); |
186 | 7.43k | if (X509_signature_print(bp, sig_alg, sig) <= 0) |
187 | 0 | goto err; |
188 | 7.43k | } |
189 | 10.3k | if (!(cflag & X509_FLAG_NO_AUX)) { |
190 | 7.43k | if (!X509_aux_print(bp, x, 0)) |
191 | 0 | goto err; |
192 | 7.43k | } |
193 | 10.3k | ret = 1; |
194 | 10.3k | err: |
195 | 10.3k | return ret; |
196 | 10.3k | } |
197 | | |
198 | | int X509_ocspid_print(BIO *bp, X509 *x) |
199 | 0 | { |
200 | 0 | unsigned char *der = NULL; |
201 | 0 | unsigned char *dertmp; |
202 | 0 | int derlen; |
203 | 0 | int i; |
204 | 0 | unsigned char SHA1md[SHA_DIGEST_LENGTH]; |
205 | 0 | ASN1_BIT_STRING *keybstr; |
206 | 0 | const X509_NAME *subj; |
207 | 0 | EVP_MD *md = NULL; |
208 | |
|
209 | 0 | if (x == NULL || bp == NULL) |
210 | 0 | return 0; |
211 | | /* |
212 | | * display the hash of the subject as it would appear in OCSP requests |
213 | | */ |
214 | 0 | if (BIO_printf(bp, " Subject OCSP hash: ") <= 0) |
215 | 0 | goto err; |
216 | 0 | subj = X509_get_subject_name(x); |
217 | 0 | derlen = i2d_X509_NAME(subj, NULL); |
218 | 0 | if (derlen <= 0) |
219 | 0 | goto err; |
220 | 0 | if ((der = dertmp = OPENSSL_malloc(derlen)) == NULL) |
221 | 0 | goto err; |
222 | 0 | i2d_X509_NAME(subj, &dertmp); |
223 | |
|
224 | 0 | md = EVP_MD_fetch(x->libctx, SN_sha1, x->propq); |
225 | 0 | if (md == NULL) |
226 | 0 | goto err; |
227 | 0 | if (!EVP_Digest(der, derlen, SHA1md, NULL, md, NULL)) |
228 | 0 | goto err; |
229 | 0 | for (i = 0; i < SHA_DIGEST_LENGTH; i++) { |
230 | 0 | if (BIO_printf(bp, "%02X", SHA1md[i]) <= 0) |
231 | 0 | goto err; |
232 | 0 | } |
233 | 0 | OPENSSL_free(der); |
234 | 0 | der = NULL; |
235 | | |
236 | | /* |
237 | | * display the hash of the public key as it would appear in OCSP requests |
238 | | */ |
239 | 0 | if (BIO_printf(bp, "\n Public key OCSP hash: ") <= 0) |
240 | 0 | goto err; |
241 | | |
242 | 0 | keybstr = X509_get0_pubkey_bitstr(x); |
243 | |
|
244 | 0 | if (keybstr == NULL) |
245 | 0 | goto err; |
246 | | |
247 | 0 | if (!EVP_Digest(ASN1_STRING_get0_data(keybstr), |
248 | 0 | ASN1_STRING_length(keybstr), SHA1md, NULL, md, NULL)) |
249 | 0 | goto err; |
250 | 0 | for (i = 0; i < SHA_DIGEST_LENGTH; i++) { |
251 | 0 | if (BIO_printf(bp, "%02X", SHA1md[i]) <= 0) |
252 | 0 | goto err; |
253 | 0 | } |
254 | 0 | BIO_printf(bp, "\n"); |
255 | 0 | EVP_MD_free(md); |
256 | |
|
257 | 0 | return 1; |
258 | 0 | err: |
259 | 0 | OPENSSL_free(der); |
260 | 0 | EVP_MD_free(md); |
261 | 0 | return 0; |
262 | 0 | } |
263 | | |
264 | | int X509_signature_dump(BIO *bp, const ASN1_STRING *sig, int indent) |
265 | 60.5k | { |
266 | 60.5k | const unsigned char *s; |
267 | 60.5k | int i, n; |
268 | | |
269 | 60.5k | n = sig->length; |
270 | 60.5k | s = sig->data; |
271 | 81.5M | for (i = 0; i < n; i++) { |
272 | 81.5M | if ((i % 18) == 0) { |
273 | 4.53M | if (i > 0 && BIO_write(bp, "\n", 1) <= 0) |
274 | 0 | return 0; |
275 | 4.53M | if (BIO_indent(bp, indent, indent) <= 0) |
276 | 0 | return 0; |
277 | 4.53M | } |
278 | 81.5M | if (BIO_printf(bp, "%02x%s", s[i], ((i + 1) == n) ? "" : ":") <= 0) |
279 | 0 | return 0; |
280 | 81.5M | } |
281 | 60.5k | if (BIO_write(bp, "\n", 1) != 1) |
282 | 0 | return 0; |
283 | | |
284 | 60.5k | return 1; |
285 | 60.5k | } |
286 | | |
287 | | int X509_signature_print(BIO *bp, const X509_ALGOR *sigalg, |
288 | | const ASN1_STRING *sig) |
289 | 119k | { |
290 | 119k | int sig_nid; |
291 | 119k | int indent = 4; |
292 | 119k | if (BIO_printf(bp, "%*sSignature Algorithm: ", indent, "") <= 0) |
293 | 0 | return 0; |
294 | 119k | if (i2a_ASN1_OBJECT(bp, sigalg->algorithm) <= 0) |
295 | 0 | return 0; |
296 | | |
297 | 119k | if (sig && BIO_printf(bp, "\n%*sSignature Value:", indent, "") <= 0) |
298 | 0 | return 0; |
299 | 119k | sig_nid = OBJ_obj2nid(sigalg->algorithm); |
300 | 119k | if (sig_nid != NID_undef) { |
301 | 31.6k | int pkey_nid, dig_nid; |
302 | 31.6k | const EVP_PKEY_ASN1_METHOD *ameth; |
303 | 31.6k | if (OBJ_find_sigid_algs(sig_nid, &dig_nid, &pkey_nid)) { |
304 | 13.5k | ameth = EVP_PKEY_asn1_find(NULL, pkey_nid); |
305 | 13.5k | if (ameth && ameth->sig_print) |
306 | 12.8k | return ameth->sig_print(bp, sigalg, sig, indent + 4, 0); |
307 | 13.5k | } |
308 | 31.6k | } |
309 | 106k | if (BIO_write(bp, "\n", 1) != 1) |
310 | 0 | return 0; |
311 | 106k | if (sig) |
312 | 54.2k | return X509_signature_dump(bp, sig, indent + 4); |
313 | 51.9k | return 1; |
314 | 106k | } |
315 | | |
316 | | int X509_aux_print(BIO *out, X509 *x, int indent) |
317 | 29.2k | { |
318 | 29.2k | char oidstr[80], first; |
319 | 29.2k | STACK_OF(ASN1_OBJECT) *trust, *reject; |
320 | 29.2k | const unsigned char *alias, *keyid; |
321 | 29.2k | int keyidlen; |
322 | 29.2k | int i; |
323 | 29.2k | if (X509_trusted(x) == 0) |
324 | 29.2k | return 1; |
325 | 0 | trust = X509_get0_trust_objects(x); |
326 | 0 | reject = X509_get0_reject_objects(x); |
327 | 0 | if (trust) { |
328 | 0 | first = 1; |
329 | 0 | BIO_printf(out, "%*sTrusted Uses:\n%*s", indent, "", indent + 2, ""); |
330 | 0 | for (i = 0; i < sk_ASN1_OBJECT_num(trust); i++) { |
331 | 0 | if (!first) |
332 | 0 | BIO_puts(out, ", "); |
333 | 0 | else |
334 | 0 | first = 0; |
335 | 0 | OBJ_obj2txt(oidstr, sizeof(oidstr), |
336 | 0 | sk_ASN1_OBJECT_value(trust, i), 0); |
337 | 0 | BIO_puts(out, oidstr); |
338 | 0 | } |
339 | 0 | BIO_puts(out, "\n"); |
340 | 0 | } else |
341 | 0 | BIO_printf(out, "%*sNo Trusted Uses.\n", indent, ""); |
342 | 0 | if (reject) { |
343 | 0 | first = 1; |
344 | 0 | BIO_printf(out, "%*sRejected Uses:\n%*s", indent, "", indent + 2, ""); |
345 | 0 | for (i = 0; i < sk_ASN1_OBJECT_num(reject); i++) { |
346 | 0 | if (!first) |
347 | 0 | BIO_puts(out, ", "); |
348 | 0 | else |
349 | 0 | first = 0; |
350 | 0 | OBJ_obj2txt(oidstr, sizeof(oidstr), |
351 | 0 | sk_ASN1_OBJECT_value(reject, i), 0); |
352 | 0 | BIO_puts(out, oidstr); |
353 | 0 | } |
354 | 0 | BIO_puts(out, "\n"); |
355 | 0 | } else |
356 | 0 | BIO_printf(out, "%*sNo Rejected Uses.\n", indent, ""); |
357 | 0 | alias = X509_alias_get0(x, &i); |
358 | 0 | if (alias) |
359 | 0 | BIO_printf(out, "%*sAlias: %.*s\n", indent, "", i, alias); |
360 | 0 | keyid = X509_keyid_get0(x, &keyidlen); |
361 | 0 | if (keyid) { |
362 | 0 | BIO_printf(out, "%*sKey Id: ", indent, ""); |
363 | 0 | for (i = 0; i < keyidlen; i++) |
364 | 0 | BIO_printf(out, "%s%02X", i ? ":" : "", keyid[i]); |
365 | 0 | BIO_write(out, "\n", 1); |
366 | 0 | } |
367 | 0 | return 1; |
368 | 29.2k | } |
369 | | |
370 | | /* |
371 | | * Helper functions for improving certificate verification error diagnostics |
372 | | */ |
373 | | |
374 | | int ossl_x509_print_ex_brief(BIO *bio, X509 *cert, unsigned long neg_cflags) |
375 | 2.17k | { |
376 | 2.17k | unsigned long flags = ASN1_STRFLGS_RFC2253 | ASN1_STRFLGS_ESC_QUOTE | |
377 | 2.17k | XN_FLAG_SEP_CPLUS_SPC | XN_FLAG_FN_SN; |
378 | | |
379 | 2.17k | if (cert == NULL) |
380 | 0 | return BIO_printf(bio, " (no certificate)\n") > 0; |
381 | 2.17k | if (BIO_printf(bio, " certificate\n") <= 0 |
382 | 2.17k | || !X509_print_ex(bio, cert, flags, ~X509_FLAG_NO_SUBJECT)) |
383 | 0 | return 0; |
384 | 2.17k | if (X509_check_issued((X509 *)cert, cert) == X509_V_OK) { |
385 | 91 | if (BIO_printf(bio, " self-issued\n") <= 0) |
386 | 0 | return 0; |
387 | 2.08k | } else { |
388 | 2.08k | if (BIO_printf(bio, " ") <= 0 |
389 | 2.08k | || !X509_print_ex(bio, cert, flags, ~X509_FLAG_NO_ISSUER)) |
390 | 0 | return 0; |
391 | 2.08k | } |
392 | 2.17k | if (!X509_print_ex(bio, cert, flags, |
393 | 2.17k | ~(X509_FLAG_NO_SERIAL | X509_FLAG_NO_VALIDITY))) |
394 | 0 | return 0; |
395 | 2.17k | if (X509_cmp_current_time(X509_get0_notBefore(cert)) > 0) |
396 | 73 | if (BIO_printf(bio, " not yet valid\n") <= 0) |
397 | 0 | return 0; |
398 | 2.17k | if (X509_cmp_current_time(X509_get0_notAfter(cert)) < 0) |
399 | 159 | if (BIO_printf(bio, " no more valid\n") <= 0) |
400 | 0 | return 0; |
401 | 2.17k | return X509_print_ex(bio, cert, flags, |
402 | 2.17k | ~neg_cflags & ~X509_FLAG_EXTENSIONS_ONLY_KID); |
403 | 2.17k | } |
404 | | |
405 | | static int print_certs(BIO *bio, const STACK_OF(X509) *certs) |
406 | 0 | { |
407 | 0 | int i; |
408 | |
|
409 | 0 | if (certs == NULL || sk_X509_num(certs) <= 0) |
410 | 0 | return BIO_printf(bio, " (no certificates)\n") >= 0; |
411 | | |
412 | 0 | for (i = 0; i < sk_X509_num(certs); i++) { |
413 | 0 | X509 *cert = sk_X509_value(certs, i); |
414 | |
|
415 | 0 | if (cert != NULL) { |
416 | 0 | if (!ossl_x509_print_ex_brief(bio, cert, 0)) |
417 | 0 | return 0; |
418 | 0 | if (!X509V3_extensions_print(bio, NULL, |
419 | 0 | X509_get0_extensions(cert), |
420 | 0 | X509_FLAG_EXTENSIONS_ONLY_KID, 8)) |
421 | 0 | return 0; |
422 | 0 | } |
423 | 0 | } |
424 | 0 | return 1; |
425 | 0 | } |
426 | | |
427 | | static int print_store_certs(BIO *bio, X509_STORE *store) |
428 | 0 | { |
429 | 0 | if (store != NULL) { |
430 | 0 | STACK_OF(X509) *certs = X509_STORE_get1_all_certs(store); |
431 | 0 | int ret = print_certs(bio, certs); |
432 | |
|
433 | 0 | OSSL_STACK_OF_X509_free(certs); |
434 | 0 | return ret; |
435 | 0 | } else { |
436 | 0 | return BIO_printf(bio, " (no trusted store)\n") >= 0; |
437 | 0 | } |
438 | 0 | } |
439 | | |
440 | | /* Extend the error queue with details on a failed cert verification */ |
441 | | int X509_STORE_CTX_print_verify_cb(int ok, X509_STORE_CTX *ctx) |
442 | 0 | { |
443 | 0 | if (ok == 0 && ctx != NULL) { |
444 | 0 | int cert_error = X509_STORE_CTX_get_error(ctx); |
445 | 0 | BIO *bio = BIO_new(BIO_s_mem()); /* may be NULL */ |
446 | |
|
447 | 0 | if (bio == NULL) |
448 | 0 | return 0; |
449 | 0 | BIO_printf(bio, "%s at depth = %d error = %d (%s)\n", |
450 | 0 | X509_STORE_CTX_get0_parent_ctx(ctx) != NULL |
451 | 0 | ? "CRL path validation" |
452 | 0 | : "Certificate verification", |
453 | 0 | X509_STORE_CTX_get_error_depth(ctx), |
454 | 0 | cert_error, X509_verify_cert_error_string(cert_error)); |
455 | 0 | { |
456 | 0 | X509_STORE *ts = X509_STORE_CTX_get0_store(ctx); |
457 | 0 | X509_VERIFY_PARAM *vpm = X509_STORE_get0_param(ts); |
458 | 0 | char *str; |
459 | 0 | int idx = 0; |
460 | |
|
461 | 0 | switch (cert_error) { |
462 | 0 | case X509_V_ERR_HOSTNAME_MISMATCH: |
463 | 0 | BIO_printf(bio, "Expected hostname(s) = "); |
464 | 0 | while ((str = X509_VERIFY_PARAM_get0_host(vpm, idx++)) != NULL) |
465 | 0 | BIO_printf(bio, "%s%s", idx == 1 ? "" : ", ", str); |
466 | 0 | BIO_printf(bio, "\n"); |
467 | 0 | break; |
468 | 0 | case X509_V_ERR_EMAIL_MISMATCH: |
469 | 0 | str = X509_VERIFY_PARAM_get0_email(vpm); |
470 | 0 | if (str != NULL) |
471 | 0 | BIO_printf(bio, "Expected email address = %s\n", str); |
472 | 0 | break; |
473 | 0 | case X509_V_ERR_IP_ADDRESS_MISMATCH: |
474 | 0 | str = X509_VERIFY_PARAM_get1_ip_asc(vpm); |
475 | 0 | if (str != NULL) |
476 | 0 | BIO_printf(bio, "Expected IP address = %s\n", str); |
477 | 0 | OPENSSL_free(str); |
478 | 0 | break; |
479 | 0 | default: |
480 | 0 | break; |
481 | 0 | } |
482 | 0 | } |
483 | | |
484 | 0 | BIO_printf(bio, "Failure for:\n"); |
485 | 0 | ossl_x509_print_ex_brief(bio, X509_STORE_CTX_get_current_cert(ctx), |
486 | 0 | X509_FLAG_NO_EXTENSIONS); |
487 | 0 | if (cert_error == X509_V_ERR_CERT_UNTRUSTED |
488 | 0 | || cert_error == X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT |
489 | 0 | || cert_error == X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN |
490 | 0 | || cert_error == X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT |
491 | 0 | || cert_error == X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY |
492 | 0 | || cert_error == X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER |
493 | 0 | || cert_error == X509_V_ERR_STORE_LOOKUP) { |
494 | 0 | BIO_printf(bio, "Non-trusted certs:\n"); |
495 | 0 | print_certs(bio, X509_STORE_CTX_get0_untrusted(ctx)); |
496 | 0 | BIO_printf(bio, "Certs in trust store:\n"); |
497 | 0 | print_store_certs(bio, X509_STORE_CTX_get0_store(ctx)); |
498 | 0 | } |
499 | 0 | ERR_raise(ERR_LIB_X509, X509_R_CERTIFICATE_VERIFICATION_FAILED); |
500 | 0 | ERR_add_error_mem_bio("\n", bio); |
501 | 0 | BIO_free(bio); |
502 | 0 | } |
503 | | |
504 | 0 | return ok; |
505 | 0 | } |
506 | | |
507 | | /* |
508 | | * Prints serial numbers in decimal and hexadecimal. The indent argument is only |
509 | | * used if the serial number is too large to fit in an int64_t. |
510 | | */ |
511 | | int ossl_serial_number_print(BIO *out, const ASN1_INTEGER *bs, int indent) |
512 | 8.19k | { |
513 | 8.19k | int i, ok; |
514 | 8.19k | int64_t l; |
515 | 8.19k | uint64_t ul; |
516 | 8.19k | const char *neg; |
517 | | |
518 | 8.19k | if (bs->length == 0) { |
519 | 0 | if (BIO_puts(out, " (Empty)") <= 0) |
520 | 0 | return -1; |
521 | 0 | return 0; |
522 | 0 | } |
523 | | |
524 | 8.19k | ERR_set_mark(); |
525 | 8.19k | ok = ASN1_INTEGER_get_int64(&l, bs); |
526 | 8.19k | ERR_pop_to_mark(); |
527 | | |
528 | 8.19k | if (ok) { /* Reading an int64_t succeeded: print decimal and hex. */ |
529 | 7.96k | if (bs->type == V_ASN1_NEG_INTEGER) { |
530 | 2.91k | ul = 0 - (uint64_t)l; |
531 | 2.91k | neg = "-"; |
532 | 5.04k | } else { |
533 | 5.04k | ul = l; |
534 | 5.04k | neg = ""; |
535 | 5.04k | } |
536 | 7.96k | if (BIO_printf(out, " %s%ju (%s0x%jx)", neg, ul, neg, ul) <= 0) |
537 | 0 | return -1; |
538 | 7.96k | } else { /* Reading an int64_t failed: just print hex. */ |
539 | 231 | neg = (bs->type == V_ASN1_NEG_INTEGER) ? " (Negative)" : ""; |
540 | 231 | if (BIO_printf(out, "\n%*s%s", indent, "", neg) <= 0) |
541 | 0 | return -1; |
542 | | |
543 | 3.03k | for (i = 0; i < bs->length - 1; i++) { |
544 | 2.80k | if (BIO_printf(out, "%02x%c", bs->data[i], ':') <= 0) |
545 | 0 | return -1; |
546 | 2.80k | } |
547 | 231 | if (BIO_printf(out, "%02x", bs->data[i]) <= 0) |
548 | 0 | return -1; |
549 | 231 | } |
550 | 8.19k | return 0; |
551 | 8.19k | } |