/src/openssl30/crypto/asn1/tasn_prn.c
Line | Count | Source |
1 | | /* |
2 | | * Copyright 2000-2021 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 <stddef.h> |
11 | | #include "internal/cryptlib.h" |
12 | | #include <openssl/asn1.h> |
13 | | #include <openssl/asn1t.h> |
14 | | #include <openssl/objects.h> |
15 | | #include <openssl/buffer.h> |
16 | | #include <openssl/err.h> |
17 | | #include <openssl/x509v3.h> |
18 | | #include "crypto/asn1.h" |
19 | | #include "asn1_local.h" |
20 | | |
21 | | /* |
22 | | * Print routines. |
23 | | */ |
24 | | |
25 | | /* ASN1_PCTX routines */ |
26 | | |
27 | | static ASN1_PCTX default_pctx = { |
28 | | ASN1_PCTX_FLAGS_SHOW_ABSENT, /* flags */ |
29 | | 0, /* nm_flags */ |
30 | | 0, /* cert_flags */ |
31 | | 0, /* oid_flags */ |
32 | | 0 /* str_flags */ |
33 | | }; |
34 | | |
35 | | ASN1_PCTX *ASN1_PCTX_new(void) |
36 | 22 | { |
37 | 22 | ASN1_PCTX *ret; |
38 | | |
39 | 22 | ret = OPENSSL_zalloc(sizeof(*ret)); |
40 | 22 | if (ret == NULL) { |
41 | 0 | ERR_raise(ERR_LIB_ASN1, ERR_R_MALLOC_FAILURE); |
42 | 0 | return NULL; |
43 | 0 | } |
44 | 22 | return ret; |
45 | 22 | } |
46 | | |
47 | | void ASN1_PCTX_free(ASN1_PCTX *p) |
48 | 0 | { |
49 | 0 | OPENSSL_free(p); |
50 | 0 | } |
51 | | |
52 | | unsigned long ASN1_PCTX_get_flags(const ASN1_PCTX *p) |
53 | 0 | { |
54 | 0 | return p->flags; |
55 | 0 | } |
56 | | |
57 | | void ASN1_PCTX_set_flags(ASN1_PCTX *p, unsigned long flags) |
58 | 22 | { |
59 | 22 | p->flags = flags; |
60 | 22 | } |
61 | | |
62 | | unsigned long ASN1_PCTX_get_nm_flags(const ASN1_PCTX *p) |
63 | 0 | { |
64 | 0 | return p->nm_flags; |
65 | 0 | } |
66 | | |
67 | | void ASN1_PCTX_set_nm_flags(ASN1_PCTX *p, unsigned long flags) |
68 | 0 | { |
69 | 0 | p->nm_flags = flags; |
70 | 0 | } |
71 | | |
72 | | unsigned long ASN1_PCTX_get_cert_flags(const ASN1_PCTX *p) |
73 | 0 | { |
74 | 0 | return p->cert_flags; |
75 | 0 | } |
76 | | |
77 | | void ASN1_PCTX_set_cert_flags(ASN1_PCTX *p, unsigned long flags) |
78 | 0 | { |
79 | 0 | p->cert_flags = flags; |
80 | 0 | } |
81 | | |
82 | | unsigned long ASN1_PCTX_get_oid_flags(const ASN1_PCTX *p) |
83 | 0 | { |
84 | 0 | return p->oid_flags; |
85 | 0 | } |
86 | | |
87 | | void ASN1_PCTX_set_oid_flags(ASN1_PCTX *p, unsigned long flags) |
88 | 0 | { |
89 | 0 | p->oid_flags = flags; |
90 | 0 | } |
91 | | |
92 | | unsigned long ASN1_PCTX_get_str_flags(const ASN1_PCTX *p) |
93 | 0 | { |
94 | 0 | return p->str_flags; |
95 | 0 | } |
96 | | |
97 | | void ASN1_PCTX_set_str_flags(ASN1_PCTX *p, unsigned long flags) |
98 | 22 | { |
99 | 22 | p->str_flags = flags; |
100 | 22 | } |
101 | | |
102 | | /* Main print routines */ |
103 | | |
104 | | static int asn1_item_print_ctx(BIO *out, const ASN1_VALUE **fld, int indent, |
105 | | const ASN1_ITEM *it, |
106 | | const char *fname, const char *sname, |
107 | | int nohdr, const ASN1_PCTX *pctx); |
108 | | |
109 | | static int asn1_template_print_ctx(BIO *out, const ASN1_VALUE **fld, int indent, |
110 | | const ASN1_TEMPLATE *tt, const ASN1_PCTX *pctx); |
111 | | |
112 | | static int asn1_primitive_print(BIO *out, const ASN1_VALUE **fld, |
113 | | const ASN1_ITEM *it, int indent, |
114 | | const char *fname, const char *sname, |
115 | | const ASN1_PCTX *pctx); |
116 | | |
117 | | static int asn1_print_fsname(BIO *out, int indent, |
118 | | const char *fname, const char *sname, |
119 | | const ASN1_PCTX *pctx); |
120 | | |
121 | | int ASN1_item_print(BIO *out, const ASN1_VALUE *ifld, int indent, |
122 | | const ASN1_ITEM *it, const ASN1_PCTX *pctx) |
123 | 389k | { |
124 | 389k | const char *sname; |
125 | 389k | if (pctx == NULL) |
126 | 39.8k | pctx = &default_pctx; |
127 | 389k | if (pctx->flags & ASN1_PCTX_FLAGS_NO_STRUCT_NAME) |
128 | 0 | sname = NULL; |
129 | 389k | else |
130 | 389k | sname = it->sname; |
131 | 389k | return asn1_item_print_ctx(out, &ifld, indent, it, NULL, sname, 0, pctx); |
132 | 389k | } |
133 | | |
134 | | static int asn1_item_print_ctx(BIO *out, const ASN1_VALUE **fld, int indent, |
135 | | const ASN1_ITEM *it, |
136 | | const char *fname, const char *sname, |
137 | | int nohdr, const ASN1_PCTX *pctx) |
138 | 8.80M | { |
139 | 8.80M | const ASN1_TEMPLATE *tt; |
140 | 8.80M | const ASN1_EXTERN_FUNCS *ef; |
141 | 8.80M | const ASN1_VALUE **tmpfld; |
142 | 8.80M | const ASN1_AUX *aux = it->funcs; |
143 | 8.80M | ASN1_aux_const_cb *asn1_cb = NULL; |
144 | 8.80M | ASN1_PRINT_ARG parg; |
145 | 8.80M | int i; |
146 | 8.80M | if (aux != NULL) { |
147 | 1.10M | parg.out = out; |
148 | 1.10M | parg.indent = indent; |
149 | 1.10M | parg.pctx = pctx; |
150 | 1.10M | asn1_cb = ((aux->flags & ASN1_AFLG_CONST_CB) != 0) ? aux->asn1_const_cb |
151 | 1.10M | : (ASN1_aux_const_cb *)aux->asn1_cb; /* backward compatibility */ |
152 | 1.10M | } |
153 | | |
154 | 8.80M | if (((it->itype != ASN1_ITYPE_PRIMITIVE) |
155 | 5.93M | || (it->utype != V_ASN1_BOOLEAN)) |
156 | 8.78M | && *fld == NULL) { |
157 | 2.99M | if (pctx->flags & ASN1_PCTX_FLAGS_SHOW_ABSENT) { |
158 | 2.99M | if (!nohdr && !asn1_print_fsname(out, indent, fname, sname, pctx)) |
159 | 0 | return 0; |
160 | 2.99M | if (BIO_puts(out, "<ABSENT>\n") <= 0) |
161 | 0 | return 0; |
162 | 2.99M | } |
163 | 2.99M | return 1; |
164 | 2.99M | } |
165 | | |
166 | 5.80M | switch (it->itype) { |
167 | 4.25M | case ASN1_ITYPE_PRIMITIVE: |
168 | 4.25M | if (it->templates) { |
169 | 107k | if (!asn1_template_print_ctx(out, fld, indent, |
170 | 107k | it->templates, pctx)) |
171 | 5.08k | return 0; |
172 | 102k | break; |
173 | 107k | } |
174 | | /* fall through */ |
175 | 4.21M | case ASN1_ITYPE_MSTRING: |
176 | 4.21M | if (!asn1_primitive_print(out, fld, it, indent, fname, sname, pctx)) |
177 | 36.5k | return 0; |
178 | 4.17M | break; |
179 | | |
180 | 4.17M | case ASN1_ITYPE_EXTERN: |
181 | 143k | if (!nohdr && !asn1_print_fsname(out, indent, fname, sname, pctx)) |
182 | 0 | return 0; |
183 | | /* Use new style print routine if possible */ |
184 | 143k | ef = it->funcs; |
185 | 143k | if (ef && ef->asn1_ex_print) { |
186 | 143k | i = ef->asn1_ex_print(out, fld, indent, "", pctx); |
187 | 143k | if (!i) |
188 | 890 | return 0; |
189 | 142k | if ((i == 2) && (BIO_puts(out, "\n") <= 0)) |
190 | 0 | return 0; |
191 | 142k | return 1; |
192 | 142k | } else if (sname && BIO_printf(out, ":EXTERNAL TYPE %s\n", sname) <= 0) |
193 | 0 | return 0; |
194 | 0 | break; |
195 | | |
196 | 216k | case ASN1_ITYPE_CHOICE: |
197 | | /* CHOICE type, get selector */ |
198 | 216k | i = ossl_asn1_get_choice_selector_const(fld, it); |
199 | | /* This should never happen... */ |
200 | 216k | if ((i < 0) || (i >= it->tcount)) { |
201 | 0 | if (BIO_printf(out, "ERROR: selector [%d] invalid\n", i) <= 0) |
202 | 0 | return 0; |
203 | 0 | return 1; |
204 | 0 | } |
205 | 216k | tt = it->templates + i; |
206 | 216k | tmpfld = ossl_asn1_get_const_field_ptr(fld, tt); |
207 | 216k | if (!asn1_template_print_ctx(out, tmpfld, indent, tt, pctx)) |
208 | 12.7k | return 0; |
209 | 203k | break; |
210 | | |
211 | 1.10M | case ASN1_ITYPE_SEQUENCE: |
212 | 1.12M | case ASN1_ITYPE_NDEF_SEQUENCE: |
213 | 1.12M | if (!nohdr && !asn1_print_fsname(out, indent, fname, sname, pctx)) |
214 | 0 | return 0; |
215 | 1.12M | if (fname || sname) { |
216 | 652k | if (pctx->flags & ASN1_PCTX_FLAGS_SHOW_SEQUENCE) { |
217 | 100k | if (BIO_puts(out, " {\n") <= 0) |
218 | 0 | return 0; |
219 | 552k | } else { |
220 | 552k | if (BIO_puts(out, "\n") <= 0) |
221 | 0 | return 0; |
222 | 552k | } |
223 | 652k | } |
224 | | |
225 | 1.12M | if (asn1_cb) { |
226 | 92.5k | i = asn1_cb(ASN1_OP_PRINT_PRE, fld, it, &parg); |
227 | 92.5k | if (i == 0) |
228 | 0 | return 0; |
229 | 92.5k | if (i == 2) |
230 | 0 | return 1; |
231 | 92.5k | } |
232 | | |
233 | | /* Print each field entry */ |
234 | 6.15M | for (i = 0, tt = it->templates; i < it->tcount; i++, tt++) { |
235 | 5.08M | const ASN1_TEMPLATE *seqtt; |
236 | 5.08M | seqtt = ossl_asn1_do_adb(*fld, tt, 1); |
237 | 5.08M | if (!seqtt) |
238 | 0 | return 0; |
239 | 5.08M | tmpfld = ossl_asn1_get_const_field_ptr(fld, seqtt); |
240 | 5.08M | if (!asn1_template_print_ctx(out, tmpfld, |
241 | 5.08M | indent + 2, seqtt, pctx)) |
242 | 52.6k | return 0; |
243 | 5.08M | } |
244 | 1.07M | if (pctx->flags & ASN1_PCTX_FLAGS_SHOW_SEQUENCE) { |
245 | 198k | if (BIO_printf(out, "%*s}\n", indent, "") < 0) |
246 | 0 | return 0; |
247 | 198k | } |
248 | | |
249 | 1.07M | if (asn1_cb) { |
250 | 66.4k | i = asn1_cb(ASN1_OP_PRINT_POST, fld, it, &parg); |
251 | 66.4k | if (i == 0) |
252 | 0 | return 0; |
253 | 66.4k | } |
254 | 1.07M | break; |
255 | | |
256 | 1.07M | default: |
257 | 0 | BIO_printf(out, "Unprocessed type %d\n", it->itype); |
258 | 0 | return 0; |
259 | 5.80M | } |
260 | | |
261 | 5.55M | return 1; |
262 | 5.80M | } |
263 | | |
264 | | static int asn1_template_print_ctx(BIO *out, const ASN1_VALUE **fld, int indent, |
265 | | const ASN1_TEMPLATE *tt, const ASN1_PCTX *pctx) |
266 | 5.40M | { |
267 | 5.40M | int i, flags; |
268 | 5.40M | const char *sname, *fname; |
269 | 5.40M | const ASN1_VALUE *tfld; |
270 | 5.40M | flags = tt->flags; |
271 | 5.40M | if (pctx->flags & ASN1_PCTX_FLAGS_SHOW_FIELD_STRUCT_NAME) |
272 | 702k | sname = ASN1_ITEM_ptr(tt->item)->sname; |
273 | 4.70M | else |
274 | 4.70M | sname = NULL; |
275 | 5.40M | if (pctx->flags & ASN1_PCTX_FLAGS_NO_FIELD_NAME) |
276 | 0 | fname = NULL; |
277 | 5.40M | else |
278 | 5.40M | fname = tt->field_name; |
279 | | |
280 | | /* |
281 | | * If field is embedded then fld needs fixing so it is a pointer to |
282 | | * a pointer to a field. |
283 | | */ |
284 | 5.40M | if (flags & ASN1_TFLG_EMBED) { |
285 | 68.6k | tfld = (const ASN1_VALUE *)fld; |
286 | 68.6k | fld = &tfld; |
287 | 68.6k | } |
288 | | |
289 | 5.40M | if (flags & ASN1_TFLG_SK_MASK) { |
290 | 584k | char *tname; |
291 | 584k | const ASN1_VALUE *skitem; |
292 | 584k | STACK_OF(const_ASN1_VALUE) *stack; |
293 | | |
294 | | /* SET OF, SEQUENCE OF */ |
295 | 584k | if (fname) { |
296 | 584k | if (pctx->flags & ASN1_PCTX_FLAGS_SHOW_SSOF) { |
297 | 136k | if (flags & ASN1_TFLG_SET_OF) |
298 | 25.2k | tname = "SET"; |
299 | 111k | else |
300 | 111k | tname = "SEQUENCE"; |
301 | 136k | if (BIO_printf(out, "%*s%s OF %s {\n", |
302 | 136k | indent, "", tname, tt->field_name) |
303 | 136k | <= 0) |
304 | 0 | return 0; |
305 | 447k | } else if (BIO_printf(out, "%*s%s:\n", indent, "", fname) <= 0) |
306 | 0 | return 0; |
307 | 584k | } |
308 | 584k | stack = (STACK_OF(const_ASN1_VALUE) *)*fld; |
309 | 4.16M | for (i = 0; i < sk_const_ASN1_VALUE_num(stack); i++) { |
310 | 3.59M | if ((i > 0) && (BIO_puts(out, "\n") <= 0)) |
311 | 0 | return 0; |
312 | | |
313 | 3.59M | skitem = sk_const_ASN1_VALUE_value(stack, i); |
314 | 3.59M | if (!asn1_item_print_ctx(out, &skitem, indent + 2, |
315 | 3.59M | ASN1_ITEM_ptr(tt->item), NULL, NULL, 1, |
316 | 3.59M | pctx)) |
317 | 8.80k | return 0; |
318 | 3.59M | } |
319 | 575k | if (i == 0 && BIO_printf(out, "%*s<%s>\n", indent + 2, "", stack == NULL ? "ABSENT" : "EMPTY") <= 0) |
320 | 0 | return 0; |
321 | 575k | if (pctx->flags & ASN1_PCTX_FLAGS_SHOW_SEQUENCE) { |
322 | 132k | if (BIO_printf(out, "%*s}\n", indent, "") <= 0) |
323 | 0 | return 0; |
324 | 132k | } |
325 | 575k | return 1; |
326 | 575k | } |
327 | 4.82M | return asn1_item_print_ctx(out, fld, indent, ASN1_ITEM_ptr(tt->item), |
328 | 4.82M | fname, sname, 0, pctx); |
329 | 5.40M | } |
330 | | |
331 | | static int asn1_print_fsname(BIO *out, int indent, |
332 | | const char *fname, const char *sname, |
333 | | const ASN1_PCTX *pctx) |
334 | 8.00M | { |
335 | 8.00M | static const char spaces[] = " "; |
336 | 8.00M | static const int nspaces = sizeof(spaces) - 1; |
337 | | |
338 | 8.05M | while (indent > nspaces) { |
339 | 45.7k | if (BIO_write(out, spaces, nspaces) != nspaces) |
340 | 0 | return 0; |
341 | 45.7k | indent -= nspaces; |
342 | 45.7k | } |
343 | 8.00M | if (BIO_write(out, spaces, indent) != indent) |
344 | 0 | return 0; |
345 | 8.00M | if (pctx->flags & ASN1_PCTX_FLAGS_NO_STRUCT_NAME) |
346 | 0 | sname = NULL; |
347 | 8.00M | if (pctx->flags & ASN1_PCTX_FLAGS_NO_FIELD_NAME) |
348 | 0 | fname = NULL; |
349 | 8.00M | if (!sname && !fname) |
350 | 3.04M | return 1; |
351 | 4.95M | if (fname) { |
352 | 4.61M | if (BIO_puts(out, fname) <= 0) |
353 | 0 | return 0; |
354 | 4.61M | } |
355 | 4.95M | if (sname) { |
356 | 891k | if (fname) { |
357 | 555k | if (BIO_printf(out, " (%s)", sname) <= 0) |
358 | 0 | return 0; |
359 | 555k | } else { |
360 | 336k | if (BIO_puts(out, sname) <= 0) |
361 | 0 | return 0; |
362 | 336k | } |
363 | 891k | } |
364 | 4.95M | if (BIO_write(out, ": ", 2) != 2) |
365 | 0 | return 0; |
366 | 4.95M | return 1; |
367 | 4.95M | } |
368 | | |
369 | | static int asn1_print_boolean(BIO *out, int boolval) |
370 | 27.5k | { |
371 | 27.5k | const char *str; |
372 | 27.5k | switch (boolval) { |
373 | 4.32k | case -1: |
374 | 4.32k | str = "BOOL ABSENT"; |
375 | 4.32k | break; |
376 | | |
377 | 12.2k | case 0: |
378 | 12.2k | str = "FALSE"; |
379 | 12.2k | break; |
380 | | |
381 | 10.9k | default: |
382 | 10.9k | str = "TRUE"; |
383 | 10.9k | break; |
384 | 27.5k | } |
385 | | |
386 | 27.5k | if (BIO_puts(out, str) <= 0) |
387 | 0 | return 0; |
388 | 27.5k | return 1; |
389 | 27.5k | } |
390 | | |
391 | | static int asn1_print_integer(BIO *out, const ASN1_INTEGER *str) |
392 | 2.88M | { |
393 | 2.88M | char *s; |
394 | 2.88M | int ret = 1; |
395 | 2.88M | s = i2s_ASN1_INTEGER(NULL, str); |
396 | 2.88M | if (s == NULL) |
397 | 465 | return 0; |
398 | 2.88M | if (BIO_puts(out, s) <= 0) |
399 | 0 | ret = 0; |
400 | 2.88M | OPENSSL_free(s); |
401 | 2.88M | return ret; |
402 | 2.88M | } |
403 | | |
404 | | static int asn1_print_oid(BIO *out, const ASN1_OBJECT *oid) |
405 | 365k | { |
406 | 365k | char objbuf[80]; |
407 | 365k | const char *ln; |
408 | 365k | ln = OBJ_nid2ln(OBJ_obj2nid(oid)); |
409 | 365k | if (!ln) |
410 | 0 | ln = ""; |
411 | 365k | OBJ_obj2txt(objbuf, sizeof(objbuf), oid, 1); |
412 | 365k | if (BIO_printf(out, "%s (%s)", ln, objbuf) <= 0) |
413 | 0 | return 0; |
414 | 365k | return 1; |
415 | 365k | } |
416 | | |
417 | | static int asn1_print_obstring(BIO *out, const ASN1_STRING *str, int indent) |
418 | 227k | { |
419 | 227k | if (str->type == V_ASN1_BIT_STRING) { |
420 | 113k | if (BIO_printf(out, " (%ld unused bits)\n", str->flags & 0x7) <= 0) |
421 | 0 | return 0; |
422 | 114k | } else if (BIO_puts(out, "\n") <= 0) |
423 | 0 | return 0; |
424 | 227k | if ((str->length > 0) |
425 | 137k | && BIO_dump_indent(out, (const char *)str->data, str->length, |
426 | 137k | indent + 2) |
427 | 137k | <= 0) |
428 | 0 | return 0; |
429 | 227k | return 1; |
430 | 227k | } |
431 | | |
432 | | static int asn1_primitive_print(BIO *out, const ASN1_VALUE **fld, |
433 | | const ASN1_ITEM *it, int indent, |
434 | | const char *fname, const char *sname, |
435 | | const ASN1_PCTX *pctx) |
436 | 4.21M | { |
437 | 4.21M | long utype; |
438 | 4.21M | ASN1_STRING *str; |
439 | 4.21M | int ret = 1, needlf = 1; |
440 | 4.21M | const char *pname; |
441 | 4.21M | const ASN1_PRIMITIVE_FUNCS *pf; |
442 | 4.21M | pf = it->funcs; |
443 | 4.21M | if (!asn1_print_fsname(out, indent, fname, sname, pctx)) |
444 | 0 | return 0; |
445 | 4.21M | if (pf && pf->prim_print) |
446 | 122k | return pf->prim_print(out, fld, it, indent, pctx); |
447 | 4.08M | if (it->itype == ASN1_ITYPE_MSTRING) { |
448 | 58.6k | str = (ASN1_STRING *)*fld; |
449 | 58.6k | utype = str->type & ~V_ASN1_NEG; |
450 | 4.02M | } else { |
451 | 4.02M | utype = it->utype; |
452 | 4.02M | if (utype == V_ASN1_BOOLEAN) |
453 | 22.6k | str = NULL; |
454 | 4.00M | else |
455 | 4.00M | str = (ASN1_STRING *)*fld; |
456 | 4.02M | } |
457 | 4.08M | if (utype == V_ASN1_ANY) { |
458 | 569k | const ASN1_TYPE *atype = (const ASN1_TYPE *)*fld; |
459 | 569k | utype = atype->type; |
460 | 569k | fld = (const ASN1_VALUE **)&atype->value.asn1_value; /* actually is const */ |
461 | 569k | str = (ASN1_STRING *)*fld; |
462 | 569k | if (pctx->flags & ASN1_PCTX_FLAGS_NO_ANY_TYPE) |
463 | 0 | pname = NULL; |
464 | 569k | else |
465 | 569k | pname = ASN1_tag2str(utype); |
466 | 3.51M | } else { |
467 | 3.51M | if (pctx->flags & ASN1_PCTX_FLAGS_SHOW_TYPE) |
468 | 339k | pname = ASN1_tag2str(utype); |
469 | 3.17M | else |
470 | 3.17M | pname = NULL; |
471 | 3.51M | } |
472 | | |
473 | 4.08M | if (utype == V_ASN1_NULL) { |
474 | 27.9k | if (BIO_puts(out, "NULL\n") <= 0) |
475 | 0 | return 0; |
476 | 27.9k | return 1; |
477 | 27.9k | } |
478 | | |
479 | 4.06M | if (pname) { |
480 | 882k | if (BIO_puts(out, pname) <= 0) |
481 | 0 | return 0; |
482 | 882k | if (BIO_puts(out, ":") <= 0) |
483 | 0 | return 0; |
484 | 882k | } |
485 | | |
486 | 4.06M | switch (utype) { |
487 | 27.5k | case V_ASN1_BOOLEAN: { |
488 | 27.5k | int boolval = *(int *)fld; |
489 | 27.5k | if (boolval == -1) |
490 | 4.32k | boolval = it->size; |
491 | 27.5k | ret = asn1_print_boolean(out, boolval); |
492 | 27.5k | } break; |
493 | | |
494 | 2.88M | case V_ASN1_INTEGER: |
495 | 2.88M | case V_ASN1_ENUMERATED: |
496 | 2.88M | ret = asn1_print_integer(out, str); |
497 | 2.88M | break; |
498 | | |
499 | 17.6k | case V_ASN1_UTCTIME: |
500 | 17.6k | ret = ASN1_UTCTIME_print(out, str); |
501 | 17.6k | break; |
502 | | |
503 | 17.7k | case V_ASN1_GENERALIZEDTIME: |
504 | 17.7k | ret = ASN1_GENERALIZEDTIME_print(out, str); |
505 | 17.7k | break; |
506 | | |
507 | 365k | case V_ASN1_OBJECT: |
508 | 365k | ret = asn1_print_oid(out, (const ASN1_OBJECT *)*fld); |
509 | 365k | break; |
510 | | |
511 | 114k | case V_ASN1_OCTET_STRING: |
512 | 227k | case V_ASN1_BIT_STRING: |
513 | 227k | ret = asn1_print_obstring(out, str, indent); |
514 | 227k | needlf = 0; |
515 | 227k | break; |
516 | | |
517 | 308k | case V_ASN1_SEQUENCE: |
518 | 372k | case V_ASN1_SET: |
519 | 448k | case V_ASN1_OTHER: |
520 | 448k | if (BIO_puts(out, "\n") <= 0) |
521 | 0 | return 0; |
522 | 448k | if (ASN1_parse_dump(out, str->data, str->length, indent, 0) <= 0) |
523 | 16.2k | ret = 0; |
524 | 448k | needlf = 0; |
525 | 448k | break; |
526 | | |
527 | 74.4k | default: |
528 | 74.4k | ret = ASN1_STRING_print_ex(out, str, pctx->str_flags); |
529 | 4.06M | } |
530 | 4.06M | if (!ret) |
531 | 36.5k | return 0; |
532 | 4.02M | if (needlf && BIO_puts(out, "\n") <= 0) |
533 | 0 | return 0; |
534 | 4.02M | return 1; |
535 | 4.02M | } |