]> git.ipfire.org Git - thirdparty/openssl.git/blob - crypto/asn1/a_bytes.c
Import of old SSLeay release: SSLeay 0.8.1b
[thirdparty/openssl.git] / crypto / asn1 / a_bytes.c
1 /* crypto/asn1/a_bytes.c */
2 /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com)
3 * All rights reserved.
4 *
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.
8 *
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).
15 *
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.
22 *
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
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)"
40 *
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
51 * SUCH DAMAGE.
52 *
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.]
57 */
58
59 #include <stdio.h>
60 #include "cryptlib.h"
61 #include "asn1_mac.h"
62
63 /* ASN1err(ASN1_F_ASN1_TYPE_NEW,ASN1_R_ERROR_STACK);
64 * ASN1err(ASN1_F_D2I_ASN1_TYPE_BYTES,ASN1_R_ERROR_STACK);
65 * ASN1err(ASN1_F_D2I_ASN1_TYPE_BYTES,ASN1_R_WRONG_TYPE);
66 * ASN1err(ASN1_F_ASN1_COLLATE_PRIMATIVE,ASN1_R_WRONG_TAG);
67 */
68
69 static unsigned long tag2bit[32]={
70 0, 0, 0, 0, /* tags 0 - 3 */
71 B_ASN1_OCTET_STRING, 0, 0, B_ASN1_UNKNOWN,/* tags 4- 7 */
72 B_ASN1_UNKNOWN, B_ASN1_UNKNOWN, B_ASN1_UNKNOWN, B_ASN1_UNKNOWN,/* tags 8-11 */
73 B_ASN1_UNKNOWN, B_ASN1_UNKNOWN, B_ASN1_UNKNOWN, B_ASN1_UNKNOWN,/* tags 12-15 */
74 0, 0, B_ASN1_NUMERICSTRING,B_ASN1_PRINTABLESTRING,
75 B_ASN1_T61STRING,B_ASN1_VIDEOTEXSTRING,B_ASN1_IA5STRING,0,
76 0,B_ASN1_GRAPHICSTRING,B_ASN1_ISO64STRING,B_ASN1_GENERALSTRING,
77 B_ASN1_UNIVERSALSTRING,B_ASN1_UNKNOWN,B_ASN1_UNKNOWN,B_ASN1_UNKNOWN,
78 };
79
80 #ifndef NOPROTO
81 static int asn1_collate_primative(ASN1_STRING *a, ASN1_CTX *c);
82 #else
83 static int asn1_collate_primative();
84 #endif
85
86 /* type is a 'bitmap' of acceptable string types to be accepted.
87 */
88 ASN1_STRING *d2i_ASN1_type_bytes(a, pp, length, type)
89 ASN1_STRING **a;
90 unsigned char **pp;
91 long length;
92 int type;
93 {
94 ASN1_STRING *ret=NULL;
95 unsigned char *p,*s;
96 long len;
97 int inf,tag,xclass;
98 int i=0;
99
100 if ((a == NULL) || ((*a) == NULL))
101 {
102 if ((ret=ASN1_STRING_new()) == NULL) return(NULL);
103 }
104 else
105 ret=(*a);
106
107 p= *pp;
108 inf=ASN1_get_object(&p,&len,&tag,&xclass,length);
109 if (inf & 0x80) goto err;
110
111 if (tag >= 32)
112 {
113 i=ASN1_R_TAG_VALUE_TOO_HIGH;;
114 goto err;
115 }
116 if (!(tag2bit[tag] & type))
117 {
118 i=ASN1_R_WRONG_TYPE;
119 goto err;
120 }
121 if (len != 0)
122 {
123 s=(unsigned char *)Malloc((int)len+1);
124 if (s == NULL)
125 {
126 i=ERR_R_MALLOC_FAILURE;
127 goto err;
128 }
129 memcpy(s,p,(int)len);
130 s[len]='\0';
131 p+=len;
132 }
133 else
134 s=NULL;
135
136 if (ret->data != NULL) Free((char *)ret->data);
137 ret->length=(int)len;
138 ret->data=s;
139 ret->type=tag;
140 if (a != NULL) (*a)=ret;
141 *pp=p;
142 return(ret);
143 err:
144 ASN1err(ASN1_F_D2I_ASN1_TYPE_BYTES,i);
145 if ((ret != NULL) && ((a == NULL) || (*a != ret)))
146 ASN1_STRING_free(ret);
147 return(NULL);
148 }
149
150 int i2d_ASN1_bytes(a, pp, tag, xclass)
151 ASN1_STRING *a;
152 unsigned char **pp;
153 int tag;
154 int xclass;
155 {
156 int ret,r,constructed;
157 unsigned char *p;
158
159 if (a == NULL) return(0);
160 ret=a->length;
161 r=ASN1_object_size(0,ret,tag);
162 if (pp == NULL) return(r);
163 p= *pp;
164
165 if ((tag == V_ASN1_SEQUENCE) || (tag == V_ASN1_SET))
166 constructed=1;
167 else
168 constructed=0;
169 ASN1_put_object(&p,constructed,ret,tag,xclass);
170 memcpy(p,a->data,a->length);
171 p+=a->length;
172 *pp= p;
173 return(r);
174 }
175
176 ASN1_STRING *d2i_ASN1_bytes(a, pp, length, Ptag, Pclass)
177 ASN1_STRING **a;
178 unsigned char **pp;
179 long length;
180 int Ptag;
181 int Pclass;
182 {
183 ASN1_STRING *ret=NULL;
184 unsigned char *p,*s;
185 long len;
186 int inf,tag,xclass;
187 int i=0;
188
189 if ((a == NULL) || ((*a) == NULL))
190 {
191 if ((ret=ASN1_STRING_new()) == NULL) return(NULL);
192 }
193 else
194 ret=(*a);
195
196 p= *pp;
197 inf=ASN1_get_object(&p,&len,&tag,&xclass,length);
198 if (inf & 0x80)
199 {
200 i=ASN1_R_BAD_OBJECT_HEADER;
201 goto err;
202 }
203
204 if (tag != Ptag)
205 {
206 i=ASN1_R_WRONG_TAG;
207 goto err;
208 }
209
210 if (inf & V_ASN1_CONSTRUCTED)
211 {
212 ASN1_CTX c;
213
214 c.pp=pp;
215 c.p=p;
216 c.inf=inf;
217 c.slen=len;
218 c.tag=Ptag;
219 c.xclass=Pclass;
220 c.max=(length == 0)?0:(p+length);
221 if (!asn1_collate_primative(ret,&c))
222 goto err;
223 else
224 {
225 p=c.p;
226 }
227 }
228 else
229 {
230 if (len != 0)
231 {
232 if (ret->length < len)
233 {
234 if (ret->data != NULL) Free((char *)ret->data);
235 s=(unsigned char *)Malloc((int)len);
236 if (s == NULL)
237 {
238 i=ERR_R_MALLOC_FAILURE;
239 goto err;
240 }
241 }
242 else
243 s=ret->data;
244 memcpy(s,p,(int)len);
245 p+=len;
246 }
247 else
248 {
249 s=NULL;
250 if (ret->data != NULL) Free((char *)ret->data);
251 }
252
253 ret->length=(int)len;
254 ret->data=s;
255 ret->type=Ptag;
256 }
257
258 if (a != NULL) (*a)=ret;
259 *pp=p;
260 return(ret);
261 err:
262 if ((ret != NULL) && ((a == NULL) || (*a != ret)))
263 ASN1_STRING_free(ret);
264 ASN1err(ASN1_F_D2I_ASN1_BYTES,i);
265 return(NULL);
266 }
267
268
269 /* We are about to parse 0..n d2i_ASN1_bytes objects, we are to collapes
270 * them into the one struture that is then returned */
271 /* There have been a few bug fixes for this function from
272 * Paul Keogh <paul.keogh@sse.ie>, many thanks to him */
273 static int asn1_collate_primative(a,c)
274 ASN1_STRING *a;
275 ASN1_CTX *c;
276 {
277 ASN1_STRING *os=NULL;
278 BUF_MEM b;
279 int num;
280
281 b.length=0;
282 b.max=0;
283 b.data=NULL;
284
285 if (a == NULL)
286 {
287 c->error=ERR_R_PASSED_NULL_PARAMETER;
288 goto err;
289 }
290
291 num=0;
292 for (;;)
293 {
294 if (c->inf & 1)
295 {
296 c->eos=ASN1_check_infinite_end(&c->p,
297 (long)(c->max-c->p));
298 if (c->eos) break;
299 }
300 else
301 {
302 if (c->slen <= 0) break;
303 }
304
305 c->q=c->p;
306 if (d2i_ASN1_bytes(&os,&c->p,c->max-c->p,c->tag,c->xclass)
307 == NULL)
308 {
309 c->error=ERR_R_ASN1_LIB;
310 goto err;
311 }
312
313 if (!BUF_MEM_grow(&b,num+os->length))
314 {
315 c->error=ERR_R_BUF_LIB;
316 goto err;
317 }
318 memcpy(&(b.data[num]),os->data,os->length);
319 if (!(c->inf & 1))
320 c->slen-=(c->p-c->q);
321 num+=os->length;
322 }
323
324 if (!asn1_Finish(c)) goto err;
325
326 a->length=num;
327 if (a->data != NULL) Free(a->data);
328 a->data=(unsigned char *)b.data;
329 if (os != NULL) ASN1_STRING_free(os);
330 return(1);
331 err:
332 ASN1err(ASN1_F_ASN1_COLLATE_PRIMATIVE,c->error);
333 if (os != NULL) ASN1_STRING_free(os);
334 if (b.data != NULL) Free(b.data);
335 return(0);
336 }
337