Fix VMS/openssl_{startup,shutddown}.com.in
[openssl.git] / crypto / asn1 / a_d2i_fp.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2  * All rights reserved.
3  *
4  * This package is an SSL implementation written
5  * by Eric Young (eay@cryptsoft.com).
6  * The implementation was written so as to conform with Netscapes SSL.
7  *
8  * This library is free for commercial and non-commercial use as long as
9  * the following conditions are aheared to.  The following conditions
10  * apply to all code found in this distribution, be it the RC4, RSA,
11  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
12  * included with this distribution is covered by the same copyright terms
13  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14  *
15  * Copyright remains Eric Young's, and as such any Copyright notices in
16  * the code are not to be removed.
17  * If this package is used in a product, Eric Young should be given attribution
18  * as the author of the parts of the library used.
19  * This can be in the form of a textual message at program startup or
20  * in documentation (online or textual) provided with the package.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 3. All advertising materials mentioning features or use of this software
31  *    must display the following acknowledgement:
32  *    "This product includes cryptographic software written by
33  *     Eric Young (eay@cryptsoft.com)"
34  *    The word 'cryptographic' can be left out if the rouines from the library
35  *    being used are not cryptographic related :-).
36  * 4. If you include any Windows specific code (or a derivative thereof) from
37  *    the apps directory (application code) you must include an acknowledgement:
38  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  * SUCH DAMAGE.
51  *
52  * The licence and distribution terms for any publically available version or
53  * derivative of this code cannot be changed.  i.e. this code cannot simply be
54  * copied and put under another distribution licence
55  * [including the GNU Public Licence.]
56  */
57
58 #include <stdio.h>
59 #include <limits.h>
60 #include "internal/cryptlib.h"
61 #include <openssl/buffer.h>
62 #include <openssl/asn1.h>
63
64 static int asn1_d2i_read_bio(BIO *in, BUF_MEM **pb);
65
66 #ifndef NO_OLD_ASN1
67 # ifndef OPENSSL_NO_STDIO
68
69 void *ASN1_d2i_fp(void *(*xnew) (void), d2i_of_void *d2i, FILE *in, void **x)
70 {
71     BIO *b;
72     void *ret;
73
74     if ((b = BIO_new(BIO_s_file())) == NULL) {
75         ASN1err(ASN1_F_ASN1_D2I_FP, ERR_R_BUF_LIB);
76         return (NULL);
77     }
78     BIO_set_fp(b, in, BIO_NOCLOSE);
79     ret = ASN1_d2i_bio(xnew, d2i, b, x);
80     BIO_free(b);
81     return (ret);
82 }
83 # endif
84
85 void *ASN1_d2i_bio(void *(*xnew) (void), d2i_of_void *d2i, BIO *in, void **x)
86 {
87     BUF_MEM *b = NULL;
88     const unsigned char *p;
89     void *ret = NULL;
90     int len;
91
92     len = asn1_d2i_read_bio(in, &b);
93     if (len < 0)
94         goto err;
95
96     p = (unsigned char *)b->data;
97     ret = d2i(x, &p, len);
98  err:
99     BUF_MEM_free(b);
100     return (ret);
101 }
102
103 #endif
104
105 void *ASN1_item_d2i_bio(const ASN1_ITEM *it, BIO *in, void *x)
106 {
107     BUF_MEM *b = NULL;
108     const unsigned char *p;
109     void *ret = NULL;
110     int len;
111
112     len = asn1_d2i_read_bio(in, &b);
113     if (len < 0)
114         goto err;
115
116     p = (const unsigned char *)b->data;
117     ret = ASN1_item_d2i(x, &p, len, it);
118  err:
119     BUF_MEM_free(b);
120     return (ret);
121 }
122
123 #ifndef OPENSSL_NO_STDIO
124 void *ASN1_item_d2i_fp(const ASN1_ITEM *it, FILE *in, void *x)
125 {
126     BIO *b;
127     char *ret;
128
129     if ((b = BIO_new(BIO_s_file())) == NULL) {
130         ASN1err(ASN1_F_ASN1_ITEM_D2I_FP, ERR_R_BUF_LIB);
131         return (NULL);
132     }
133     BIO_set_fp(b, in, BIO_NOCLOSE);
134     ret = ASN1_item_d2i_bio(it, b, x);
135     BIO_free(b);
136     return (ret);
137 }
138 #endif
139
140 #define HEADER_SIZE   8
141 #define ASN1_CHUNK_INITIAL_SIZE (16 * 1024)
142 static int asn1_d2i_read_bio(BIO *in, BUF_MEM **pb)
143 {
144     BUF_MEM *b;
145     unsigned char *p;
146     int i;
147     size_t want = HEADER_SIZE;
148     int eos = 0;
149     size_t off = 0;
150     size_t len = 0;
151
152     const unsigned char *q;
153     long slen;
154     int inf, tag, xclass;
155
156     b = BUF_MEM_new();
157     if (b == NULL) {
158         ASN1err(ASN1_F_ASN1_D2I_READ_BIO, ERR_R_MALLOC_FAILURE);
159         return -1;
160     }
161
162     ERR_clear_error();
163     for (;;) {
164         if (want >= (len - off)) {
165             want -= (len - off);
166
167             if (len + want < len || !BUF_MEM_grow_clean(b, len + want)) {
168                 ASN1err(ASN1_F_ASN1_D2I_READ_BIO, ERR_R_MALLOC_FAILURE);
169                 goto err;
170             }
171             i = BIO_read(in, &(b->data[len]), want);
172             if ((i < 0) && ((len - off) == 0)) {
173                 ASN1err(ASN1_F_ASN1_D2I_READ_BIO, ASN1_R_NOT_ENOUGH_DATA);
174                 goto err;
175             }
176             if (i > 0) {
177                 if (len + i < len) {
178                     ASN1err(ASN1_F_ASN1_D2I_READ_BIO, ASN1_R_TOO_LONG);
179                     goto err;
180                 }
181                 len += i;
182             }
183         }
184         /* else data already loaded */
185
186         p = (unsigned char *)&(b->data[off]);
187         q = p;
188         inf = ASN1_get_object(&q, &slen, &tag, &xclass, len - off);
189         if (inf & 0x80) {
190             unsigned long e;
191
192             e = ERR_GET_REASON(ERR_peek_error());
193             if (e != ASN1_R_TOO_LONG)
194                 goto err;
195             else
196                 ERR_clear_error(); /* clear error */
197         }
198         i = q - p;            /* header length */
199         off += i;               /* end of data */
200
201         if (inf & 1) {
202             /* no data body so go round again */
203             eos++;
204             if (eos < 0) {
205                 ASN1err(ASN1_F_ASN1_D2I_READ_BIO, ASN1_R_HEADER_TOO_LONG);
206                 goto err;
207             }
208             want = HEADER_SIZE;
209         } else if (eos && (slen == 0) && (tag == V_ASN1_EOC)) {
210             /* eos value, so go back and read another header */
211             eos--;
212             if (eos <= 0)
213                 break;
214             else
215                 want = HEADER_SIZE;
216         } else {
217             /* suck in slen bytes of data */
218             want = slen;
219             if (want > (len - off)) {
220                 size_t chunk_max = ASN1_CHUNK_INITIAL_SIZE;
221
222                 want -= (len - off);
223                 if (want > INT_MAX /* BIO_read takes an int length */  ||
224                     len + want < len) {
225                     ASN1err(ASN1_F_ASN1_D2I_READ_BIO, ASN1_R_TOO_LONG);
226                     goto err;
227                 }
228                 while (want > 0) {
229                     /*
230                      * Read content in chunks of increasing size
231                      * so we can return an error for EOF without
232                      * having to allocate the entire content length
233                      * in one go.
234                      */
235                     size_t chunk = want > chunk_max ? chunk_max : want;
236
237                     if (!BUF_MEM_grow_clean(b, len + chunk)) {
238                         ASN1err(ASN1_F_ASN1_D2I_READ_BIO, ERR_R_MALLOC_FAILURE);
239                         goto err;
240                     }
241                     want -= chunk;
242                     while (chunk > 0) {
243                         i = BIO_read(in, &(b->data[len]), chunk);
244                         if (i <= 0) {
245                             ASN1err(ASN1_F_ASN1_D2I_READ_BIO,
246                                     ASN1_R_NOT_ENOUGH_DATA);
247                             goto err;
248                         }
249                     /*
250                      * This can't overflow because |len+want| didn't
251                      * overflow.
252                      */
253                         len += i;
254                         chunk -= i;
255                     }
256                     if (chunk_max < INT_MAX/2)
257                         chunk_max *= 2;
258                 }
259             }
260             if (off + slen < off) {
261                 ASN1err(ASN1_F_ASN1_D2I_READ_BIO, ASN1_R_TOO_LONG);
262                 goto err;
263             }
264             off += slen;
265             if (eos <= 0) {
266                 break;
267             } else
268                 want = HEADER_SIZE;
269         }
270     }
271
272     if (off > INT_MAX) {
273         ASN1err(ASN1_F_ASN1_D2I_READ_BIO, ASN1_R_TOO_LONG);
274         goto err;
275     }
276
277     *pb = b;
278     return off;
279  err:
280     BUF_MEM_free(b);
281     return -1;
282 }