/src/openssl111/crypto/asn1/tasn_enc.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright 2000-2020 The OpenSSL Project Authors. All Rights Reserved. |
3 | | * |
4 | | * Licensed under the OpenSSL license (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 <string.h> |
12 | | #include "internal/cryptlib.h" |
13 | | #include <openssl/asn1.h> |
14 | | #include <openssl/asn1t.h> |
15 | | #include <openssl/objects.h> |
16 | | #include "crypto/asn1.h" |
17 | | #include "asn1_local.h" |
18 | | |
19 | | static int asn1_i2d_ex_primitive(ASN1_VALUE **pval, unsigned char **out, |
20 | | const ASN1_ITEM *it, int tag, int aclass); |
21 | | static int asn1_set_seq_out(STACK_OF(ASN1_VALUE) *sk, unsigned char **out, |
22 | | int skcontlen, const ASN1_ITEM *item, |
23 | | int do_sort, int iclass); |
24 | | static int asn1_template_ex_i2d(ASN1_VALUE **pval, unsigned char **out, |
25 | | const ASN1_TEMPLATE *tt, int tag, int aclass); |
26 | | static int asn1_item_flags_i2d(ASN1_VALUE *val, unsigned char **out, |
27 | | const ASN1_ITEM *it, int flags); |
28 | | static int asn1_ex_i2c(ASN1_VALUE **pval, unsigned char *cout, int *putype, |
29 | | const ASN1_ITEM *it); |
30 | | |
31 | | /* |
32 | | * Top level i2d equivalents: the 'ndef' variant instructs the encoder to use |
33 | | * indefinite length constructed encoding, where appropriate |
34 | | */ |
35 | | |
36 | | int ASN1_item_ndef_i2d(ASN1_VALUE *val, unsigned char **out, |
37 | | const ASN1_ITEM *it) |
38 | 0 | { |
39 | 0 | return asn1_item_flags_i2d(val, out, it, ASN1_TFLG_NDEF); |
40 | 0 | } |
41 | | |
42 | | int ASN1_item_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it) |
43 | 10.7k | { |
44 | 10.7k | return asn1_item_flags_i2d(val, out, it, 0); |
45 | 10.7k | } |
46 | | |
47 | | /* |
48 | | * Encode an ASN1 item, this is use by the standard 'i2d' function. 'out' |
49 | | * points to a buffer to output the data to. The new i2d has one additional |
50 | | * feature. If the output buffer is NULL (i.e. *out == NULL) then a buffer is |
51 | | * allocated and populated with the encoding. |
52 | | */ |
53 | | |
54 | | static int asn1_item_flags_i2d(ASN1_VALUE *val, unsigned char **out, |
55 | | const ASN1_ITEM *it, int flags) |
56 | 10.7k | { |
57 | 10.7k | if (out && !*out) { |
58 | 5.11k | unsigned char *p, *buf; |
59 | 5.11k | int len; |
60 | | |
61 | 5.11k | len = ASN1_item_ex_i2d(&val, NULL, it, -1, flags); |
62 | 5.11k | if (len <= 0) |
63 | 0 | return len; |
64 | 5.11k | if ((buf = OPENSSL_malloc(len)) == NULL) { |
65 | 0 | ASN1err(ASN1_F_ASN1_ITEM_FLAGS_I2D, ERR_R_MALLOC_FAILURE); |
66 | 0 | return -1; |
67 | 0 | } |
68 | 5.11k | p = buf; |
69 | 5.11k | ASN1_item_ex_i2d(&val, &p, it, -1, flags); |
70 | 5.11k | *out = buf; |
71 | 5.11k | return len; |
72 | 5.11k | } |
73 | | |
74 | 5.62k | return ASN1_item_ex_i2d(&val, out, it, -1, flags); |
75 | 10.7k | } |
76 | | |
77 | | /* |
78 | | * Encode an item, taking care of IMPLICIT tagging (if any). This function |
79 | | * performs the normal item handling: it can be used in external types. |
80 | | */ |
81 | | |
82 | | int ASN1_item_ex_i2d(ASN1_VALUE **pval, unsigned char **out, |
83 | | const ASN1_ITEM *it, int tag, int aclass) |
84 | 4.58M | { |
85 | 4.58M | const ASN1_TEMPLATE *tt = NULL; |
86 | 4.58M | int i, seqcontlen, seqlen, ndef = 1; |
87 | 4.58M | const ASN1_EXTERN_FUNCS *ef; |
88 | 4.58M | const ASN1_AUX *aux = it->funcs; |
89 | 4.58M | ASN1_aux_cb *asn1_cb = 0; |
90 | | |
91 | 4.58M | if ((it->itype != ASN1_ITYPE_PRIMITIVE) && !*pval) |
92 | 0 | return 0; |
93 | | |
94 | 4.58M | if (aux && aux->asn1_cb) |
95 | 10.2k | asn1_cb = aux->asn1_cb; |
96 | | |
97 | 4.58M | switch (it->itype) { |
98 | | |
99 | 2.00M | case ASN1_ITYPE_PRIMITIVE: |
100 | 2.00M | if (it->templates) |
101 | 492k | return asn1_template_ex_i2d(pval, out, it->templates, |
102 | 492k | tag, aclass); |
103 | 1.51M | return asn1_i2d_ex_primitive(pval, out, it, tag, aclass); |
104 | | |
105 | 1.45M | case ASN1_ITYPE_MSTRING: |
106 | | /* |
107 | | * It never makes sense for multi-strings to have implicit tagging, so |
108 | | * if tag != -1, then this looks like an error in the template. |
109 | | */ |
110 | 1.45M | if (tag != -1) { |
111 | 0 | ASN1err(ASN1_F_ASN1_ITEM_EX_I2D, ASN1_R_BAD_TEMPLATE); |
112 | 0 | return -1; |
113 | 0 | } |
114 | 1.45M | return asn1_i2d_ex_primitive(pval, out, it, -1, aclass); |
115 | | |
116 | 0 | case ASN1_ITYPE_CHOICE: |
117 | | /* |
118 | | * It never makes sense for CHOICE types to have implicit tagging, so |
119 | | * if tag != -1, then this looks like an error in the template. |
120 | | */ |
121 | 0 | if (tag != -1) { |
122 | 0 | ASN1err(ASN1_F_ASN1_ITEM_EX_I2D, ASN1_R_BAD_TEMPLATE); |
123 | 0 | return -1; |
124 | 0 | } |
125 | 0 | if (asn1_cb && !asn1_cb(ASN1_OP_I2D_PRE, pval, it, NULL)) |
126 | 0 | return 0; |
127 | 0 | i = asn1_get_choice_selector(pval, it); |
128 | 0 | if ((i >= 0) && (i < it->tcount)) { |
129 | 0 | ASN1_VALUE **pchval; |
130 | 0 | const ASN1_TEMPLATE *chtt; |
131 | 0 | chtt = it->templates + i; |
132 | 0 | pchval = asn1_get_field_ptr(pval, chtt); |
133 | 0 | return asn1_template_ex_i2d(pchval, out, chtt, -1, aclass); |
134 | 0 | } |
135 | | /* Fixme: error condition if selector out of range */ |
136 | 0 | if (asn1_cb && !asn1_cb(ASN1_OP_I2D_POST, pval, it, NULL)) |
137 | 0 | return 0; |
138 | 0 | break; |
139 | | |
140 | 0 | case ASN1_ITYPE_EXTERN: |
141 | | /* If new style i2d it does all the work */ |
142 | 0 | ef = it->funcs; |
143 | 0 | return ef->asn1_ex_i2d(pval, out, it, tag, aclass); |
144 | | |
145 | 0 | case ASN1_ITYPE_NDEF_SEQUENCE: |
146 | | /* Use indefinite length constructed if requested */ |
147 | 0 | if (aclass & ASN1_TFLG_NDEF) |
148 | 0 | ndef = 2; |
149 | | /* fall through */ |
150 | |
|
151 | 1.12M | case ASN1_ITYPE_SEQUENCE: |
152 | 1.12M | i = asn1_enc_restore(&seqcontlen, out, pval, it); |
153 | | /* An error occurred */ |
154 | 1.12M | if (i < 0) |
155 | 0 | return 0; |
156 | | /* We have a valid cached encoding... */ |
157 | 1.12M | if (i > 0) |
158 | 15.3k | return seqcontlen; |
159 | | /* Otherwise carry on */ |
160 | 1.11M | seqcontlen = 0; |
161 | | /* If no IMPLICIT tagging set to SEQUENCE, UNIVERSAL */ |
162 | 1.11M | if (tag == -1) { |
163 | 1.11M | tag = V_ASN1_SEQUENCE; |
164 | | /* Retain any other flags in aclass */ |
165 | 1.11M | aclass = (aclass & ~ASN1_TFLG_TAG_CLASS) |
166 | 1.11M | | V_ASN1_UNIVERSAL; |
167 | 1.11M | } |
168 | 1.11M | if (asn1_cb && !asn1_cb(ASN1_OP_I2D_PRE, pval, it, NULL)) |
169 | 0 | return 0; |
170 | | /* First work out sequence content length */ |
171 | 3.35M | for (i = 0, tt = it->templates; i < it->tcount; tt++, i++) { |
172 | 2.23M | const ASN1_TEMPLATE *seqtt; |
173 | 2.23M | ASN1_VALUE **pseqval; |
174 | 2.23M | int tmplen; |
175 | 2.23M | seqtt = asn1_do_adb(pval, tt, 1); |
176 | 2.23M | if (!seqtt) |
177 | 0 | return 0; |
178 | 2.23M | pseqval = asn1_get_field_ptr(pval, seqtt); |
179 | 2.23M | tmplen = asn1_template_ex_i2d(pseqval, NULL, seqtt, -1, aclass); |
180 | 2.23M | if (tmplen == -1 || (tmplen > INT_MAX - seqcontlen)) |
181 | 0 | return -1; |
182 | 2.23M | seqcontlen += tmplen; |
183 | 2.23M | } |
184 | | |
185 | 1.11M | seqlen = ASN1_object_size(ndef, seqcontlen, tag); |
186 | 1.11M | if (!out || seqlen == -1) |
187 | 740k | return seqlen; |
188 | | /* Output SEQUENCE header */ |
189 | 372k | ASN1_put_object(out, ndef, seqcontlen, tag, aclass); |
190 | 1.12M | for (i = 0, tt = it->templates; i < it->tcount; tt++, i++) { |
191 | 750k | const ASN1_TEMPLATE *seqtt; |
192 | 750k | ASN1_VALUE **pseqval; |
193 | 750k | seqtt = asn1_do_adb(pval, tt, 1); |
194 | 750k | if (!seqtt) |
195 | 0 | return 0; |
196 | 750k | pseqval = asn1_get_field_ptr(pval, seqtt); |
197 | | /* FIXME: check for errors in enhanced version */ |
198 | 750k | asn1_template_ex_i2d(pseqval, out, seqtt, -1, aclass); |
199 | 750k | } |
200 | 372k | if (ndef == 2) |
201 | 0 | ASN1_put_eoc(out); |
202 | 372k | if (asn1_cb && !asn1_cb(ASN1_OP_I2D_POST, pval, it, NULL)) |
203 | 0 | return 0; |
204 | 372k | return seqlen; |
205 | | |
206 | 0 | default: |
207 | 0 | return 0; |
208 | | |
209 | 4.58M | } |
210 | 0 | return 0; |
211 | 4.58M | } |
212 | | |
213 | | static int asn1_template_ex_i2d(ASN1_VALUE **pval, unsigned char **out, |
214 | | const ASN1_TEMPLATE *tt, int tag, int iclass) |
215 | 3.48M | { |
216 | 3.48M | int i, ret, flags, ttag, tclass, ndef; |
217 | 3.48M | ASN1_VALUE *tval; |
218 | 3.48M | flags = tt->flags; |
219 | | |
220 | | /* |
221 | | * If field is embedded then val needs fixing so it is a pointer to |
222 | | * a pointer to a field. |
223 | | */ |
224 | 3.48M | if (flags & ASN1_TFLG_EMBED) { |
225 | 46.0k | tval = (ASN1_VALUE *)pval; |
226 | 46.0k | pval = &tval; |
227 | 46.0k | } |
228 | | /* |
229 | | * Work out tag and class to use: tagging may come either from the |
230 | | * template or the arguments, not both because this would create |
231 | | * ambiguity. Additionally the iclass argument may contain some |
232 | | * additional flags which should be noted and passed down to other |
233 | | * levels. |
234 | | */ |
235 | 3.48M | if (flags & ASN1_TFLG_TAG_MASK) { |
236 | | /* Error if argument and template tagging */ |
237 | 0 | if (tag != -1) |
238 | | /* FIXME: error code here */ |
239 | 0 | return -1; |
240 | | /* Get tagging from template */ |
241 | 0 | ttag = tt->tag; |
242 | 0 | tclass = flags & ASN1_TFLG_TAG_CLASS; |
243 | 3.48M | } else if (tag != -1) { |
244 | | /* No template tagging, get from arguments */ |
245 | 0 | ttag = tag; |
246 | 0 | tclass = iclass & ASN1_TFLG_TAG_CLASS; |
247 | 3.48M | } else { |
248 | 3.48M | ttag = -1; |
249 | 3.48M | tclass = 0; |
250 | 3.48M | } |
251 | | /* |
252 | | * Remove any class mask from iflag. |
253 | | */ |
254 | 3.48M | iclass &= ~ASN1_TFLG_TAG_CLASS; |
255 | | |
256 | | /* |
257 | | * At this point 'ttag' contains the outer tag to use, 'tclass' is the |
258 | | * class and iclass is any flags passed to this function. |
259 | | */ |
260 | | |
261 | | /* if template and arguments require ndef, use it */ |
262 | 3.48M | if ((flags & ASN1_TFLG_NDEF) && (iclass & ASN1_TFLG_NDEF)) |
263 | 0 | ndef = 2; |
264 | 3.48M | else |
265 | 3.48M | ndef = 1; |
266 | | |
267 | 3.48M | if (flags & ASN1_TFLG_SK_MASK) { |
268 | | /* SET OF, SEQUENCE OF */ |
269 | 492k | STACK_OF(ASN1_VALUE) *sk = (STACK_OF(ASN1_VALUE) *)*pval; |
270 | 492k | int isset, sktag, skaclass; |
271 | 492k | int skcontlen, sklen; |
272 | 492k | ASN1_VALUE *skitem; |
273 | | |
274 | 492k | if (!*pval) |
275 | 0 | return 0; |
276 | | |
277 | 492k | if (flags & ASN1_TFLG_SET_OF) { |
278 | 492k | isset = 1; |
279 | | /* 2 means we reorder */ |
280 | 492k | if (flags & ASN1_TFLG_SEQUENCE_OF) |
281 | 0 | isset = 2; |
282 | 492k | } else |
283 | 0 | isset = 0; |
284 | | |
285 | | /* |
286 | | * Work out inner tag value: if EXPLICIT or no tagging use underlying |
287 | | * type. |
288 | | */ |
289 | 492k | if ((ttag != -1) && !(flags & ASN1_TFLG_EXPTAG)) { |
290 | 0 | sktag = ttag; |
291 | 0 | skaclass = tclass; |
292 | 492k | } else { |
293 | 492k | skaclass = V_ASN1_UNIVERSAL; |
294 | 492k | if (isset) |
295 | 492k | sktag = V_ASN1_SET; |
296 | 0 | else |
297 | 0 | sktag = V_ASN1_SEQUENCE; |
298 | 492k | } |
299 | | |
300 | | /* Determine total length of items */ |
301 | 492k | skcontlen = 0; |
302 | 1.21M | for (i = 0; i < sk_ASN1_VALUE_num(sk); i++) { |
303 | 725k | int tmplen; |
304 | 725k | skitem = sk_ASN1_VALUE_value(sk, i); |
305 | 725k | tmplen = ASN1_item_ex_i2d(&skitem, NULL, ASN1_ITEM_ptr(tt->item), |
306 | 725k | -1, iclass); |
307 | 725k | if (tmplen == -1 || (skcontlen > INT_MAX - tmplen)) |
308 | 0 | return -1; |
309 | 725k | skcontlen += tmplen; |
310 | 725k | } |
311 | 492k | sklen = ASN1_object_size(ndef, skcontlen, sktag); |
312 | 492k | if (sklen == -1) |
313 | 0 | return -1; |
314 | | /* If EXPLICIT need length of surrounding tag */ |
315 | 492k | if (flags & ASN1_TFLG_EXPTAG) |
316 | 0 | ret = ASN1_object_size(ndef, sklen, ttag); |
317 | 492k | else |
318 | 492k | ret = sklen; |
319 | | |
320 | 492k | if (!out || ret == -1) |
321 | 246k | return ret; |
322 | | |
323 | | /* Now encode this lot... */ |
324 | | /* EXPLICIT tag */ |
325 | 246k | if (flags & ASN1_TFLG_EXPTAG) |
326 | 0 | ASN1_put_object(out, ndef, sklen, ttag, tclass); |
327 | | /* SET or SEQUENCE and IMPLICIT tag */ |
328 | 246k | ASN1_put_object(out, ndef, skcontlen, sktag, skaclass); |
329 | | /* And the stuff itself */ |
330 | 246k | asn1_set_seq_out(sk, out, skcontlen, ASN1_ITEM_ptr(tt->item), |
331 | 246k | isset, iclass); |
332 | 246k | if (ndef == 2) { |
333 | 0 | ASN1_put_eoc(out); |
334 | 0 | if (flags & ASN1_TFLG_EXPTAG) |
335 | 0 | ASN1_put_eoc(out); |
336 | 0 | } |
337 | | |
338 | 246k | return ret; |
339 | 492k | } |
340 | | |
341 | 2.98M | if (flags & ASN1_TFLG_EXPTAG) { |
342 | | /* EXPLICIT tagging */ |
343 | | /* Find length of tagged item */ |
344 | 0 | i = ASN1_item_ex_i2d(pval, NULL, ASN1_ITEM_ptr(tt->item), -1, iclass); |
345 | 0 | if (!i) |
346 | 0 | return 0; |
347 | | /* Find length of EXPLICIT tag */ |
348 | 0 | ret = ASN1_object_size(ndef, i, ttag); |
349 | 0 | if (out && ret != -1) { |
350 | | /* Output tag and item */ |
351 | 0 | ASN1_put_object(out, ndef, i, ttag, tclass); |
352 | 0 | ASN1_item_ex_i2d(pval, out, ASN1_ITEM_ptr(tt->item), -1, iclass); |
353 | 0 | if (ndef == 2) |
354 | 0 | ASN1_put_eoc(out); |
355 | 0 | } |
356 | 0 | return ret; |
357 | 0 | } |
358 | | |
359 | | /* Either normal or IMPLICIT tagging: combine class and flags */ |
360 | 2.98M | return ASN1_item_ex_i2d(pval, out, ASN1_ITEM_ptr(tt->item), |
361 | 2.98M | ttag, tclass | iclass); |
362 | | |
363 | 2.98M | } |
364 | | |
365 | | /* Temporary structure used to hold DER encoding of items for SET OF */ |
366 | | |
367 | | typedef struct { |
368 | | unsigned char *data; |
369 | | int length; |
370 | | ASN1_VALUE *field; |
371 | | } DER_ENC; |
372 | | |
373 | | static int der_cmp(const void *a, const void *b) |
374 | 1.19M | { |
375 | 1.19M | const DER_ENC *d1 = a, *d2 = b; |
376 | 1.19M | int cmplen, i; |
377 | 1.19M | cmplen = (d1->length < d2->length) ? d1->length : d2->length; |
378 | 1.19M | i = memcmp(d1->data, d2->data, cmplen); |
379 | 1.19M | if (i) |
380 | 632k | return i; |
381 | 566k | return d1->length - d2->length; |
382 | 1.19M | } |
383 | | |
384 | | /* Output the content octets of SET OF or SEQUENCE OF */ |
385 | | |
386 | | static int asn1_set_seq_out(STACK_OF(ASN1_VALUE) *sk, unsigned char **out, |
387 | | int skcontlen, const ASN1_ITEM *item, |
388 | | int do_sort, int iclass) |
389 | 246k | { |
390 | 246k | int i; |
391 | 246k | ASN1_VALUE *skitem; |
392 | 246k | unsigned char *tmpdat = NULL, *p = NULL; |
393 | 246k | DER_ENC *derlst = NULL, *tder; |
394 | 246k | if (do_sort) { |
395 | | /* Don't need to sort less than 2 items */ |
396 | 246k | if (sk_ASN1_VALUE_num(sk) < 2) |
397 | 242k | do_sort = 0; |
398 | 3.79k | else { |
399 | 3.79k | derlst = OPENSSL_malloc(sk_ASN1_VALUE_num(sk) |
400 | 3.79k | * sizeof(*derlst)); |
401 | 3.79k | if (derlst == NULL) |
402 | 0 | return 0; |
403 | 3.79k | tmpdat = OPENSSL_malloc(skcontlen); |
404 | 3.79k | if (tmpdat == NULL) { |
405 | 0 | OPENSSL_free(derlst); |
406 | 0 | return 0; |
407 | 0 | } |
408 | 3.79k | } |
409 | 246k | } |
410 | | /* If not sorting just output each item */ |
411 | 246k | if (!do_sort) { |
412 | 485k | for (i = 0; i < sk_ASN1_VALUE_num(sk); i++) { |
413 | 242k | skitem = sk_ASN1_VALUE_value(sk, i); |
414 | 242k | ASN1_item_ex_i2d(&skitem, out, item, -1, iclass); |
415 | 242k | } |
416 | 242k | return 1; |
417 | 242k | } |
418 | 3.79k | p = tmpdat; |
419 | | |
420 | | /* Doing sort: build up a list of each member's DER encoding */ |
421 | 123k | for (i = 0, tder = derlst; i < sk_ASN1_VALUE_num(sk); i++, tder++) { |
422 | 120k | skitem = sk_ASN1_VALUE_value(sk, i); |
423 | 120k | tder->data = p; |
424 | 120k | tder->length = ASN1_item_ex_i2d(&skitem, &p, item, -1, iclass); |
425 | 120k | tder->field = skitem; |
426 | 120k | } |
427 | | |
428 | | /* Now sort them */ |
429 | 3.79k | qsort(derlst, sk_ASN1_VALUE_num(sk), sizeof(*derlst), der_cmp); |
430 | | /* Output sorted DER encoding */ |
431 | 3.79k | p = *out; |
432 | 123k | for (i = 0, tder = derlst; i < sk_ASN1_VALUE_num(sk); i++, tder++) { |
433 | 120k | memcpy(p, tder->data, tder->length); |
434 | 120k | p += tder->length; |
435 | 120k | } |
436 | 3.79k | *out = p; |
437 | | /* If do_sort is 2 then reorder the STACK */ |
438 | 3.79k | if (do_sort == 2) { |
439 | 0 | for (i = 0, tder = derlst; i < sk_ASN1_VALUE_num(sk); i++, tder++) |
440 | 0 | (void)sk_ASN1_VALUE_set(sk, i, tder->field); |
441 | 0 | } |
442 | 3.79k | OPENSSL_free(derlst); |
443 | 3.79k | OPENSSL_free(tmpdat); |
444 | 3.79k | return 1; |
445 | 246k | } |
446 | | |
447 | | static int asn1_i2d_ex_primitive(ASN1_VALUE **pval, unsigned char **out, |
448 | | const ASN1_ITEM *it, int tag, int aclass) |
449 | 2.96M | { |
450 | 2.96M | int len; |
451 | 2.96M | int utype; |
452 | 2.96M | int usetag; |
453 | 2.96M | int ndef = 0; |
454 | | |
455 | 2.96M | utype = it->utype; |
456 | | |
457 | | /* |
458 | | * Get length of content octets and maybe find out the underlying type. |
459 | | */ |
460 | | |
461 | 2.96M | len = asn1_ex_i2c(pval, NULL, &utype, it); |
462 | | |
463 | | /* |
464 | | * If SEQUENCE, SET or OTHER then header is included in pseudo content |
465 | | * octets so don't include tag+length. We need to check here because the |
466 | | * call to asn1_ex_i2c() could change utype. |
467 | | */ |
468 | 2.96M | if ((utype == V_ASN1_SEQUENCE) || (utype == V_ASN1_SET) || |
469 | 2.96M | (utype == V_ASN1_OTHER)) |
470 | 37.9k | usetag = 0; |
471 | 2.92M | else |
472 | 2.92M | usetag = 1; |
473 | | |
474 | | /* -1 means omit type */ |
475 | | |
476 | 2.96M | if (len == -1) |
477 | 19.2k | return 0; |
478 | | |
479 | | /* -2 return is special meaning use ndef */ |
480 | 2.94M | if (len == -2) { |
481 | 0 | ndef = 2; |
482 | 0 | len = 0; |
483 | 0 | } |
484 | | |
485 | | /* If not implicitly tagged get tag from underlying type */ |
486 | 2.94M | if (tag == -1) |
487 | 2.94M | tag = utype; |
488 | | |
489 | | /* Output tag+length followed by content octets */ |
490 | 2.94M | if (out) { |
491 | 738k | if (usetag) |
492 | 728k | ASN1_put_object(out, ndef, len, tag, aclass); |
493 | 738k | asn1_ex_i2c(pval, *out, &utype, it); |
494 | 738k | if (ndef) |
495 | 0 | ASN1_put_eoc(out); |
496 | 738k | else |
497 | 738k | *out += len; |
498 | 738k | } |
499 | | |
500 | 2.94M | if (usetag) |
501 | 2.90M | return ASN1_object_size(ndef, len, tag); |
502 | 37.9k | return len; |
503 | 2.94M | } |
504 | | |
505 | | /* Produce content octets from a structure */ |
506 | | |
507 | | static int asn1_ex_i2c(ASN1_VALUE **pval, unsigned char *cout, int *putype, |
508 | | const ASN1_ITEM *it) |
509 | 3.70M | { |
510 | 3.70M | ASN1_BOOLEAN *tbool = NULL; |
511 | 3.70M | ASN1_STRING *strtmp; |
512 | 3.70M | ASN1_OBJECT *otmp; |
513 | 3.70M | int utype; |
514 | 3.70M | const unsigned char *cont; |
515 | 3.70M | unsigned char c; |
516 | 3.70M | int len; |
517 | 3.70M | const ASN1_PRIMITIVE_FUNCS *pf; |
518 | 3.70M | pf = it->funcs; |
519 | 3.70M | if (pf && pf->prim_i2c) |
520 | 0 | return pf->prim_i2c(pval, cout, putype, it); |
521 | | |
522 | | /* Should type be omitted? */ |
523 | 3.70M | if ((it->itype != ASN1_ITYPE_PRIMITIVE) |
524 | 3.70M | || (it->utype != V_ASN1_BOOLEAN)) { |
525 | 3.70M | if (!*pval) |
526 | 19.2k | return -1; |
527 | 3.70M | } |
528 | | |
529 | 3.68M | if (it->itype == ASN1_ITYPE_MSTRING) { |
530 | | /* If MSTRING type set the underlying type */ |
531 | 1.81M | strtmp = (ASN1_STRING *)*pval; |
532 | 1.81M | utype = strtmp->type; |
533 | 1.81M | *putype = utype; |
534 | 1.86M | } else if (it->utype == V_ASN1_ANY) { |
535 | | /* If ANY set type and pointer to value */ |
536 | 10.0k | ASN1_TYPE *typ; |
537 | 10.0k | typ = (ASN1_TYPE *)*pval; |
538 | 10.0k | utype = typ->type; |
539 | 10.0k | *putype = utype; |
540 | 10.0k | pval = &typ->value.asn1_value; |
541 | 10.0k | } else |
542 | 1.85M | utype = *putype; |
543 | | |
544 | 3.68M | switch (utype) { |
545 | 1.83M | case V_ASN1_OBJECT: |
546 | 1.83M | otmp = (ASN1_OBJECT *)*pval; |
547 | 1.83M | cont = otmp->data; |
548 | 1.83M | len = otmp->length; |
549 | 1.83M | if (cont == NULL || len == 0) |
550 | 0 | return -1; |
551 | 1.83M | break; |
552 | | |
553 | 1.83M | case V_ASN1_NULL: |
554 | 695 | cont = NULL; |
555 | 695 | len = 0; |
556 | 695 | break; |
557 | | |
558 | 50 | case V_ASN1_BOOLEAN: |
559 | 50 | tbool = (ASN1_BOOLEAN *)pval; |
560 | 50 | if (*tbool == -1) |
561 | 0 | return -1; |
562 | 50 | if (it->utype != V_ASN1_ANY) { |
563 | | /* |
564 | | * Default handling if value == size field then omit |
565 | | */ |
566 | 0 | if (*tbool && (it->size > 0)) |
567 | 0 | return -1; |
568 | 0 | if (!*tbool && !it->size) |
569 | 0 | return -1; |
570 | 0 | } |
571 | 50 | c = (unsigned char)*tbool; |
572 | 50 | cont = &c; |
573 | 50 | len = 1; |
574 | 50 | break; |
575 | | |
576 | 27.3k | case V_ASN1_BIT_STRING: |
577 | 27.3k | return i2c_ASN1_BIT_STRING((ASN1_BIT_STRING *)*pval, |
578 | 27.3k | cout ? &cout : NULL); |
579 | | |
580 | 85 | case V_ASN1_INTEGER: |
581 | 225 | case V_ASN1_ENUMERATED: |
582 | | /* |
583 | | * These are all have the same content format as ASN1_INTEGER |
584 | | */ |
585 | 225 | return i2c_ASN1_INTEGER((ASN1_INTEGER *)*pval, cout ? &cout : NULL); |
586 | | |
587 | 15 | case V_ASN1_OCTET_STRING: |
588 | 390 | case V_ASN1_NUMERICSTRING: |
589 | 395 | case V_ASN1_PRINTABLESTRING: |
590 | 395 | case V_ASN1_T61STRING: |
591 | 405 | case V_ASN1_VIDEOTEXSTRING: |
592 | 410 | case V_ASN1_IA5STRING: |
593 | 415 | case V_ASN1_UTCTIME: |
594 | 425 | case V_ASN1_GENERALIZEDTIME: |
595 | 425 | case V_ASN1_GRAPHICSTRING: |
596 | 425 | case V_ASN1_VISIBLESTRING: |
597 | 430 | case V_ASN1_GENERALSTRING: |
598 | 445 | case V_ASN1_UNIVERSALSTRING: |
599 | 450 | case V_ASN1_BMPSTRING: |
600 | 729k | case V_ASN1_UTF8STRING: |
601 | 777k | case V_ASN1_SEQUENCE: |
602 | 777k | case V_ASN1_SET: |
603 | 1.81M | default: |
604 | | /* All based on ASN1_STRING and handled the same */ |
605 | 1.81M | strtmp = (ASN1_STRING *)*pval; |
606 | | /* Special handling for NDEF */ |
607 | 1.81M | if ((it->size == ASN1_TFLG_NDEF) |
608 | 1.81M | && (strtmp->flags & ASN1_STRING_FLAG_NDEF)) { |
609 | 0 | if (cout) { |
610 | 0 | strtmp->data = cout; |
611 | 0 | strtmp->length = 0; |
612 | 0 | } |
613 | | /* Special return code */ |
614 | 0 | return -2; |
615 | 0 | } |
616 | 1.81M | cont = strtmp->data; |
617 | 1.81M | len = strtmp->length; |
618 | | |
619 | 1.81M | break; |
620 | | |
621 | 3.68M | } |
622 | 3.65M | if (cout && len) |
623 | 441k | memcpy(cout, cont, len); |
624 | 3.65M | return len; |
625 | 3.68M | } |