/src/openssl30/crypto/asn1/tasn_prn.c
Line | Count | Source (jump to first uncovered line) |
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 | 12 | { |
37 | 12 | ASN1_PCTX *ret; |
38 | | |
39 | 12 | ret = OPENSSL_zalloc(sizeof(*ret)); |
40 | 12 | if (ret == NULL) { |
41 | 0 | ERR_raise(ERR_LIB_ASN1, ERR_R_MALLOC_FAILURE); |
42 | 0 | return NULL; |
43 | 0 | } |
44 | 12 | return ret; |
45 | 12 | } |
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 | 12 | { |
59 | 12 | p->flags = flags; |
60 | 12 | } |
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 | 12 | { |
99 | 12 | p->str_flags = flags; |
100 | 12 | } |
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 | 278k | { |
124 | 278k | const char *sname; |
125 | 278k | if (pctx == NULL) |
126 | 28.3k | pctx = &default_pctx; |
127 | 278k | if (pctx->flags & ASN1_PCTX_FLAGS_NO_STRUCT_NAME) |
128 | 0 | sname = NULL; |
129 | 278k | else |
130 | 278k | sname = it->sname; |
131 | 278k | return asn1_item_print_ctx(out, &ifld, indent, it, NULL, sname, 0, pctx); |
132 | 278k | } |
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 | 3.63M | { |
139 | 3.63M | const ASN1_TEMPLATE *tt; |
140 | 3.63M | const ASN1_EXTERN_FUNCS *ef; |
141 | 3.63M | const ASN1_VALUE **tmpfld; |
142 | 3.63M | const ASN1_AUX *aux = it->funcs; |
143 | 3.63M | ASN1_aux_const_cb *asn1_cb = NULL; |
144 | 3.63M | ASN1_PRINT_ARG parg; |
145 | 3.63M | int i; |
146 | 3.63M | if (aux != NULL) { |
147 | 487k | parg.out = out; |
148 | 487k | parg.indent = indent; |
149 | 487k | parg.pctx = pctx; |
150 | 487k | asn1_cb = ((aux->flags & ASN1_AFLG_CONST_CB) != 0) ? aux->asn1_const_cb |
151 | 487k | : (ASN1_aux_const_cb *)aux->asn1_cb; /* backward compatibility */ |
152 | 487k | } |
153 | | |
154 | 3.63M | if (((it->itype != ASN1_ITYPE_PRIMITIVE) |
155 | 3.63M | || (it->utype != V_ASN1_BOOLEAN)) && *fld == NULL) { |
156 | 1.11M | if (pctx->flags & ASN1_PCTX_FLAGS_SHOW_ABSENT) { |
157 | 1.11M | if (!nohdr && !asn1_print_fsname(out, indent, fname, sname, pctx)) |
158 | 0 | return 0; |
159 | 1.11M | if (BIO_puts(out, "<ABSENT>\n") <= 0) |
160 | 0 | return 0; |
161 | 1.11M | } |
162 | 1.11M | return 1; |
163 | 1.11M | } |
164 | | |
165 | 2.51M | switch (it->itype) { |
166 | 1.60M | case ASN1_ITYPE_PRIMITIVE: |
167 | 1.60M | if (it->templates) { |
168 | 66.0k | if (!asn1_template_print_ctx(out, fld, indent, |
169 | 66.0k | it->templates, pctx)) |
170 | 4.61k | return 0; |
171 | 61.4k | break; |
172 | 66.0k | } |
173 | | /* fall through */ |
174 | 1.57M | case ASN1_ITYPE_MSTRING: |
175 | 1.57M | if (!asn1_primitive_print(out, fld, it, indent, fname, sname, pctx)) |
176 | 25.9k | return 0; |
177 | 1.55M | break; |
178 | | |
179 | 1.55M | case ASN1_ITYPE_EXTERN: |
180 | 100k | if (!nohdr && !asn1_print_fsname(out, indent, fname, sname, pctx)) |
181 | 0 | return 0; |
182 | | /* Use new style print routine if possible */ |
183 | 100k | ef = it->funcs; |
184 | 100k | if (ef && ef->asn1_ex_print) { |
185 | 100k | i = ef->asn1_ex_print(out, fld, indent, "", pctx); |
186 | 100k | if (!i) |
187 | 841 | return 0; |
188 | 99.5k | if ((i == 2) && (BIO_puts(out, "\n") <= 0)) |
189 | 0 | return 0; |
190 | 99.5k | return 1; |
191 | 99.5k | } else if (sname && |
192 | 0 | BIO_printf(out, ":EXTERNAL TYPE %s\n", sname) <= 0) |
193 | 0 | return 0; |
194 | 0 | break; |
195 | | |
196 | 184k | case ASN1_ITYPE_CHOICE: |
197 | | /* CHOICE type, get selector */ |
198 | 184k | i = ossl_asn1_get_choice_selector_const(fld, it); |
199 | | /* This should never happen... */ |
200 | 184k | 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 | 184k | tt = it->templates + i; |
206 | 184k | tmpfld = ossl_asn1_get_const_field_ptr(fld, tt); |
207 | 184k | if (!asn1_template_print_ctx(out, tmpfld, indent, tt, pctx)) |
208 | 11.4k | return 0; |
209 | 172k | break; |
210 | | |
211 | 568k | case ASN1_ITYPE_SEQUENCE: |
212 | 584k | case ASN1_ITYPE_NDEF_SEQUENCE: |
213 | 584k | if (!nohdr && !asn1_print_fsname(out, indent, fname, sname, pctx)) |
214 | 0 | return 0; |
215 | 584k | if (fname || sname) { |
216 | 363k | if (pctx->flags & ASN1_PCTX_FLAGS_SHOW_SEQUENCE) { |
217 | 71.4k | if (BIO_puts(out, " {\n") <= 0) |
218 | 0 | return 0; |
219 | 291k | } else { |
220 | 291k | if (BIO_puts(out, "\n") <= 0) |
221 | 0 | return 0; |
222 | 291k | } |
223 | 363k | } |
224 | | |
225 | 584k | if (asn1_cb) { |
226 | 74.2k | i = asn1_cb(ASN1_OP_PRINT_PRE, fld, it, &parg); |
227 | 74.2k | if (i == 0) |
228 | 0 | return 0; |
229 | 74.2k | if (i == 2) |
230 | 0 | return 1; |
231 | 74.2k | } |
232 | | |
233 | | /* Print each field entry */ |
234 | 2.92M | for (i = 0, tt = it->templates; i < it->tcount; i++, tt++) { |
235 | 2.37M | const ASN1_TEMPLATE *seqtt; |
236 | 2.37M | seqtt = ossl_asn1_do_adb(*fld, tt, 1); |
237 | 2.37M | if (!seqtt) |
238 | 0 | return 0; |
239 | 2.37M | tmpfld = ossl_asn1_get_const_field_ptr(fld, seqtt); |
240 | 2.37M | if (!asn1_template_print_ctx(out, tmpfld, |
241 | 2.37M | indent + 2, seqtt, pctx)) |
242 | 36.9k | return 0; |
243 | 2.37M | } |
244 | 547k | if (pctx->flags & ASN1_PCTX_FLAGS_SHOW_SEQUENCE) { |
245 | 153k | if (BIO_printf(out, "%*s}\n", indent, "") < 0) |
246 | 0 | return 0; |
247 | 153k | } |
248 | | |
249 | 547k | if (asn1_cb) { |
250 | 55.2k | i = asn1_cb(ASN1_OP_PRINT_POST, fld, it, &parg); |
251 | 55.2k | if (i == 0) |
252 | 0 | return 0; |
253 | 55.2k | } |
254 | 547k | break; |
255 | | |
256 | 547k | default: |
257 | 0 | BIO_printf(out, "Unprocessed type %d\n", it->itype); |
258 | 0 | return 0; |
259 | 2.51M | } |
260 | | |
261 | 2.33M | return 1; |
262 | 2.51M | } |
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 | 2.63M | { |
267 | 2.63M | int i, flags; |
268 | 2.63M | const char *sname, *fname; |
269 | 2.63M | const ASN1_VALUE *tfld; |
270 | 2.63M | flags = tt->flags; |
271 | 2.63M | if (pctx->flags & ASN1_PCTX_FLAGS_SHOW_FIELD_STRUCT_NAME) |
272 | 532k | sname = ASN1_ITEM_ptr(tt->item)->sname; |
273 | 2.09M | else |
274 | 2.09M | sname = NULL; |
275 | 2.63M | if (pctx->flags & ASN1_PCTX_FLAGS_NO_FIELD_NAME) |
276 | 0 | fname = NULL; |
277 | 2.63M | else |
278 | 2.63M | 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 | 2.63M | if (flags & ASN1_TFLG_EMBED) { |
285 | 43.7k | tfld = (const ASN1_VALUE *)fld; |
286 | 43.7k | fld = &tfld; |
287 | 43.7k | } |
288 | | |
289 | 2.63M | if (flags & ASN1_TFLG_SK_MASK) { |
290 | 318k | char *tname; |
291 | 318k | const ASN1_VALUE *skitem; |
292 | 318k | STACK_OF(const_ASN1_VALUE) *stack; |
293 | | |
294 | | /* SET OF, SEQUENCE OF */ |
295 | 318k | if (fname) { |
296 | 318k | if (pctx->flags & ASN1_PCTX_FLAGS_SHOW_SSOF) { |
297 | 96.8k | if (flags & ASN1_TFLG_SET_OF) |
298 | 18.1k | tname = "SET"; |
299 | 78.6k | else |
300 | 78.6k | tname = "SEQUENCE"; |
301 | 96.8k | if (BIO_printf(out, "%*s%s OF %s {\n", |
302 | 96.8k | indent, "", tname, tt->field_name) <= 0) |
303 | 0 | return 0; |
304 | 222k | } else if (BIO_printf(out, "%*s%s:\n", indent, "", fname) <= 0) |
305 | 0 | return 0; |
306 | 318k | } |
307 | 318k | stack = (STACK_OF(const_ASN1_VALUE) *)*fld; |
308 | 1.35M | for (i = 0; i < sk_const_ASN1_VALUE_num(stack); i++) { |
309 | 1.04M | if ((i > 0) && (BIO_puts(out, "\n") <= 0)) |
310 | 0 | return 0; |
311 | | |
312 | 1.04M | skitem = sk_const_ASN1_VALUE_value(stack, i); |
313 | 1.04M | if (!asn1_item_print_ctx(out, &skitem, indent + 2, |
314 | 1.04M | ASN1_ITEM_ptr(tt->item), NULL, NULL, 1, |
315 | 1.04M | pctx)) |
316 | 6.86k | return 0; |
317 | 1.04M | } |
318 | 312k | if (i == 0 && BIO_printf(out, "%*s<%s>\n", indent + 2, "", |
319 | 262k | stack == NULL ? "ABSENT" : "EMPTY") <= 0) |
320 | 0 | return 0; |
321 | 312k | if (pctx->flags & ASN1_PCTX_FLAGS_SHOW_SEQUENCE) { |
322 | 93.7k | if (BIO_printf(out, "%*s}\n", indent, "") <= 0) |
323 | 0 | return 0; |
324 | 93.7k | } |
325 | 312k | return 1; |
326 | 312k | } |
327 | 2.31M | return asn1_item_print_ctx(out, fld, indent, ASN1_ITEM_ptr(tt->item), |
328 | 2.31M | fname, sname, 0, pctx); |
329 | 2.63M | } |
330 | | |
331 | | static int asn1_print_fsname(BIO *out, int indent, |
332 | | const char *fname, const char *sname, |
333 | | const ASN1_PCTX *pctx) |
334 | 3.16M | { |
335 | 3.16M | static const char spaces[] = " "; |
336 | 3.16M | static const int nspaces = sizeof(spaces) - 1; |
337 | | |
338 | 3.20M | while (indent > nspaces) { |
339 | 39.8k | if (BIO_write(out, spaces, nspaces) != nspaces) |
340 | 0 | return 0; |
341 | 39.8k | indent -= nspaces; |
342 | 39.8k | } |
343 | 3.16M | if (BIO_write(out, spaces, indent) != indent) |
344 | 0 | return 0; |
345 | 3.16M | if (pctx->flags & ASN1_PCTX_FLAGS_NO_STRUCT_NAME) |
346 | 0 | sname = NULL; |
347 | 3.16M | if (pctx->flags & ASN1_PCTX_FLAGS_NO_FIELD_NAME) |
348 | 0 | fname = NULL; |
349 | 3.16M | if (!sname && !fname) |
350 | 769k | return 1; |
351 | 2.39M | if (fname) { |
352 | 2.15M | if (BIO_puts(out, fname) <= 0) |
353 | 0 | return 0; |
354 | 2.15M | } |
355 | 2.39M | if (sname) { |
356 | 667k | if (fname) { |
357 | 427k | if (BIO_printf(out, " (%s)", sname) <= 0) |
358 | 0 | return 0; |
359 | 427k | } else { |
360 | 240k | if (BIO_puts(out, sname) <= 0) |
361 | 0 | return 0; |
362 | 240k | } |
363 | 667k | } |
364 | 2.39M | if (BIO_write(out, ": ", 2) != 2) |
365 | 0 | return 0; |
366 | 2.39M | return 1; |
367 | 2.39M | } |
368 | | |
369 | | static int asn1_print_boolean(BIO *out, int boolval) |
370 | 20.5k | { |
371 | 20.5k | const char *str; |
372 | 20.5k | switch (boolval) { |
373 | 5.99k | case -1: |
374 | 5.99k | str = "BOOL ABSENT"; |
375 | 5.99k | break; |
376 | | |
377 | 6.21k | case 0: |
378 | 6.21k | str = "FALSE"; |
379 | 6.21k | break; |
380 | | |
381 | 8.37k | default: |
382 | 8.37k | str = "TRUE"; |
383 | 8.37k | break; |
384 | | |
385 | 20.5k | } |
386 | | |
387 | 20.5k | if (BIO_puts(out, str) <= 0) |
388 | 0 | return 0; |
389 | 20.5k | return 1; |
390 | | |
391 | 20.5k | } |
392 | | |
393 | | static int asn1_print_integer(BIO *out, const ASN1_INTEGER *str) |
394 | 629k | { |
395 | 629k | char *s; |
396 | 629k | int ret = 1; |
397 | 629k | s = i2s_ASN1_INTEGER(NULL, str); |
398 | 629k | if (s == NULL) |
399 | 301 | return 0; |
400 | 629k | if (BIO_puts(out, s) <= 0) |
401 | 0 | ret = 0; |
402 | 629k | OPENSSL_free(s); |
403 | 629k | return ret; |
404 | 629k | } |
405 | | |
406 | | static int asn1_print_oid(BIO *out, const ASN1_OBJECT *oid) |
407 | 236k | { |
408 | 236k | char objbuf[80]; |
409 | 236k | const char *ln; |
410 | 236k | ln = OBJ_nid2ln(OBJ_obj2nid(oid)); |
411 | 236k | if (!ln) |
412 | 0 | ln = ""; |
413 | 236k | OBJ_obj2txt(objbuf, sizeof(objbuf), oid, 1); |
414 | 236k | if (BIO_printf(out, "%s (%s)", ln, objbuf) <= 0) |
415 | 0 | return 0; |
416 | 236k | return 1; |
417 | 236k | } |
418 | | |
419 | | static int asn1_print_obstring(BIO *out, const ASN1_STRING *str, int indent) |
420 | 171k | { |
421 | 171k | if (str->type == V_ASN1_BIT_STRING) { |
422 | 83.0k | if (BIO_printf(out, " (%ld unused bits)\n", str->flags & 0x7) <= 0) |
423 | 0 | return 0; |
424 | 88.2k | } else if (BIO_puts(out, "\n") <= 0) |
425 | 0 | return 0; |
426 | 171k | if ((str->length > 0) |
427 | 171k | && BIO_dump_indent(out, (const char *)str->data, str->length, |
428 | 85.1k | indent + 2) <= 0) |
429 | 0 | return 0; |
430 | 171k | return 1; |
431 | 171k | } |
432 | | |
433 | | static int asn1_primitive_print(BIO *out, const ASN1_VALUE **fld, |
434 | | const ASN1_ITEM *it, int indent, |
435 | | const char *fname, const char *sname, |
436 | | const ASN1_PCTX *pctx) |
437 | 1.57M | { |
438 | 1.57M | long utype; |
439 | 1.57M | ASN1_STRING *str; |
440 | 1.57M | int ret = 1, needlf = 1; |
441 | 1.57M | const char *pname; |
442 | 1.57M | const ASN1_PRIMITIVE_FUNCS *pf; |
443 | 1.57M | pf = it->funcs; |
444 | 1.57M | if (!asn1_print_fsname(out, indent, fname, sname, pctx)) |
445 | 0 | return 0; |
446 | 1.57M | if (pf && pf->prim_print) |
447 | 103k | return pf->prim_print(out, fld, it, indent, pctx); |
448 | 1.47M | if (it->itype == ASN1_ITYPE_MSTRING) { |
449 | 39.1k | str = (ASN1_STRING *)*fld; |
450 | 39.1k | utype = str->type & ~V_ASN1_NEG; |
451 | 1.43M | } else { |
452 | 1.43M | utype = it->utype; |
453 | 1.43M | if (utype == V_ASN1_BOOLEAN) |
454 | 14.7k | str = NULL; |
455 | 1.42M | else |
456 | 1.42M | str = (ASN1_STRING *)*fld; |
457 | 1.43M | } |
458 | 1.47M | if (utype == V_ASN1_ANY) { |
459 | 377k | const ASN1_TYPE *atype = (const ASN1_TYPE *)*fld; |
460 | 377k | utype = atype->type; |
461 | 377k | fld = (const ASN1_VALUE **)&atype->value.asn1_value; /* actually is const */ |
462 | 377k | str = (ASN1_STRING *)*fld; |
463 | 377k | if (pctx->flags & ASN1_PCTX_FLAGS_NO_ANY_TYPE) |
464 | 0 | pname = NULL; |
465 | 377k | else |
466 | 377k | pname = ASN1_tag2str(utype); |
467 | 1.09M | } else { |
468 | 1.09M | if (pctx->flags & ASN1_PCTX_FLAGS_SHOW_TYPE) |
469 | 252k | pname = ASN1_tag2str(utype); |
470 | 844k | else |
471 | 844k | pname = NULL; |
472 | 1.09M | } |
473 | | |
474 | 1.47M | if (utype == V_ASN1_NULL) { |
475 | 20.8k | if (BIO_puts(out, "NULL\n") <= 0) |
476 | 0 | return 0; |
477 | 20.8k | return 1; |
478 | 20.8k | } |
479 | | |
480 | 1.45M | if (pname) { |
481 | 609k | if (BIO_puts(out, pname) <= 0) |
482 | 0 | return 0; |
483 | 609k | if (BIO_puts(out, ":") <= 0) |
484 | 0 | return 0; |
485 | 609k | } |
486 | | |
487 | 1.45M | switch (utype) { |
488 | 20.5k | case V_ASN1_BOOLEAN: |
489 | 20.5k | { |
490 | 20.5k | int boolval = *(int *)fld; |
491 | 20.5k | if (boolval == -1) |
492 | 5.99k | boolval = it->size; |
493 | 20.5k | ret = asn1_print_boolean(out, boolval); |
494 | 20.5k | } |
495 | 20.5k | break; |
496 | | |
497 | 629k | case V_ASN1_INTEGER: |
498 | 629k | case V_ASN1_ENUMERATED: |
499 | 629k | ret = asn1_print_integer(out, str); |
500 | 629k | break; |
501 | | |
502 | 13.4k | case V_ASN1_UTCTIME: |
503 | 13.4k | ret = ASN1_UTCTIME_print(out, str); |
504 | 13.4k | break; |
505 | | |
506 | 10.7k | case V_ASN1_GENERALIZEDTIME: |
507 | 10.7k | ret = ASN1_GENERALIZEDTIME_print(out, str); |
508 | 10.7k | break; |
509 | | |
510 | 236k | case V_ASN1_OBJECT: |
511 | 236k | ret = asn1_print_oid(out, (const ASN1_OBJECT *)*fld); |
512 | 236k | break; |
513 | | |
514 | 88.2k | case V_ASN1_OCTET_STRING: |
515 | 171k | case V_ASN1_BIT_STRING: |
516 | 171k | ret = asn1_print_obstring(out, str, indent); |
517 | 171k | needlf = 0; |
518 | 171k | break; |
519 | | |
520 | 216k | case V_ASN1_SEQUENCE: |
521 | 243k | case V_ASN1_SET: |
522 | 303k | case V_ASN1_OTHER: |
523 | 303k | if (BIO_puts(out, "\n") <= 0) |
524 | 0 | return 0; |
525 | 303k | if (ASN1_parse_dump(out, str->data, str->length, indent, 0) <= 0) |
526 | 11.4k | ret = 0; |
527 | 303k | needlf = 0; |
528 | 303k | break; |
529 | | |
530 | 68.4k | default: |
531 | 68.4k | ret = ASN1_STRING_print_ex(out, str, pctx->str_flags); |
532 | | |
533 | 1.45M | } |
534 | 1.45M | if (!ret) |
535 | 25.9k | return 0; |
536 | 1.42M | if (needlf && BIO_puts(out, "\n") <= 0) |
537 | 0 | return 0; |
538 | 1.42M | return 1; |
539 | 1.42M | } |