1 /* crypto/asn1/a_bytes.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
63 /* ASN1err(ASN1_F_D2I_ASN1_TYPE_BYTES,ASN1_R_WRONG_TYPE);
64 * ASN1err(ASN1_F_ASN1_COLLATE_PRIMATIVE,ASN1_R_WRONG_TAG);
67 static unsigned long tag2bit
[32]={
68 0, 0, 0, B_ASN1_BIT_STRING
, /* tags 0 - 3 */
69 B_ASN1_OCTET_STRING
, 0, 0, B_ASN1_UNKNOWN
,/* tags 4- 7 */
70 B_ASN1_UNKNOWN
, B_ASN1_UNKNOWN
, B_ASN1_UNKNOWN
, B_ASN1_UNKNOWN
,/* tags 8-11 */
71 B_ASN1_UNKNOWN
, B_ASN1_UNKNOWN
, B_ASN1_UNKNOWN
, B_ASN1_UNKNOWN
,/* tags 12-15 */
72 0, 0, B_ASN1_NUMERICSTRING
,B_ASN1_PRINTABLESTRING
,
73 B_ASN1_T61STRING
,B_ASN1_VIDEOTEXSTRING
,B_ASN1_IA5STRING
,0,
74 0,B_ASN1_GRAPHICSTRING
,B_ASN1_ISO64STRING
,B_ASN1_GENERALSTRING
,
75 B_ASN1_UNIVERSALSTRING
,B_ASN1_UNKNOWN
,B_ASN1_BMPSTRING
,B_ASN1_UNKNOWN
,
79 static int asn1_collate_primative(ASN1_STRING
*a
, ASN1_CTX
*c
);
81 static int asn1_collate_primative();
84 /* type is a 'bitmap' of acceptable string types to be accepted.
86 ASN1_STRING
*d2i_ASN1_type_bytes(a
, pp
, length
, type
)
92 ASN1_STRING
*ret
=NULL
;
99 inf
=ASN1_get_object(&p
,&len
,&tag
,&xclass
,length
);
100 if (inf
& 0x80) goto err
;
104 i
=ASN1_R_TAG_VALUE_TOO_HIGH
;;
107 if (!(tag2bit
[tag
] & type
))
113 /* If a bit-string, exit early */
114 if (tag
== V_ASN1_BIT_STRING
)
115 return(d2i_ASN1_BIT_STRING(a
,pp
,length
));
117 if ((a
== NULL
) || ((*a
) == NULL
))
119 if ((ret
=ASN1_STRING_new()) == NULL
) return(NULL
);
126 s
=(unsigned char *)Malloc((int)len
+1);
129 i
=ERR_R_MALLOC_FAILURE
;
132 memcpy(s
,p
,(int)len
);
139 if (ret
->data
!= NULL
) Free((char *)ret
->data
);
140 ret
->length
=(int)len
;
143 if (a
!= NULL
) (*a
)=ret
;
147 ASN1err(ASN1_F_D2I_ASN1_TYPE_BYTES
,i
);
148 if ((ret
!= NULL
) && ((a
== NULL
) || (*a
!= ret
)))
149 ASN1_STRING_free(ret
);
153 int i2d_ASN1_bytes(a
, pp
, tag
, xclass
)
159 int ret
,r
,constructed
;
162 if (a
== NULL
) return(0);
164 if (tag
== V_ASN1_BIT_STRING
)
165 return(i2d_ASN1_BIT_STRING(a
,pp
));
168 r
=ASN1_object_size(0,ret
,tag
);
169 if (pp
== NULL
) return(r
);
172 if ((tag
== V_ASN1_SEQUENCE
) || (tag
== V_ASN1_SET
))
176 ASN1_put_object(&p
,constructed
,ret
,tag
,xclass
);
177 memcpy(p
,a
->data
,a
->length
);
183 ASN1_STRING
*d2i_ASN1_bytes(a
, pp
, length
, Ptag
, Pclass
)
190 ASN1_STRING
*ret
=NULL
;
196 if ((a
== NULL
) || ((*a
) == NULL
))
198 if ((ret
=ASN1_STRING_new()) == NULL
) return(NULL
);
204 inf
=ASN1_get_object(&p
,&len
,&tag
,&xclass
,length
);
207 i
=ASN1_R_BAD_OBJECT_HEADER
;
217 if (inf
& V_ASN1_CONSTRUCTED
)
227 c
.max
=(length
== 0)?0:(p
+length
);
228 if (!asn1_collate_primative(ret
,&c
))
239 if ((ret
->length
< len
) || (ret
->data
== NULL
))
241 if (ret
->data
!= NULL
) Free((char *)ret
->data
);
242 s
=(unsigned char *)Malloc((int)len
);
245 i
=ERR_R_MALLOC_FAILURE
;
251 memcpy(s
,p
,(int)len
);
257 if (ret
->data
!= NULL
) Free((char *)ret
->data
);
260 ret
->length
=(int)len
;
265 if (a
!= NULL
) (*a
)=ret
;
269 if ((ret
!= NULL
) && ((a
== NULL
) || (*a
!= ret
)))
270 ASN1_STRING_free(ret
);
271 ASN1err(ASN1_F_D2I_ASN1_BYTES
,i
);
276 /* We are about to parse 0..n d2i_ASN1_bytes objects, we are to collapes
277 * them into the one struture that is then returned */
278 /* There have been a few bug fixes for this function from
279 * Paul Keogh <paul.keogh@sse.ie>, many thanks to him */
280 static int asn1_collate_primative(a
,c
)
284 ASN1_STRING
*os
=NULL
;
294 c
->error
=ERR_R_PASSED_NULL_PARAMETER
;
303 c
->eos
=ASN1_check_infinite_end(&c
->p
,
304 (long)(c
->max
-c
->p
));
309 if (c
->slen
<= 0) break;
313 if (d2i_ASN1_bytes(&os
,&c
->p
,c
->max
-c
->p
,c
->tag
,c
->xclass
)
316 c
->error
=ERR_R_ASN1_LIB
;
320 if (!BUF_MEM_grow(&b
,num
+os
->length
))
322 c
->error
=ERR_R_BUF_LIB
;
325 memcpy(&(b
.data
[num
]),os
->data
,os
->length
);
327 c
->slen
-=(c
->p
-c
->q
);
331 if (!asn1_Finish(c
)) goto err
;
334 if (a
->data
!= NULL
) Free(a
->data
);
335 a
->data
=(unsigned char *)b
.data
;
336 if (os
!= NULL
) ASN1_STRING_free(os
);
339 ASN1err(ASN1_F_ASN1_COLLATE_PRIMATIVE
,c
->error
);
340 if (os
!= NULL
) ASN1_STRING_free(os
);
341 if (b
.data
!= NULL
) Free(b
.data
);