/src/openssl35/crypto/x509/t_acert.c
Line | Count | Source |
1 | | /* |
2 | | * Copyright 2021-2024 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_acert.h> |
16 | | |
17 | | static int print_attribute(BIO *bp, X509_ATTRIBUTE *a) |
18 | 74.2k | { |
19 | 74.2k | ASN1_OBJECT *aobj; |
20 | 74.2k | int i, j, count; |
21 | 74.2k | int ret = 0; |
22 | | |
23 | 74.2k | aobj = X509_ATTRIBUTE_get0_object(a); |
24 | 74.2k | if (BIO_printf(bp, "%12s", "") <= 0) |
25 | 0 | goto err; |
26 | | |
27 | 74.2k | if ((j = i2a_ASN1_OBJECT(bp, aobj)) <= 0) |
28 | 0 | goto err; |
29 | | |
30 | 74.2k | count = X509_ATTRIBUTE_count(a); |
31 | 74.2k | if (count == 0) { |
32 | 81 | ERR_raise(ERR_LIB_X509, X509_R_INVALID_ATTRIBUTES); |
33 | 81 | goto err; |
34 | 81 | } |
35 | | |
36 | 74.2k | if (j < 25 && (BIO_printf(bp, "%*s", 25 - j, " ") <= 0)) |
37 | 0 | goto err; |
38 | | |
39 | 74.2k | if (BIO_puts(bp, ":") <= 0) |
40 | 0 | goto err; |
41 | | |
42 | 2.65M | for (i = 0; i < count; i++) { |
43 | 2.58M | ASN1_TYPE *at; |
44 | 2.58M | int type; |
45 | 2.58M | ASN1_BIT_STRING *bs; |
46 | | |
47 | 2.58M | at = X509_ATTRIBUTE_get0_type(a, i); |
48 | 2.58M | type = at->type; |
49 | | |
50 | 2.58M | switch (type) { |
51 | 1.37k | case V_ASN1_PRINTABLESTRING: |
52 | 183k | case V_ASN1_T61STRING: |
53 | 651k | case V_ASN1_NUMERICSTRING: |
54 | 652k | case V_ASN1_UTF8STRING: |
55 | 664k | case V_ASN1_IA5STRING: |
56 | 664k | bs = at->value.asn1_string; |
57 | 664k | if (BIO_write(bp, (char *)bs->data, bs->length) != bs->length) |
58 | 0 | goto err; |
59 | 664k | if (BIO_puts(bp, "\n") <= 0) |
60 | 0 | goto err; |
61 | 664k | break; |
62 | 664k | case V_ASN1_SEQUENCE: |
63 | 38.0k | if (BIO_puts(bp, "\n") <= 0) |
64 | 0 | goto err; |
65 | 38.0k | if (ASN1_parse_dump(bp, at->value.sequence->data, |
66 | 38.0k | at->value.sequence->length, i, 1) |
67 | 38.0k | <= 0) |
68 | 841 | goto err; |
69 | 37.2k | break; |
70 | 1.87M | default: |
71 | 1.87M | if (BIO_printf(bp, "unable to print attribute of type 0x%X\n", |
72 | 1.87M | type) |
73 | 1.87M | < 0) |
74 | 0 | goto err; |
75 | 1.87M | break; |
76 | 2.58M | } |
77 | 2.58M | } |
78 | 73.3k | ret = 1; |
79 | 74.2k | err: |
80 | 74.2k | return ret; |
81 | 73.3k | } |
82 | | |
83 | | int X509_ACERT_print_ex(BIO *bp, X509_ACERT *x, unsigned long nmflags, |
84 | | unsigned long cflag) |
85 | 15.6k | { |
86 | 15.6k | int i; |
87 | 15.6k | char mlch = ' '; |
88 | | |
89 | 15.6k | if ((nmflags & XN_FLAG_SEP_MASK) == XN_FLAG_SEP_MULTILINE) { |
90 | 0 | mlch = '\n'; |
91 | 0 | } |
92 | | |
93 | 15.6k | if ((cflag & X509_FLAG_NO_HEADER) == 0) { |
94 | 15.6k | if (BIO_printf(bp, "Attribute Certificate:\n") <= 0) |
95 | 0 | goto err; |
96 | 15.6k | if (BIO_printf(bp, "%4sData:\n", "") <= 0) |
97 | 0 | goto err; |
98 | 15.6k | } |
99 | | |
100 | 15.6k | if ((cflag & X509_FLAG_NO_VERSION) == 0) { |
101 | 15.6k | long l; |
102 | | |
103 | 15.6k | l = X509_ACERT_get_version(x); |
104 | 15.6k | if (l == X509_ACERT_VERSION_2) { |
105 | 860 | if (BIO_printf(bp, "%8sVersion: %ld (0x%lx)\n", "", l + 1, |
106 | 860 | (unsigned long)l) |
107 | 860 | <= 0) |
108 | 0 | goto err; |
109 | 14.7k | } else { |
110 | 14.7k | if (BIO_printf(bp, "%8sVersion: Unknown (%ld)\n", "", l) <= 0) |
111 | 0 | goto err; |
112 | 14.7k | } |
113 | 15.6k | } |
114 | | |
115 | 15.6k | if ((cflag & X509_FLAG_NO_SERIAL) == 0) { |
116 | 15.6k | const ASN1_INTEGER *serial; |
117 | | |
118 | 15.6k | serial = X509_ACERT_get0_serialNumber(x); |
119 | | |
120 | 15.6k | if (BIO_printf(bp, "%8sSerial Number: ", "") <= 0) |
121 | 0 | goto err; |
122 | | |
123 | 15.6k | if (i2a_ASN1_INTEGER(bp, serial) <= 0) |
124 | 0 | goto err; |
125 | | |
126 | 15.6k | if (BIO_write(bp, "\n", 1) <= 0) |
127 | 0 | goto err; |
128 | 15.6k | } |
129 | | |
130 | 15.6k | if ((cflag & X509_FLAG_NO_SUBJECT) == 0) { |
131 | 15.6k | const GENERAL_NAMES *holderEntities; |
132 | 15.6k | const OSSL_ISSUER_SERIAL *holder_bcid; |
133 | 15.6k | const X509_NAME *holderIssuer = NULL; |
134 | | |
135 | 15.6k | if (BIO_printf(bp, "%8sHolder:\n", "") <= 0) |
136 | 0 | goto err; |
137 | | |
138 | 15.6k | holderEntities = X509_ACERT_get0_holder_entityName(x); |
139 | 15.6k | if (holderEntities != NULL) { |
140 | 7.07k | for (i = 0; i < sk_GENERAL_NAME_num(holderEntities); i++) { |
141 | 4.21k | GENERAL_NAME *entity; |
142 | | |
143 | 4.21k | entity = sk_GENERAL_NAME_value(holderEntities, i); |
144 | | |
145 | 4.21k | if (BIO_printf(bp, "%12sName:%c", "", mlch) <= 0) |
146 | 0 | goto err; |
147 | 4.21k | if (GENERAL_NAME_print(bp, entity) <= 0) |
148 | 0 | goto err; |
149 | 4.21k | if (BIO_write(bp, "\n", 1) <= 0) |
150 | 0 | goto err; |
151 | 4.21k | } |
152 | 2.86k | } |
153 | | |
154 | 15.6k | if ((holder_bcid = X509_ACERT_get0_holder_baseCertId(x)) != NULL) |
155 | 3.21k | holderIssuer = OSSL_ISSUER_SERIAL_get0_issuer(holder_bcid); |
156 | | |
157 | 15.6k | if (holderIssuer != NULL) { |
158 | 1.10k | const ASN1_INTEGER *holder_serial; |
159 | 1.10k | const ASN1_BIT_STRING *iuid; |
160 | | |
161 | 1.10k | if (BIO_printf(bp, "%12sIssuer:%c", "", mlch) <= 0) |
162 | 0 | goto err; |
163 | | |
164 | 1.10k | if (X509_NAME_print_ex(bp, holderIssuer, 0, nmflags) <= 0) |
165 | 0 | goto err; |
166 | | |
167 | 1.10k | if (BIO_write(bp, "\n", 1) <= 0) |
168 | 0 | goto err; |
169 | | |
170 | 1.10k | if (BIO_printf(bp, "%12sSerial: ", "") <= 0) |
171 | 0 | goto err; |
172 | | |
173 | 1.10k | holder_serial = OSSL_ISSUER_SERIAL_get0_serial(holder_bcid); |
174 | | |
175 | 1.10k | if (i2a_ASN1_INTEGER(bp, holder_serial) <= 0) |
176 | 0 | goto err; |
177 | | |
178 | 1.10k | iuid = OSSL_ISSUER_SERIAL_get0_issuerUID(holder_bcid); |
179 | 1.10k | if (iuid != NULL) { |
180 | 0 | if (BIO_printf(bp, "%12sIssuer UID: ", "") <= 0) |
181 | 0 | goto err; |
182 | 0 | if (X509_signature_dump(bp, iuid, 24) <= 0) |
183 | 0 | goto err; |
184 | 0 | } |
185 | 1.10k | if (BIO_write(bp, "\n", 1) <= 0) |
186 | 0 | goto err; |
187 | 1.10k | } |
188 | 15.6k | } |
189 | | |
190 | 15.6k | if ((cflag & X509_FLAG_NO_ISSUER) == 0) { |
191 | 15.6k | const X509_NAME *issuer; |
192 | | |
193 | 15.6k | if (BIO_printf(bp, "%8sIssuer:%c", "", mlch) <= 0) |
194 | 0 | goto err; |
195 | 15.6k | issuer = X509_ACERT_get0_issuerName(x); |
196 | 15.6k | if (issuer) { |
197 | 2.07k | if (X509_NAME_print_ex(bp, issuer, 0, nmflags) < 0) |
198 | 0 | goto err; |
199 | 13.5k | } else { |
200 | 13.5k | if (BIO_printf(bp, "Unsupported Issuer Type") <= 0) |
201 | 0 | goto err; |
202 | 13.5k | } |
203 | 15.6k | if (BIO_write(bp, "\n", 1) <= 0) |
204 | 0 | goto err; |
205 | 15.6k | } |
206 | | |
207 | 15.6k | if ((cflag & X509_FLAG_NO_VALIDITY) == 0) { |
208 | 15.6k | if (BIO_printf(bp, "%8sValidity\n", "") <= 0) |
209 | 0 | goto err; |
210 | 15.6k | if (BIO_printf(bp, "%12sNot Before: ", "") <= 0) |
211 | 0 | goto err; |
212 | 15.6k | if (ASN1_GENERALIZEDTIME_print(bp, X509_ACERT_get0_notBefore(x)) == 0) |
213 | 3.76k | goto err; |
214 | 11.8k | if (BIO_printf(bp, "\n%12sNot After : ", "") <= 0) |
215 | 0 | goto err; |
216 | 11.8k | if (ASN1_GENERALIZEDTIME_print(bp, X509_ACERT_get0_notAfter(x)) == 0) |
217 | 406 | goto err; |
218 | 11.4k | if (BIO_write(bp, "\n", 1) <= 0) |
219 | 0 | goto err; |
220 | 11.4k | } |
221 | | |
222 | 11.4k | if ((cflag & X509_FLAG_NO_ATTRIBUTES) == 0) { |
223 | 11.4k | if (BIO_printf(bp, "%8sAttributes:\n", "") <= 0) |
224 | 0 | goto err; |
225 | | |
226 | 11.4k | if (X509_ACERT_get_attr_count(x) == 0) { |
227 | 2.61k | if (BIO_printf(bp, "%12s(none)\n", "") <= 0) |
228 | 0 | goto err; |
229 | 8.87k | } else { |
230 | 82.2k | for (i = 0; i < X509_ACERT_get_attr_count(x); i++) { |
231 | 74.2k | if (print_attribute(bp, X509_ACERT_get_attr(x, i)) == 0) |
232 | 922 | goto err; |
233 | 74.2k | } |
234 | 8.87k | } |
235 | 11.4k | } |
236 | | |
237 | 10.5k | if ((cflag & X509_FLAG_NO_EXTENSIONS) == 0) { |
238 | 10.5k | const STACK_OF(X509_EXTENSION) *exts; |
239 | | |
240 | 10.5k | exts = X509_ACERT_get0_extensions(x); |
241 | 10.5k | if (exts != NULL) { |
242 | 4.03k | if (BIO_printf(bp, "%8sExtensions:\n", "") <= 0) |
243 | 0 | goto err; |
244 | 86.8k | for (i = 0; i < sk_X509_EXTENSION_num(exts); i++) { |
245 | 82.7k | ASN1_OBJECT *obj; |
246 | 82.7k | X509_EXTENSION *ex; |
247 | 82.7k | int critical; |
248 | | |
249 | 82.7k | ex = sk_X509_EXTENSION_value(exts, i); |
250 | 82.7k | if (BIO_printf(bp, "%12s", "") <= 0) |
251 | 0 | goto err; |
252 | 82.7k | obj = X509_EXTENSION_get_object(ex); |
253 | 82.7k | if (i2a_ASN1_OBJECT(bp, obj) <= 0) |
254 | 0 | goto err; |
255 | 82.7k | critical = X509_EXTENSION_get_critical(ex); |
256 | 82.7k | if (BIO_printf(bp, ": %s\n", critical ? "critical" : "") <= 0) |
257 | 0 | goto err; |
258 | 82.7k | if (X509V3_EXT_print(bp, ex, cflag, 20) <= 0) { |
259 | 56.1k | if (BIO_printf(bp, "%16s", "") <= 0) |
260 | 0 | goto err; |
261 | 56.1k | if (ASN1_STRING_print(bp, X509_EXTENSION_get_data(ex)) <= 0) |
262 | 0 | goto err; |
263 | 56.1k | } |
264 | 82.7k | if (BIO_write(bp, "\n", 1) <= 0) |
265 | 0 | goto err; |
266 | 82.7k | } |
267 | 4.03k | } |
268 | 10.5k | } |
269 | | |
270 | 10.5k | if ((cflag & X509_FLAG_NO_SIGDUMP) == 0) { |
271 | 10.5k | const X509_ALGOR *sig_alg; |
272 | 10.5k | const ASN1_BIT_STRING *sig; |
273 | | |
274 | 10.5k | X509_ACERT_get0_signature(x, &sig, &sig_alg); |
275 | 10.5k | if (X509_signature_print(bp, sig_alg, sig) <= 0) |
276 | 0 | return 0; |
277 | 10.5k | } |
278 | | |
279 | 10.5k | return 1; |
280 | | |
281 | 5.09k | err: |
282 | 5.09k | ERR_raise(ERR_LIB_X509, ERR_R_BUF_LIB); |
283 | 5.09k | return 0; |
284 | 10.5k | } |
285 | | |
286 | | int X509_ACERT_print(BIO *bp, X509_ACERT *x) |
287 | 15.6k | { |
288 | 15.6k | return X509_ACERT_print_ex(bp, x, XN_FLAG_COMPAT, X509_FLAG_COMPAT); |
289 | 15.6k | } |