Don't leak memory on failure to create a mem BIO
[openssl.git] / crypto / bio / bss_mem.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 <errno.h>
60 #include "bio_lcl.h"
61 #include "internal/cryptlib.h"
62
63 static int mem_write(BIO *h, const char *buf, int num);
64 static int mem_read(BIO *h, char *buf, int size);
65 static int mem_puts(BIO *h, const char *str);
66 static int mem_gets(BIO *h, char *str, int size);
67 static long mem_ctrl(BIO *h, int cmd, long arg1, void *arg2);
68 static int mem_new(BIO *h);
69 static int secmem_new(BIO *h);
70 static int mem_free(BIO *data);
71 static int mem_buf_free(BIO *data, int free_all);
72 static int mem_buf_sync(BIO *h);
73
74 static const BIO_METHOD mem_method = {
75     BIO_TYPE_MEM,
76     "memory buffer",
77     mem_write,
78     mem_read,
79     mem_puts,
80     mem_gets,
81     mem_ctrl,
82     mem_new,
83     mem_free,
84     NULL,
85 };
86
87 static const BIO_METHOD secmem_method = {
88     BIO_TYPE_MEM,
89     "secure memory buffer",
90     mem_write,
91     mem_read,
92     mem_puts,
93     mem_gets,
94     mem_ctrl,
95     secmem_new,
96     mem_free,
97     NULL,
98 };
99
100 /* BIO memory stores buffer and read pointer  */
101 typedef struct bio_buf_mem_st {
102     struct buf_mem_st *buf;   /* allocated buffer */
103     struct buf_mem_st *readp; /* read pointer */
104 } BIO_BUF_MEM;
105
106 /*
107  * bio->num is used to hold the value to return on 'empty', if it is 0,
108  * should_retry is not set
109  */
110
111 const BIO_METHOD *BIO_s_mem(void)
112 {
113     return (&mem_method);
114 }
115
116 const BIO_METHOD *BIO_s_secmem(void)
117 {
118     return(&secmem_method);
119 }
120
121 BIO *BIO_new_mem_buf(const void *buf, int len)
122 {
123     BIO *ret;
124     BUF_MEM *b;
125     BIO_BUF_MEM *bb;
126     size_t sz;
127
128     if (buf == NULL) {
129         BIOerr(BIO_F_BIO_NEW_MEM_BUF, BIO_R_NULL_PARAMETER);
130         return NULL;
131     }
132     sz = (len < 0) ? strlen(buf) : (size_t)len;
133     if ((ret = BIO_new(BIO_s_mem())) == NULL)
134         return NULL;
135     bb = (BIO_BUF_MEM *)ret->ptr;
136     b = bb->buf;
137     /* Cast away const and trust in the MEM_RDONLY flag. */
138     b->data = (void *)buf;
139     b->length = sz;
140     b->max = sz;
141     *bb->readp = *bb->buf;
142     ret->flags |= BIO_FLAGS_MEM_RDONLY;
143     /* Since this is static data retrying wont help */
144     ret->num = 0;
145     return ret;
146 }
147
148 static int mem_init(BIO *bi, unsigned long flags)
149 {
150     BIO_BUF_MEM *bb = OPENSSL_zalloc(sizeof(*bb));
151
152     if (bb == NULL)
153         return 0;
154     if ((bb->buf = BUF_MEM_new_ex(flags)) == NULL) {
155         OPENSSL_free(bb);
156         return 0;
157     }
158     if ((bb->readp = OPENSSL_zalloc(sizeof(*bb->readp))) == NULL) {
159         BUF_MEM_free(bb->buf);
160         OPENSSL_free(bb);
161         return 0;
162     }
163     *bb->readp = *bb->buf;
164     bi->shutdown = 1;
165     bi->init = 1;
166     bi->num = -1;
167     bi->ptr = (char *)bb;
168     return 1;
169 }
170
171 static int mem_new(BIO *bi)
172 {
173     return (mem_init(bi, 0L));
174 }
175
176 static int secmem_new(BIO *bi)
177 {
178     return (mem_init(bi, BUF_MEM_FLAG_SECURE));
179 }
180
181 static int mem_free(BIO *a)
182 {
183     return (mem_buf_free(a, 1));
184 }
185
186 static int mem_buf_free(BIO *a, int free_all)
187 {
188     if (a == NULL)
189         return (0);
190     if (a->shutdown) {
191         if ((a->init) && (a->ptr != NULL)) {
192             BUF_MEM *b;
193             BIO_BUF_MEM *bb = (BIO_BUF_MEM *)a->ptr;
194
195             if(bb != NULL) {
196                 b = bb->buf;
197                 if (a->flags & BIO_FLAGS_MEM_RDONLY)
198                     b->data = NULL;
199                 BUF_MEM_free(b);
200                 if(free_all) {
201                     OPENSSL_free(bb->readp);
202                     OPENSSL_free(bb);
203                 }
204             }
205             a->ptr = NULL;
206         }
207     }
208     return (1);
209 }
210
211 /*
212  * Reallocate memory buffer if read pointer differs
213  */
214 static int mem_buf_sync(BIO *b)
215 {
216     if((b != NULL) && (b->init) && (b->ptr != NULL)) {
217         BIO_BUF_MEM *bbm = (BIO_BUF_MEM *)b->ptr;
218
219         if(bbm->readp->data != bbm->buf->data) {
220             memmove(bbm->buf->data, bbm->readp->data, bbm->readp->length);
221             bbm->buf->length = bbm->readp->length;
222             bbm->readp->data = bbm->buf->data;
223         }
224     }
225     return (0);
226 }
227
228 static int mem_read(BIO *b, char *out, int outl)
229 {
230     int ret = -1;
231     BIO_BUF_MEM *bbm = (BIO_BUF_MEM *)b->ptr;
232     BUF_MEM *bm = bbm->readp;
233
234     BIO_clear_retry_flags(b);
235     ret = (outl >= 0 && (size_t)outl > bm->length) ? (int)bm->length : outl;
236     if ((out != NULL) && (ret > 0)) {
237         memcpy(out, bm->data, ret);
238         bm->length -= ret;
239         bm->data += ret;
240     } else if (bm->length == 0) {
241         ret = b->num;
242         if (ret != 0)
243             BIO_set_retry_read(b);
244     }
245     return (ret);
246 }
247
248 static int mem_write(BIO *b, const char *in, int inl)
249 {
250     int ret = -1;
251     int blen;
252     BIO_BUF_MEM *bbm = (BIO_BUF_MEM *)b->ptr;
253
254     if (in == NULL) {
255         BIOerr(BIO_F_MEM_WRITE, BIO_R_NULL_PARAMETER);
256         goto end;
257     }
258     if (b->flags & BIO_FLAGS_MEM_RDONLY) {
259         BIOerr(BIO_F_MEM_WRITE, BIO_R_WRITE_TO_READ_ONLY_BIO);
260         goto end;
261     }
262     BIO_clear_retry_flags(b);
263     blen = bbm->readp->length;
264     mem_buf_sync(b);
265     if (BUF_MEM_grow_clean(bbm->buf, blen + inl) == 0)
266         goto end;
267     memcpy(bbm->buf->data + blen, in, inl);
268     *bbm->readp = *bbm->buf;
269     ret = inl;
270  end:
271     return (ret);
272 }
273
274 static long mem_ctrl(BIO *b, int cmd, long num, void *ptr)
275 {
276     long ret = 1;
277     char **pptr;
278     BIO_BUF_MEM *bbm = (BIO_BUF_MEM *)b->ptr;
279     BUF_MEM *bm;
280
281     switch (cmd) {
282     case BIO_CTRL_RESET:
283         bm = bbm->buf;
284         if (bm->data != NULL) {
285             /* For read only case reset to the start again */
286             if ((b->flags & BIO_FLAGS_MEM_RDONLY) || (b->flags & BIO_FLAGS_NONCLEAR_RST)) {
287                 bm->length = bm->max;
288             } else {
289                 memset(bm->data, 0, bm->max);
290                 bm->length = 0;
291             }
292             *bbm->readp = *bbm->buf;
293         }
294         break;
295     case BIO_CTRL_EOF:
296         bm = bbm->readp;
297         ret = (long)(bm->length == 0);
298         break;
299     case BIO_C_SET_BUF_MEM_EOF_RETURN:
300         b->num = (int)num;
301         break;
302     case BIO_CTRL_INFO:
303         bm = bbm->readp;
304         ret = (long)bm->length;
305         if (ptr != NULL) {
306             pptr = (char **)ptr;
307             *pptr = (char *)&(bm->data[0]);
308         }
309         break;
310     case BIO_C_SET_BUF_MEM:
311         mem_buf_free(b, 0);
312         b->shutdown = (int)num;
313         bbm->buf = ptr;
314         *bbm->readp = *bbm->buf;
315         b->ptr = bbm;
316         break;
317     case BIO_C_GET_BUF_MEM_PTR:
318         if (ptr != NULL) {
319             mem_buf_sync(b);
320             bm = bbm->readp;
321             pptr = (char **)ptr;
322             *pptr = (char *)bm;
323         }
324         break;
325     case BIO_CTRL_GET_CLOSE:
326         ret = (long)b->shutdown;
327         break;
328     case BIO_CTRL_SET_CLOSE:
329         b->shutdown = (int)num;
330         break;
331     case BIO_CTRL_WPENDING:
332         ret = 0L;
333         break;
334     case BIO_CTRL_PENDING:
335         bm = bbm->readp;
336         ret = (long)bm->length;
337         break;
338     case BIO_CTRL_DUP:
339     case BIO_CTRL_FLUSH:
340         ret = 1;
341         break;
342     case BIO_CTRL_PUSH:
343     case BIO_CTRL_POP:
344     default:
345         ret = 0;
346         break;
347     }
348     return (ret);
349 }
350
351 static int mem_gets(BIO *bp, char *buf, int size)
352 {
353     int i, j;
354     int ret = -1;
355     char *p;
356     BIO_BUF_MEM *bbm = (BIO_BUF_MEM *)bp->ptr;
357     BUF_MEM *bm = bbm->readp;
358
359     BIO_clear_retry_flags(bp);
360     j = bm->length;
361     if ((size - 1) < j)
362         j = size - 1;
363     if (j <= 0) {
364         *buf = '\0';
365         return 0;
366     }
367     p = bm->data;
368     for (i = 0; i < j; i++) {
369         if (p[i] == '\n') {
370             i++;
371             break;
372         }
373     }
374
375     /*
376      * i is now the max num of bytes to copy, either j or up to
377      * and including the first newline
378      */
379
380     i = mem_read(bp, buf, i);
381     if (i > 0)
382         buf[i] = '\0';
383     ret = i;
384     return (ret);
385 }
386
387 static int mem_puts(BIO *bp, const char *str)
388 {
389     int n, ret;
390
391     n = strlen(str);
392     ret = mem_write(bp, str, n);
393     /* memory semantics is that it will always work */
394     return (ret);
395 }