sl@0
|
1 |
/* crypto/asn1/a_bytes.c */
|
sl@0
|
2 |
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
*
|
sl@0
|
5 |
* This package is an SSL implementation written
|
sl@0
|
6 |
* by Eric Young (eay@cryptsoft.com).
|
sl@0
|
7 |
* The implementation was written so as to conform with Netscapes SSL.
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* This library is free for commercial and non-commercial use as long as
|
sl@0
|
10 |
* the following conditions are aheared to. The following conditions
|
sl@0
|
11 |
* apply to all code found in this distribution, be it the RC4, RSA,
|
sl@0
|
12 |
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
sl@0
|
13 |
* included with this distribution is covered by the same copyright terms
|
sl@0
|
14 |
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
sl@0
|
15 |
*
|
sl@0
|
16 |
* Copyright remains Eric Young's, and as such any Copyright notices in
|
sl@0
|
17 |
* the code are not to be removed.
|
sl@0
|
18 |
* If this package is used in a product, Eric Young should be given attribution
|
sl@0
|
19 |
* as the author of the parts of the library used.
|
sl@0
|
20 |
* This can be in the form of a textual message at program startup or
|
sl@0
|
21 |
* in documentation (online or textual) provided with the package.
|
sl@0
|
22 |
*
|
sl@0
|
23 |
* Redistribution and use in source and binary forms, with or without
|
sl@0
|
24 |
* modification, are permitted provided that the following conditions
|
sl@0
|
25 |
* are met:
|
sl@0
|
26 |
* 1. Redistributions of source code must retain the copyright
|
sl@0
|
27 |
* notice, this list of conditions and the following disclaimer.
|
sl@0
|
28 |
* 2. Redistributions in binary form must reproduce the above copyright
|
sl@0
|
29 |
* notice, this list of conditions and the following disclaimer in the
|
sl@0
|
30 |
* documentation and/or other materials provided with the distribution.
|
sl@0
|
31 |
* 3. All advertising materials mentioning features or use of this software
|
sl@0
|
32 |
* must display the following acknowledgement:
|
sl@0
|
33 |
* "This product includes cryptographic software written by
|
sl@0
|
34 |
* Eric Young (eay@cryptsoft.com)"
|
sl@0
|
35 |
* The word 'cryptographic' can be left out if the rouines from the library
|
sl@0
|
36 |
* being used are not cryptographic related :-).
|
sl@0
|
37 |
* 4. If you include any Windows specific code (or a derivative thereof) from
|
sl@0
|
38 |
* the apps directory (application code) you must include an acknowledgement:
|
sl@0
|
39 |
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
sl@0
|
40 |
*
|
sl@0
|
41 |
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
sl@0
|
42 |
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
sl@0
|
43 |
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
sl@0
|
44 |
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
sl@0
|
45 |
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
sl@0
|
46 |
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
sl@0
|
47 |
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
sl@0
|
48 |
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
sl@0
|
49 |
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
sl@0
|
50 |
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
sl@0
|
51 |
* SUCH DAMAGE.
|
sl@0
|
52 |
*
|
sl@0
|
53 |
* The licence and distribution terms for any publically available version or
|
sl@0
|
54 |
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
sl@0
|
55 |
* copied and put under another distribution licence
|
sl@0
|
56 |
* [including the GNU Public Licence.]
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
|
sl@0
|
59 |
#include <stdio.h>
|
sl@0
|
60 |
#include "cryptlib.h"
|
sl@0
|
61 |
#include <openssl/asn1.h>
|
sl@0
|
62 |
|
sl@0
|
63 |
static int asn1_collate_primitive(ASN1_STRING *a, ASN1_const_CTX *c);
|
sl@0
|
64 |
/* type is a 'bitmap' of acceptable string types.
|
sl@0
|
65 |
*/
|
sl@0
|
66 |
EXPORT_C ASN1_STRING *d2i_ASN1_type_bytes(ASN1_STRING **a, const unsigned char **pp,
|
sl@0
|
67 |
long length, int type)
|
sl@0
|
68 |
{
|
sl@0
|
69 |
ASN1_STRING *ret=NULL;
|
sl@0
|
70 |
const unsigned char *p;
|
sl@0
|
71 |
unsigned char *s;
|
sl@0
|
72 |
long len;
|
sl@0
|
73 |
int inf,tag,xclass;
|
sl@0
|
74 |
int i=0;
|
sl@0
|
75 |
|
sl@0
|
76 |
p= *pp;
|
sl@0
|
77 |
inf=ASN1_get_object(&p,&len,&tag,&xclass,length);
|
sl@0
|
78 |
if (inf & 0x80) goto err;
|
sl@0
|
79 |
|
sl@0
|
80 |
if (tag >= 32)
|
sl@0
|
81 |
{
|
sl@0
|
82 |
i=ASN1_R_TAG_VALUE_TOO_HIGH;;
|
sl@0
|
83 |
goto err;
|
sl@0
|
84 |
}
|
sl@0
|
85 |
if (!(ASN1_tag2bit(tag) & type))
|
sl@0
|
86 |
{
|
sl@0
|
87 |
i=ASN1_R_WRONG_TYPE;
|
sl@0
|
88 |
goto err;
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|
sl@0
|
91 |
/* If a bit-string, exit early */
|
sl@0
|
92 |
if (tag == V_ASN1_BIT_STRING)
|
sl@0
|
93 |
return(d2i_ASN1_BIT_STRING(a,pp,length));
|
sl@0
|
94 |
|
sl@0
|
95 |
if ((a == NULL) || ((*a) == NULL))
|
sl@0
|
96 |
{
|
sl@0
|
97 |
if ((ret=ASN1_STRING_new()) == NULL) return(NULL);
|
sl@0
|
98 |
}
|
sl@0
|
99 |
else
|
sl@0
|
100 |
ret=(*a);
|
sl@0
|
101 |
|
sl@0
|
102 |
if (len != 0)
|
sl@0
|
103 |
{
|
sl@0
|
104 |
s=(unsigned char *)OPENSSL_malloc((int)len+1);
|
sl@0
|
105 |
if (s == NULL)
|
sl@0
|
106 |
{
|
sl@0
|
107 |
i=ERR_R_MALLOC_FAILURE;
|
sl@0
|
108 |
goto err;
|
sl@0
|
109 |
}
|
sl@0
|
110 |
memcpy(s,p,(int)len);
|
sl@0
|
111 |
s[len]='\0';
|
sl@0
|
112 |
p+=len;
|
sl@0
|
113 |
}
|
sl@0
|
114 |
else
|
sl@0
|
115 |
s=NULL;
|
sl@0
|
116 |
|
sl@0
|
117 |
if (ret->data != NULL) OPENSSL_free(ret->data);
|
sl@0
|
118 |
ret->length=(int)len;
|
sl@0
|
119 |
ret->data=s;
|
sl@0
|
120 |
ret->type=tag;
|
sl@0
|
121 |
if (a != NULL) (*a)=ret;
|
sl@0
|
122 |
*pp=p;
|
sl@0
|
123 |
return(ret);
|
sl@0
|
124 |
err:
|
sl@0
|
125 |
ASN1err(ASN1_F_D2I_ASN1_TYPE_BYTES,i);
|
sl@0
|
126 |
if ((ret != NULL) && ((a == NULL) || (*a != ret)))
|
sl@0
|
127 |
ASN1_STRING_free(ret);
|
sl@0
|
128 |
return(NULL);
|
sl@0
|
129 |
}
|
sl@0
|
130 |
|
sl@0
|
131 |
EXPORT_C int i2d_ASN1_bytes(ASN1_STRING *a, unsigned char **pp, int tag, int xclass)
|
sl@0
|
132 |
{
|
sl@0
|
133 |
int ret,r,constructed;
|
sl@0
|
134 |
unsigned char *p;
|
sl@0
|
135 |
|
sl@0
|
136 |
if (a == NULL) return(0);
|
sl@0
|
137 |
|
sl@0
|
138 |
if (tag == V_ASN1_BIT_STRING)
|
sl@0
|
139 |
return(i2d_ASN1_BIT_STRING(a,pp));
|
sl@0
|
140 |
|
sl@0
|
141 |
ret=a->length;
|
sl@0
|
142 |
r=ASN1_object_size(0,ret,tag);
|
sl@0
|
143 |
if (pp == NULL) return(r);
|
sl@0
|
144 |
p= *pp;
|
sl@0
|
145 |
|
sl@0
|
146 |
if ((tag == V_ASN1_SEQUENCE) || (tag == V_ASN1_SET))
|
sl@0
|
147 |
constructed=1;
|
sl@0
|
148 |
else
|
sl@0
|
149 |
constructed=0;
|
sl@0
|
150 |
ASN1_put_object(&p,constructed,ret,tag,xclass);
|
sl@0
|
151 |
memcpy(p,a->data,a->length);
|
sl@0
|
152 |
p+=a->length;
|
sl@0
|
153 |
*pp= p;
|
sl@0
|
154 |
return(r);
|
sl@0
|
155 |
}
|
sl@0
|
156 |
|
sl@0
|
157 |
EXPORT_C ASN1_STRING *d2i_ASN1_bytes(ASN1_STRING **a, const unsigned char **pp,
|
sl@0
|
158 |
long length, int Ptag, int Pclass)
|
sl@0
|
159 |
{
|
sl@0
|
160 |
ASN1_STRING *ret=NULL;
|
sl@0
|
161 |
const unsigned char *p;
|
sl@0
|
162 |
unsigned char *s;
|
sl@0
|
163 |
long len;
|
sl@0
|
164 |
int inf,tag,xclass;
|
sl@0
|
165 |
int i=0;
|
sl@0
|
166 |
|
sl@0
|
167 |
if ((a == NULL) || ((*a) == NULL))
|
sl@0
|
168 |
{
|
sl@0
|
169 |
if ((ret=ASN1_STRING_new()) == NULL) return(NULL);
|
sl@0
|
170 |
}
|
sl@0
|
171 |
else
|
sl@0
|
172 |
ret=(*a);
|
sl@0
|
173 |
|
sl@0
|
174 |
p= *pp;
|
sl@0
|
175 |
inf=ASN1_get_object(&p,&len,&tag,&xclass,length);
|
sl@0
|
176 |
if (inf & 0x80)
|
sl@0
|
177 |
{
|
sl@0
|
178 |
i=ASN1_R_BAD_OBJECT_HEADER;
|
sl@0
|
179 |
goto err;
|
sl@0
|
180 |
}
|
sl@0
|
181 |
|
sl@0
|
182 |
if (tag != Ptag)
|
sl@0
|
183 |
{
|
sl@0
|
184 |
i=ASN1_R_WRONG_TAG;
|
sl@0
|
185 |
goto err;
|
sl@0
|
186 |
}
|
sl@0
|
187 |
|
sl@0
|
188 |
if (inf & V_ASN1_CONSTRUCTED)
|
sl@0
|
189 |
{
|
sl@0
|
190 |
ASN1_const_CTX c;
|
sl@0
|
191 |
|
sl@0
|
192 |
c.pp=pp;
|
sl@0
|
193 |
c.p=p;
|
sl@0
|
194 |
c.inf=inf;
|
sl@0
|
195 |
c.slen=len;
|
sl@0
|
196 |
c.tag=Ptag;
|
sl@0
|
197 |
c.xclass=Pclass;
|
sl@0
|
198 |
c.max=(length == 0)?0:(p+length);
|
sl@0
|
199 |
if (!asn1_collate_primitive(ret,&c))
|
sl@0
|
200 |
goto err;
|
sl@0
|
201 |
else
|
sl@0
|
202 |
{
|
sl@0
|
203 |
p=c.p;
|
sl@0
|
204 |
}
|
sl@0
|
205 |
}
|
sl@0
|
206 |
else
|
sl@0
|
207 |
{
|
sl@0
|
208 |
if (len != 0)
|
sl@0
|
209 |
{
|
sl@0
|
210 |
if ((ret->length < len) || (ret->data == NULL))
|
sl@0
|
211 |
{
|
sl@0
|
212 |
if (ret->data != NULL) OPENSSL_free(ret->data);
|
sl@0
|
213 |
s=(unsigned char *)OPENSSL_malloc((int)len + 1);
|
sl@0
|
214 |
if (s == NULL)
|
sl@0
|
215 |
{
|
sl@0
|
216 |
i=ERR_R_MALLOC_FAILURE;
|
sl@0
|
217 |
goto err;
|
sl@0
|
218 |
}
|
sl@0
|
219 |
}
|
sl@0
|
220 |
else
|
sl@0
|
221 |
s=ret->data;
|
sl@0
|
222 |
memcpy(s,p,(int)len);
|
sl@0
|
223 |
s[len] = '\0';
|
sl@0
|
224 |
p+=len;
|
sl@0
|
225 |
}
|
sl@0
|
226 |
else
|
sl@0
|
227 |
{
|
sl@0
|
228 |
s=NULL;
|
sl@0
|
229 |
if (ret->data != NULL) OPENSSL_free(ret->data);
|
sl@0
|
230 |
}
|
sl@0
|
231 |
|
sl@0
|
232 |
ret->length=(int)len;
|
sl@0
|
233 |
ret->data=s;
|
sl@0
|
234 |
ret->type=Ptag;
|
sl@0
|
235 |
}
|
sl@0
|
236 |
|
sl@0
|
237 |
if (a != NULL) (*a)=ret;
|
sl@0
|
238 |
*pp=p;
|
sl@0
|
239 |
return(ret);
|
sl@0
|
240 |
err:
|
sl@0
|
241 |
if ((ret != NULL) && ((a == NULL) || (*a != ret)))
|
sl@0
|
242 |
ASN1_STRING_free(ret);
|
sl@0
|
243 |
ASN1err(ASN1_F_D2I_ASN1_BYTES,i);
|
sl@0
|
244 |
return(NULL);
|
sl@0
|
245 |
}
|
sl@0
|
246 |
|
sl@0
|
247 |
|
sl@0
|
248 |
/* We are about to parse 0..n d2i_ASN1_bytes objects, we are to collapse
|
sl@0
|
249 |
* them into the one structure that is then returned */
|
sl@0
|
250 |
/* There have been a few bug fixes for this function from
|
sl@0
|
251 |
* Paul Keogh <paul.keogh@sse.ie>, many thanks to him */
|
sl@0
|
252 |
static int asn1_collate_primitive(ASN1_STRING *a, ASN1_const_CTX *c)
|
sl@0
|
253 |
{
|
sl@0
|
254 |
ASN1_STRING *os=NULL;
|
sl@0
|
255 |
BUF_MEM b;
|
sl@0
|
256 |
int num;
|
sl@0
|
257 |
|
sl@0
|
258 |
b.length=0;
|
sl@0
|
259 |
b.max=0;
|
sl@0
|
260 |
b.data=NULL;
|
sl@0
|
261 |
|
sl@0
|
262 |
if (a == NULL)
|
sl@0
|
263 |
{
|
sl@0
|
264 |
c->error=ERR_R_PASSED_NULL_PARAMETER;
|
sl@0
|
265 |
goto err;
|
sl@0
|
266 |
}
|
sl@0
|
267 |
|
sl@0
|
268 |
num=0;
|
sl@0
|
269 |
for (;;)
|
sl@0
|
270 |
{
|
sl@0
|
271 |
if (c->inf & 1)
|
sl@0
|
272 |
{
|
sl@0
|
273 |
c->eos=ASN1_const_check_infinite_end(&c->p,
|
sl@0
|
274 |
(long)(c->max-c->p));
|
sl@0
|
275 |
if (c->eos) break;
|
sl@0
|
276 |
}
|
sl@0
|
277 |
else
|
sl@0
|
278 |
{
|
sl@0
|
279 |
if (c->slen <= 0) break;
|
sl@0
|
280 |
}
|
sl@0
|
281 |
|
sl@0
|
282 |
c->q=c->p;
|
sl@0
|
283 |
if (d2i_ASN1_bytes(&os,&c->p,c->max-c->p,c->tag,c->xclass)
|
sl@0
|
284 |
== NULL)
|
sl@0
|
285 |
{
|
sl@0
|
286 |
c->error=ERR_R_ASN1_LIB;
|
sl@0
|
287 |
goto err;
|
sl@0
|
288 |
}
|
sl@0
|
289 |
|
sl@0
|
290 |
if (!BUF_MEM_grow_clean(&b,num+os->length))
|
sl@0
|
291 |
{
|
sl@0
|
292 |
c->error=ERR_R_BUF_LIB;
|
sl@0
|
293 |
goto err;
|
sl@0
|
294 |
}
|
sl@0
|
295 |
memcpy(&(b.data[num]),os->data,os->length);
|
sl@0
|
296 |
if (!(c->inf & 1))
|
sl@0
|
297 |
c->slen-=(c->p-c->q);
|
sl@0
|
298 |
num+=os->length;
|
sl@0
|
299 |
}
|
sl@0
|
300 |
|
sl@0
|
301 |
if (!asn1_const_Finish(c)) goto err;
|
sl@0
|
302 |
|
sl@0
|
303 |
a->length=num;
|
sl@0
|
304 |
if (a->data != NULL) OPENSSL_free(a->data);
|
sl@0
|
305 |
a->data=(unsigned char *)b.data;
|
sl@0
|
306 |
if (os != NULL) ASN1_STRING_free(os);
|
sl@0
|
307 |
return(1);
|
sl@0
|
308 |
err:
|
sl@0
|
309 |
ASN1err(ASN1_F_ASN1_COLLATE_PRIMITIVE,c->error);
|
sl@0
|
310 |
if (os != NULL) ASN1_STRING_free(os);
|
sl@0
|
311 |
if (b.data != NULL) OPENSSL_free(b.data);
|
sl@0
|
312 |
return(0);
|
sl@0
|
313 |
}
|
sl@0
|
314 |
|