sl@0
|
1 |
/* crypto/asn1/a_d2i_fp.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/buffer.h>
|
sl@0
|
62 |
#include <openssl/asn1_mac.h>
|
sl@0
|
63 |
|
sl@0
|
64 |
static int asn1_d2i_read_bio(BIO *in, BUF_MEM **pb);
|
sl@0
|
65 |
|
sl@0
|
66 |
#ifndef NO_OLD_ASN1
|
sl@0
|
67 |
#ifndef OPENSSL_NO_FP_API
|
sl@0
|
68 |
|
sl@0
|
69 |
EXPORT_C void *ASN1_d2i_fp(void *(*xnew)(void), d2i_of_void *d2i, FILE *in, void **x)
|
sl@0
|
70 |
{
|
sl@0
|
71 |
BIO *b;
|
sl@0
|
72 |
void *ret;
|
sl@0
|
73 |
|
sl@0
|
74 |
if ((b=BIO_new(BIO_s_file())) == NULL)
|
sl@0
|
75 |
{
|
sl@0
|
76 |
ASN1err(ASN1_F_ASN1_D2I_FP,ERR_R_BUF_LIB);
|
sl@0
|
77 |
return(NULL);
|
sl@0
|
78 |
}
|
sl@0
|
79 |
BIO_set_fp(b,in,BIO_NOCLOSE);
|
sl@0
|
80 |
ret=ASN1_d2i_bio(xnew,d2i,b,x);
|
sl@0
|
81 |
BIO_free(b);
|
sl@0
|
82 |
return(ret);
|
sl@0
|
83 |
}
|
sl@0
|
84 |
#endif
|
sl@0
|
85 |
|
sl@0
|
86 |
EXPORT_C void *ASN1_d2i_bio(void *(*xnew)(void), d2i_of_void *d2i, BIO *in, void **x)
|
sl@0
|
87 |
{
|
sl@0
|
88 |
BUF_MEM *b = NULL;
|
sl@0
|
89 |
const unsigned char *p;
|
sl@0
|
90 |
void *ret=NULL;
|
sl@0
|
91 |
int len;
|
sl@0
|
92 |
|
sl@0
|
93 |
len = asn1_d2i_read_bio(in, &b);
|
sl@0
|
94 |
if(len < 0) goto err;
|
sl@0
|
95 |
|
sl@0
|
96 |
p=(unsigned char *)b->data;
|
sl@0
|
97 |
ret=d2i(x,&p,len);
|
sl@0
|
98 |
err:
|
sl@0
|
99 |
if (b != NULL) BUF_MEM_free(b);
|
sl@0
|
100 |
return(ret);
|
sl@0
|
101 |
}
|
sl@0
|
102 |
|
sl@0
|
103 |
#endif
|
sl@0
|
104 |
|
sl@0
|
105 |
EXPORT_C void *ASN1_item_d2i_bio(const ASN1_ITEM *it, BIO *in, void *x)
|
sl@0
|
106 |
{
|
sl@0
|
107 |
BUF_MEM *b = NULL;
|
sl@0
|
108 |
const unsigned char *p;
|
sl@0
|
109 |
void *ret=NULL;
|
sl@0
|
110 |
int len;
|
sl@0
|
111 |
|
sl@0
|
112 |
len = asn1_d2i_read_bio(in, &b);
|
sl@0
|
113 |
if(len < 0) goto err;
|
sl@0
|
114 |
|
sl@0
|
115 |
p=(const unsigned char *)b->data;
|
sl@0
|
116 |
ret=ASN1_item_d2i(x,&p,len, it);
|
sl@0
|
117 |
err:
|
sl@0
|
118 |
if (b != NULL) BUF_MEM_free(b);
|
sl@0
|
119 |
return(ret);
|
sl@0
|
120 |
}
|
sl@0
|
121 |
|
sl@0
|
122 |
#ifndef OPENSSL_NO_FP_API
|
sl@0
|
123 |
EXPORT_C void *ASN1_item_d2i_fp(const ASN1_ITEM *it, FILE *in, void *x)
|
sl@0
|
124 |
{
|
sl@0
|
125 |
BIO *b;
|
sl@0
|
126 |
char *ret;
|
sl@0
|
127 |
|
sl@0
|
128 |
if ((b=BIO_new(BIO_s_file())) == NULL)
|
sl@0
|
129 |
{
|
sl@0
|
130 |
ASN1err(ASN1_F_ASN1_ITEM_D2I_FP,ERR_R_BUF_LIB);
|
sl@0
|
131 |
return(NULL);
|
sl@0
|
132 |
}
|
sl@0
|
133 |
BIO_set_fp(b,in,BIO_NOCLOSE);
|
sl@0
|
134 |
ret=ASN1_item_d2i_bio(it,b,x);
|
sl@0
|
135 |
BIO_free(b);
|
sl@0
|
136 |
return(ret);
|
sl@0
|
137 |
}
|
sl@0
|
138 |
#endif
|
sl@0
|
139 |
|
sl@0
|
140 |
#define HEADER_SIZE 8
|
sl@0
|
141 |
static int asn1_d2i_read_bio(BIO *in, BUF_MEM **pb)
|
sl@0
|
142 |
{
|
sl@0
|
143 |
BUF_MEM *b;
|
sl@0
|
144 |
unsigned char *p;
|
sl@0
|
145 |
int i;
|
sl@0
|
146 |
int ret=-1;
|
sl@0
|
147 |
ASN1_const_CTX c;
|
sl@0
|
148 |
int want=HEADER_SIZE;
|
sl@0
|
149 |
int eos=0;
|
sl@0
|
150 |
#if defined(__GNUC__) && defined(__ia64)
|
sl@0
|
151 |
/* pathetic compiler bug in all known versions as of Nov. 2002 */
|
sl@0
|
152 |
long off=0;
|
sl@0
|
153 |
#else
|
sl@0
|
154 |
int off=0;
|
sl@0
|
155 |
#endif
|
sl@0
|
156 |
int len=0;
|
sl@0
|
157 |
|
sl@0
|
158 |
b=BUF_MEM_new();
|
sl@0
|
159 |
if (b == NULL)
|
sl@0
|
160 |
{
|
sl@0
|
161 |
ASN1err(ASN1_F_ASN1_D2I_READ_BIO,ERR_R_MALLOC_FAILURE);
|
sl@0
|
162 |
return -1;
|
sl@0
|
163 |
}
|
sl@0
|
164 |
|
sl@0
|
165 |
ERR_clear_error();
|
sl@0
|
166 |
for (;;)
|
sl@0
|
167 |
{
|
sl@0
|
168 |
if (want >= (len-off))
|
sl@0
|
169 |
{
|
sl@0
|
170 |
want-=(len-off);
|
sl@0
|
171 |
|
sl@0
|
172 |
if (!BUF_MEM_grow_clean(b,len+want))
|
sl@0
|
173 |
{
|
sl@0
|
174 |
ASN1err(ASN1_F_ASN1_D2I_READ_BIO,ERR_R_MALLOC_FAILURE);
|
sl@0
|
175 |
goto err;
|
sl@0
|
176 |
}
|
sl@0
|
177 |
i=BIO_read(in,&(b->data[len]),want);
|
sl@0
|
178 |
if ((i < 0) && ((len-off) == 0))
|
sl@0
|
179 |
{
|
sl@0
|
180 |
ASN1err(ASN1_F_ASN1_D2I_READ_BIO,ASN1_R_NOT_ENOUGH_DATA);
|
sl@0
|
181 |
goto err;
|
sl@0
|
182 |
}
|
sl@0
|
183 |
if (i > 0)
|
sl@0
|
184 |
len+=i;
|
sl@0
|
185 |
}
|
sl@0
|
186 |
/* else data already loaded */
|
sl@0
|
187 |
|
sl@0
|
188 |
p=(unsigned char *)&(b->data[off]);
|
sl@0
|
189 |
c.p=p;
|
sl@0
|
190 |
c.inf=ASN1_get_object(&(c.p),&(c.slen),&(c.tag),&(c.xclass),
|
sl@0
|
191 |
len-off);
|
sl@0
|
192 |
if (c.inf & 0x80)
|
sl@0
|
193 |
{
|
sl@0
|
194 |
unsigned long e;
|
sl@0
|
195 |
|
sl@0
|
196 |
e=ERR_GET_REASON(ERR_peek_error());
|
sl@0
|
197 |
if (e != ASN1_R_TOO_LONG)
|
sl@0
|
198 |
goto err;
|
sl@0
|
199 |
else
|
sl@0
|
200 |
ERR_clear_error(); /* clear error */
|
sl@0
|
201 |
}
|
sl@0
|
202 |
i=c.p-p;/* header length */
|
sl@0
|
203 |
off+=i; /* end of data */
|
sl@0
|
204 |
|
sl@0
|
205 |
if (c.inf & 1)
|
sl@0
|
206 |
{
|
sl@0
|
207 |
/* no data body so go round again */
|
sl@0
|
208 |
eos++;
|
sl@0
|
209 |
want=HEADER_SIZE;
|
sl@0
|
210 |
}
|
sl@0
|
211 |
else if (eos && (c.slen == 0) && (c.tag == V_ASN1_EOC))
|
sl@0
|
212 |
{
|
sl@0
|
213 |
/* eos value, so go back and read another header */
|
sl@0
|
214 |
eos--;
|
sl@0
|
215 |
if (eos <= 0)
|
sl@0
|
216 |
break;
|
sl@0
|
217 |
else
|
sl@0
|
218 |
want=HEADER_SIZE;
|
sl@0
|
219 |
}
|
sl@0
|
220 |
else
|
sl@0
|
221 |
{
|
sl@0
|
222 |
/* suck in c.slen bytes of data */
|
sl@0
|
223 |
want=(int)c.slen;
|
sl@0
|
224 |
if (want > (len-off))
|
sl@0
|
225 |
{
|
sl@0
|
226 |
want-=(len-off);
|
sl@0
|
227 |
if (!BUF_MEM_grow_clean(b,len+want))
|
sl@0
|
228 |
{
|
sl@0
|
229 |
ASN1err(ASN1_F_ASN1_D2I_READ_BIO,ERR_R_MALLOC_FAILURE);
|
sl@0
|
230 |
goto err;
|
sl@0
|
231 |
}
|
sl@0
|
232 |
while (want > 0)
|
sl@0
|
233 |
{
|
sl@0
|
234 |
i=BIO_read(in,&(b->data[len]),want);
|
sl@0
|
235 |
if (i <= 0)
|
sl@0
|
236 |
{
|
sl@0
|
237 |
ASN1err(ASN1_F_ASN1_D2I_READ_BIO,
|
sl@0
|
238 |
ASN1_R_NOT_ENOUGH_DATA);
|
sl@0
|
239 |
goto err;
|
sl@0
|
240 |
}
|
sl@0
|
241 |
len+=i;
|
sl@0
|
242 |
want -= i;
|
sl@0
|
243 |
}
|
sl@0
|
244 |
}
|
sl@0
|
245 |
off+=(int)c.slen;
|
sl@0
|
246 |
if (eos <= 0)
|
sl@0
|
247 |
{
|
sl@0
|
248 |
break;
|
sl@0
|
249 |
}
|
sl@0
|
250 |
else
|
sl@0
|
251 |
want=HEADER_SIZE;
|
sl@0
|
252 |
}
|
sl@0
|
253 |
}
|
sl@0
|
254 |
|
sl@0
|
255 |
*pb = b;
|
sl@0
|
256 |
return off;
|
sl@0
|
257 |
err:
|
sl@0
|
258 |
if (b != NULL) BUF_MEM_free(b);
|
sl@0
|
259 |
return(ret);
|
sl@0
|
260 |
}
|