This commit was generated by cvs2svn to track changes on a CVS vendor
[openssl.git] / crypto / bio / bss_mem.c
1 /* crypto/bio/bss_mem.c */
2 /* Copyright (C) 1995-1998 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 <errno.h>
61 #include "cryptlib.h"
62 #include "bio.h"
63
64 #ifndef NOPROTO
65 static int mem_write(BIO *h,char *buf,int num);
66 static int mem_read(BIO *h,char *buf,int size);
67 static int mem_puts(BIO *h,char *str);
68 static int mem_gets(BIO *h,char *str,int size);
69 static long mem_ctrl(BIO *h,int cmd,long arg1,char *arg2);
70 static int mem_new(BIO *h);
71 static int mem_free(BIO *data);
72 #else
73 static int mem_write();
74 static int mem_read();
75 static int mem_puts();
76 static int mem_gets();
77 static long mem_ctrl();
78 static int mem_new();
79 static int mem_free();
80 #endif
81
82 static BIO_METHOD mem_method=
83         {
84         BIO_TYPE_MEM,
85         "memory buffer",
86         mem_write,
87         mem_read,
88         mem_puts,
89         mem_gets,
90         mem_ctrl,
91         mem_new,
92         mem_free,
93         };
94
95 /* bio->num is used to hold the value to return on 'empty', if it is
96  * 0, should_retry is not set */
97
98 BIO_METHOD *BIO_s_mem()
99         {
100         return(&mem_method);
101         }
102
103 static int mem_new(bi)
104 BIO *bi;
105         {
106         BUF_MEM *b;
107
108         if ((b=BUF_MEM_new()) == NULL)
109                 return(0);
110         bi->shutdown=1;
111         bi->init=1;
112         bi->num= -1;
113         bi->ptr=(char *)b;
114         return(1);
115         }
116
117 static int mem_free(a)
118 BIO *a;
119         {
120         if (a == NULL) return(0);
121         if (a->shutdown)
122                 {
123                 if ((a->init) && (a->ptr != NULL))
124                         {
125                         BUF_MEM_free((BUF_MEM *)a->ptr);
126                         a->ptr=NULL;
127                         }
128                 }
129         return(1);
130         }
131         
132 static int mem_read(b,out,outl)
133 BIO *b;
134 char *out;
135 int outl;
136         {
137         int ret= -1;
138         BUF_MEM *bm;
139         int i;
140         char *from,*to;
141
142         bm=(BUF_MEM *)b->ptr;
143         BIO_clear_retry_flags(b);
144         ret=(outl > bm->length)?bm->length:outl;
145         if ((out != NULL) && (ret > 0))
146                 {
147                 memcpy(out,bm->data,ret);
148                 bm->length-=ret;
149                 /* memmove(&(bm->data[0]),&(bm->data[ret]), bm->length); */
150                 from=(char *)&(bm->data[ret]);
151                 to=(char *)&(bm->data[0]);
152                 for (i=0; i<bm->length; i++)
153                         to[i]=from[i];
154                 }
155         else if (bm->length == 0)
156                 {
157                 if (b->num != 0)
158                         BIO_set_retry_read(b);
159                 ret= b->num;
160                 }
161         return(ret);
162         }
163
164 static int mem_write(b,in,inl)
165 BIO *b;
166 char *in;
167 int inl;
168         {
169         int ret= -1;
170         int blen;
171         BUF_MEM *bm;
172
173         bm=(BUF_MEM *)b->ptr;
174         if (in == NULL)
175                 {
176                 BIOerr(BIO_F_MEM_WRITE,BIO_R_NULL_PARAMETER);
177                 goto end;
178                 }
179
180         BIO_clear_retry_flags(b);
181         blen=bm->length;
182         if (BUF_MEM_grow(bm,blen+inl) != (blen+inl))
183                 goto end;
184         memcpy(&(bm->data[blen]),in,inl);
185         ret=inl;
186 end:
187         return(ret);
188         }
189
190 static long mem_ctrl(b,cmd,num,ptr)
191 BIO *b;
192 int cmd;
193 long num;
194 char *ptr;
195         {
196         long ret=1;
197         char **pptr;
198
199         BUF_MEM *bm=(BUF_MEM *)b->ptr;
200
201         switch (cmd)
202                 {
203         case BIO_CTRL_RESET:
204                 if (bm->data != NULL)
205                         memset(bm->data,0,bm->max);
206                 bm->length=0;
207                 break;
208         case BIO_CTRL_EOF:
209                 ret=(long)(bm->length == 0);
210                 break;
211         case BIO_C_SET_BUF_MEM_EOF_RETURN:
212                 b->num=(int)num;
213                 break;
214         case BIO_CTRL_INFO:
215                 ret=(long)bm->length;
216                 if (ptr != NULL)
217                         {
218                         pptr=(char **)ptr;
219                         *pptr=(char *)&(bm->data[0]);
220                         }
221                 break;
222         case BIO_C_SET_BUF_MEM:
223                 mem_free(b);
224                 b->shutdown=(int)num;
225                 b->ptr=ptr;
226                 break;
227         case BIO_C_GET_BUF_MEM_PTR:
228                 if (ptr != NULL)
229                         {
230                         pptr=(char **)ptr;
231                         *pptr=(char *)bm;
232                         }
233                 break;
234         case BIO_CTRL_GET_CLOSE:
235                 ret=(long)b->shutdown;
236                 break;
237         case BIO_CTRL_SET_CLOSE:
238                 b->shutdown=(int)num;
239                 break;
240
241         case BIO_CTRL_WPENDING:
242                 ret=0L;
243                 break;
244         case BIO_CTRL_PENDING:
245                 ret=(long)bm->length;
246                 break;
247         case BIO_CTRL_DUP:
248         case BIO_CTRL_FLUSH:
249                 ret=1;
250                 break;
251         case BIO_CTRL_PUSH:
252         case BIO_CTRL_POP:
253         default:
254                 ret=0;
255                 break;
256                 }
257         return(ret);
258         }
259
260 static int mem_gets(bp,buf,size)
261 BIO *bp;
262 char *buf;
263 int size;
264         {
265         int i,j;
266         int ret= -1;
267         char *p;
268         BUF_MEM *bm=(BUF_MEM *)bp->ptr;
269
270         BIO_clear_retry_flags(bp);
271         j=bm->length;
272         if (j <= 0) return(0);
273         p=bm->data;
274         for (i=0; i<j; i++)
275                 {
276                 if (p[i] == '\n') break;
277                 }
278         if (i == j)
279                 {
280                 BIO_set_retry_read(bp);
281                 /* return(-1);  change the semantics 0.6.6a */ 
282                 }
283         else
284                 i++;
285         /* i is the max to copy */
286         if ((size-1) < i) i=size-1;
287         i=mem_read(bp,buf,i);
288         if (i > 0) buf[i]='\0';
289         ret=i;
290         return(ret);
291         }
292
293 static int mem_puts(bp,str)
294 BIO *bp;
295 char *str;
296         {
297         int n,ret;
298
299         n=strlen(str);
300         ret=mem_write(bp,str,n);
301         /* memory semantics is that it will always work */
302         return(ret);
303         }
304