blob: ac6d441aadb9f623634b90d9bd51748c8e3071c2 [file] [log] [blame]
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001/* crypto/evp/bio_b64.c */
Ralf S. Engelschall58964a41998-12-21 10:56:39 +00002/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00003 * 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"
Bodo Möllerec577821999-04-23 22:13:45 +000062#include <openssl/buffer.h>
63#include <openssl/evp.h>
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000064
Ulf Möller0e1c0612000-05-15 22:54:43 +000065static int b64_write(BIO *h, const char *buf, int num);
66static int b64_read(BIO *h, char *buf, int size);
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +000067static int b64_puts(BIO *h, const char *str);
Ulf Möller0e1c0612000-05-15 22:54:43 +000068/*static int b64_gets(BIO *h, char *str, int size); */
69static long b64_ctrl(BIO *h, int cmd, long arg1, void *arg2);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000070static int b64_new(BIO *h);
71static int b64_free(BIO *data);
Dr. Stephen Henson13083212000-06-21 02:25:30 +000072static long b64_callback_ctrl(BIO *h,int cmd,bio_info_cb *fp);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000073#define B64_BLOCK_SIZE 1024
Ralf S. Engelschall58964a41998-12-21 10:56:39 +000074#define B64_BLOCK_SIZE2 768
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000075#define B64_NONE 0
76#define B64_ENCODE 1
77#define B64_DECODE 2
78
79typedef struct b64_struct
80 {
81 /*BIO *bio; moved to the BIO structure */
82 int buf_len;
83 int buf_off;
84 int tmp_len; /* used to find the start when decoding */
85 int tmp_nl; /* If true, scan until '\n' */
86 int encode;
87 int start; /* have we started decoding yet? */
88 int cont; /* <= 0 when finished */
89 EVP_ENCODE_CTX base64;
90 char buf[EVP_ENCODE_LENGTH(B64_BLOCK_SIZE)+10];
91 char tmp[B64_BLOCK_SIZE];
92 } BIO_B64_CTX;
93
94static BIO_METHOD methods_b64=
95 {
96 BIO_TYPE_BASE64,"base64 encoding",
97 b64_write,
98 b64_read,
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +000099 b64_puts,
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000100 NULL, /* b64_gets, */
101 b64_ctrl,
102 b64_new,
103 b64_free,
Richard Levitted3442bc2000-02-20 23:43:02 +0000104 b64_callback_ctrl,
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000105 };
106
Ulf Möller6b691a51999-04-19 21:31:43 +0000107BIO_METHOD *BIO_f_base64(void)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000108 {
109 return(&methods_b64);
110 }
111
Ulf Möller6b691a51999-04-19 21:31:43 +0000112static int b64_new(BIO *bi)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000113 {
114 BIO_B64_CTX *ctx;
115
Richard Levitte26a3a482000-06-01 22:19:21 +0000116 ctx=(BIO_B64_CTX *)OPENSSL_malloc(sizeof(BIO_B64_CTX));
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000117 if (ctx == NULL) return(0);
118
119 ctx->buf_len=0;
120 ctx->tmp_len=0;
121 ctx->tmp_nl=0;
122 ctx->buf_off=0;
123 ctx->cont=1;
124 ctx->start=1;
125 ctx->encode=0;
126
127 bi->init=1;
128 bi->ptr=(char *)ctx;
129 bi->flags=0;
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000130 bi->num = 0;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000131 return(1);
132 }
133
Ulf Möller6b691a51999-04-19 21:31:43 +0000134static int b64_free(BIO *a)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000135 {
136 if (a == NULL) return(0);
Richard Levitte26a3a482000-06-01 22:19:21 +0000137 OPENSSL_free(a->ptr);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000138 a->ptr=NULL;
139 a->init=0;
140 a->flags=0;
141 return(1);
142 }
143
Ulf Möller6b691a51999-04-19 21:31:43 +0000144static int b64_read(BIO *b, char *out, int outl)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000145 {
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000146 int ret=0,i,ii,j,k,x,n,num,ret_code=0;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000147 BIO_B64_CTX *ctx;
148 unsigned char *p,*q;
149
150 if (out == NULL) return(0);
151 ctx=(BIO_B64_CTX *)b->ptr;
152
153 if ((ctx == NULL) || (b->next_bio == NULL)) return(0);
154
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000155 BIO_clear_retry_flags(b);
156
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000157 if (ctx->encode != B64_DECODE)
158 {
159 ctx->encode=B64_DECODE;
160 ctx->buf_len=0;
161 ctx->buf_off=0;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000162 ctx->tmp_len=0;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000163 EVP_DecodeInit(&(ctx->base64));
164 }
165
166 /* First check if there are bytes decoded/encoded */
167 if (ctx->buf_len > 0)
168 {
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000169 OPENSSL_assert(ctx->buf_len >= ctx->buf_off);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000170 i=ctx->buf_len-ctx->buf_off;
171 if (i > outl) i=outl;
Geoff Thorpe27545972003-10-29 20:24:15 +0000172 OPENSSL_assert(ctx->buf_off+i < (int)sizeof(ctx->buf));
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000173 memcpy(out,&(ctx->buf[ctx->buf_off]),i);
174 ret=i;
175 out+=i;
176 outl-=i;
177 ctx->buf_off+=i;
178 if (ctx->buf_len == ctx->buf_off)
179 {
180 ctx->buf_len=0;
181 ctx->buf_off=0;
182 }
183 }
184
185 /* At this point, we have room of outl bytes and an empty
186 * buffer, so we should read in some more. */
187
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000188 ret_code=0;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000189 while (outl > 0)
190 {
Dr. Stephen Henson5562cfa2003-02-22 02:12:52 +0000191 if (ctx->cont <= 0)
192 break;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000193
194 i=BIO_read(b->next_bio,&(ctx->tmp[ctx->tmp_len]),
195 B64_BLOCK_SIZE-ctx->tmp_len);
196
197 if (i <= 0)
198 {
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000199 ret_code=i;
200
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000201 /* Should we continue next time we are called? */
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000202 if (!BIO_should_retry(b->next_bio))
Dr. Stephen Henson5562cfa2003-02-22 02:12:52 +0000203 {
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000204 ctx->cont=i;
Dr. Stephen Henson5562cfa2003-02-22 02:12:52 +0000205 /* If buffer empty break */
206 if(ctx->tmp_len == 0)
207 break;
208 /* Fall through and process what we have */
209 else
210 i = 0;
211 }
212 /* else we retry and add more data to buffer */
213 else
214 break;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000215 }
216 i+=ctx->tmp_len;
Dr. Stephen Henson5562cfa2003-02-22 02:12:52 +0000217 ctx->tmp_len = i;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000218
219 /* We need to scan, a line at a time until we
220 * have a valid line if we are starting. */
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000221 if (ctx->start && (BIO_get_flags(b) & BIO_FLAGS_BASE64_NO_NL))
222 {
223 /* ctx->start=1; */
224 ctx->tmp_len=0;
225 }
226 else if (ctx->start)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000227 {
228 q=p=(unsigned char *)ctx->tmp;
229 for (j=0; j<i; j++)
230 {
231 if (*(q++) != '\n') continue;
232
233 /* due to a previous very long line,
234 * we need to keep on scanning for a '\n'
235 * before we even start looking for
236 * base64 encoded stuff. */
237 if (ctx->tmp_nl)
238 {
239 p=q;
240 ctx->tmp_nl=0;
241 continue;
242 }
243
244 k=EVP_DecodeUpdate(&(ctx->base64),
245 (unsigned char *)ctx->buf,
246 &num,p,q-p);
247 if ((k <= 0) && (num == 0) && (ctx->start))
248 EVP_DecodeInit(&ctx->base64);
249 else
250 {
251 if (p != (unsigned char *)
252 &(ctx->tmp[0]))
253 {
254 i-=(p- (unsigned char *)
255 &(ctx->tmp[0]));
256 for (x=0; x < i; x++)
257 ctx->tmp[x]=p[x];
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000258 }
Dr. Stephen Henson4579dd51999-10-02 13:33:06 +0000259 EVP_DecodeInit(&ctx->base64);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000260 ctx->start=0;
261 break;
262 }
263 p=q;
264 }
265
266 /* we fell off the end without starting */
Eric Young10378fb2014-04-02 19:50:33 +0100267 if ((j == i) && (num == 0))
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000268 {
269 /* Is this is one long chunk?, if so, keep on
270 * reading until a new line. */
271 if (p == (unsigned char *)&(ctx->tmp[0]))
272 {
Dr. Stephen Henson5562cfa2003-02-22 02:12:52 +0000273 /* Check buffer full */
274 if (i == B64_BLOCK_SIZE)
275 {
276 ctx->tmp_nl=1;
277 ctx->tmp_len=0;
278 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000279 }
280 else if (p != q) /* finished on a '\n' */
281 {
282 n=q-p;
283 for (ii=0; ii<n; ii++)
284 ctx->tmp[ii]=p[ii];
285 ctx->tmp_len=n;
286 }
287 /* else finished on a '\n' */
288 continue;
289 }
290 else
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000291 {
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000292 ctx->tmp_len=0;
293 }
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000294 }
Dr. Stephen Henson5562cfa2003-02-22 02:12:52 +0000295 else if ((i < B64_BLOCK_SIZE) && (ctx->cont > 0))
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000296 {
297 /* If buffer isn't full and we can retry then
298 * restart to read in more data.
299 */
Dr. Stephen Henson5562cfa2003-02-22 02:12:52 +0000300 continue;
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000301 }
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000302
303 if (BIO_get_flags(b) & BIO_FLAGS_BASE64_NO_NL)
304 {
305 int z,jj;
306
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000307#if 0
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000308 jj=(i>>2)<<2;
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000309#else
310 jj = i & ~3; /* process per 4 */
311#endif
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000312 z=EVP_DecodeBlock((unsigned char *)ctx->buf,
313 (unsigned char *)ctx->tmp,jj);
314 if (jj > 2)
315 {
316 if (ctx->tmp[jj-1] == '=')
317 {
318 z--;
319 if (ctx->tmp[jj-2] == '=')
320 z--;
321 }
322 }
323 /* z is now number of output bytes and jj is the
324 * number consumed */
325 if (jj != i)
326 {
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000327 memmove(ctx->tmp, &ctx->tmp[jj], i-jj);
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000328 ctx->tmp_len=i-jj;
329 }
330 ctx->buf_len=0;
331 if (z > 0)
332 {
333 ctx->buf_len=z;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000334 }
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000335 i=z;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000336 }
337 else
338 {
339 i=EVP_DecodeUpdate(&(ctx->base64),
340 (unsigned char *)ctx->buf,&ctx->buf_len,
341 (unsigned char *)ctx->tmp,i);
Dr. Stephen Henson5562cfa2003-02-22 02:12:52 +0000342 ctx->tmp_len = 0;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000343 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000344 ctx->buf_off=0;
345 if (i < 0)
346 {
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000347 ret_code=0;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000348 ctx->buf_len=0;
349 break;
350 }
351
352 if (ctx->buf_len <= outl)
353 i=ctx->buf_len;
354 else
355 i=outl;
356
357 memcpy(out,ctx->buf,i);
358 ret+=i;
359 ctx->buf_off=i;
360 if (ctx->buf_off == ctx->buf_len)
361 {
362 ctx->buf_len=0;
363 ctx->buf_off=0;
364 }
365 outl-=i;
366 out+=i;
367 }
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000368 /* BIO_clear_retry_flags(b); */
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000369 BIO_copy_next_retry(b);
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000370 return((ret == 0)?ret_code:ret);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000371 }
372
Ulf Möller0e1c0612000-05-15 22:54:43 +0000373static int b64_write(BIO *b, const char *in, int inl)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000374 {
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000375 int ret=0;
376 int n;
377 int i;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000378 BIO_B64_CTX *ctx;
379
380 ctx=(BIO_B64_CTX *)b->ptr;
381 BIO_clear_retry_flags(b);
382
383 if (ctx->encode != B64_ENCODE)
384 {
385 ctx->encode=B64_ENCODE;
386 ctx->buf_len=0;
387 ctx->buf_off=0;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000388 ctx->tmp_len=0;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000389 EVP_EncodeInit(&(ctx->base64));
390 }
391
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000392 OPENSSL_assert(ctx->buf_off < (int)sizeof(ctx->buf));
393 OPENSSL_assert(ctx->buf_len <= (int)sizeof(ctx->buf));
394 OPENSSL_assert(ctx->buf_len >= ctx->buf_off);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000395 n=ctx->buf_len-ctx->buf_off;
396 while (n > 0)
397 {
398 i=BIO_write(b->next_bio,&(ctx->buf[ctx->buf_off]),n);
399 if (i <= 0)
400 {
401 BIO_copy_next_retry(b);
402 return(i);
403 }
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000404 OPENSSL_assert(i <= n);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000405 ctx->buf_off+=i;
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000406 OPENSSL_assert(ctx->buf_off <= (int)sizeof(ctx->buf));
407 OPENSSL_assert(ctx->buf_len >= ctx->buf_off);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000408 n-=i;
409 }
410 /* at this point all pending data has been written */
Richard Levitte2dbef502000-07-26 16:53:58 +0000411 ctx->buf_off=0;
412 ctx->buf_len=0;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000413
414 if ((in == NULL) || (inl <= 0)) return(0);
415
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000416 while (inl > 0)
417 {
418 n=(inl > B64_BLOCK_SIZE)?B64_BLOCK_SIZE:inl;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000419
420 if (BIO_get_flags(b) & BIO_FLAGS_BASE64_NO_NL)
421 {
422 if (ctx->tmp_len > 0)
423 {
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000424 OPENSSL_assert(ctx->tmp_len <= 3);
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000425 n=3-ctx->tmp_len;
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000426 /* There's a theoretical possibility for this */
Richard Levitte2dbef502000-07-26 16:53:58 +0000427 if (n > inl)
428 n=inl;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000429 memcpy(&(ctx->tmp[ctx->tmp_len]),in,n);
430 ctx->tmp_len+=n;
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000431 ret += n;
Richard Levitte2dbef502000-07-26 16:53:58 +0000432 if (ctx->tmp_len < 3)
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000433 break;
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000434 ctx->buf_len=EVP_EncodeBlock((unsigned char *)ctx->buf,(unsigned char *)ctx->tmp,ctx->tmp_len);
435 OPENSSL_assert(ctx->buf_len <= (int)sizeof(ctx->buf));
436 OPENSSL_assert(ctx->buf_len >= ctx->buf_off);
Richard Levitte2dbef502000-07-26 16:53:58 +0000437 /* Since we're now done using the temporary
438 buffer, the length should be 0'd */
439 ctx->tmp_len=0;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000440 }
441 else
442 {
443 if (n < 3)
444 {
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000445 memcpy(ctx->tmp,in,n);
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000446 ctx->tmp_len=n;
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000447 ret += n;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000448 break;
449 }
450 n-=n%3;
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000451 ctx->buf_len=EVP_EncodeBlock((unsigned char *)ctx->buf,(const unsigned char *)in,n);
452 OPENSSL_assert(ctx->buf_len <= (int)sizeof(ctx->buf));
453 OPENSSL_assert(ctx->buf_len >= ctx->buf_off);
454 ret += n;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000455 }
456 }
457 else
458 {
459 EVP_EncodeUpdate(&(ctx->base64),
460 (unsigned char *)ctx->buf,&ctx->buf_len,
461 (unsigned char *)in,n);
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000462 OPENSSL_assert(ctx->buf_len <= (int)sizeof(ctx->buf));
463 OPENSSL_assert(ctx->buf_len >= ctx->buf_off);
464 ret += n;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000465 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000466 inl-=n;
467 in+=n;
468
469 ctx->buf_off=0;
470 n=ctx->buf_len;
471 while (n > 0)
472 {
473 i=BIO_write(b->next_bio,&(ctx->buf[ctx->buf_off]),n);
474 if (i <= 0)
475 {
476 BIO_copy_next_retry(b);
477 return((ret == 0)?i:ret);
478 }
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000479 OPENSSL_assert(i <= n);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000480 n-=i;
481 ctx->buf_off+=i;
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000482 OPENSSL_assert(ctx->buf_off <= (int)sizeof(ctx->buf));
483 OPENSSL_assert(ctx->buf_len >= ctx->buf_off);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000484 }
485 ctx->buf_len=0;
486 ctx->buf_off=0;
487 }
488 return(ret);
489 }
490
Ulf Möller0e1c0612000-05-15 22:54:43 +0000491static long b64_ctrl(BIO *b, int cmd, long num, void *ptr)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000492 {
493 BIO_B64_CTX *ctx;
494 long ret=1;
495 int i;
496
497 ctx=(BIO_B64_CTX *)b->ptr;
498
499 switch (cmd)
500 {
501 case BIO_CTRL_RESET:
502 ctx->cont=1;
503 ctx->start=1;
504 ctx->encode=B64_NONE;
505 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
506 break;
507 case BIO_CTRL_EOF: /* More to read */
508 if (ctx->cont <= 0)
509 ret=1;
510 else
511 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
512 break;
513 case BIO_CTRL_WPENDING: /* More to write in buffer */
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000514 OPENSSL_assert(ctx->buf_len >= ctx->buf_off);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000515 ret=ctx->buf_len-ctx->buf_off;
Richard Levitte67d07382001-10-11 19:38:40 +0000516 if ((ret == 0) && (ctx->encode != B64_NONE)
517 && (ctx->base64.num != 0))
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000518 ret=1;
519 else if (ret <= 0)
520 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
521 break;
522 case BIO_CTRL_PENDING: /* More to read in buffer */
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000523 OPENSSL_assert(ctx->buf_len >= ctx->buf_off);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000524 ret=ctx->buf_len-ctx->buf_off;
525 if (ret <= 0)
526 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
527 break;
528 case BIO_CTRL_FLUSH:
529 /* do a final write */
530again:
531 while (ctx->buf_len != ctx->buf_off)
532 {
533 i=b64_write(b,NULL,0);
534 if (i < 0)
Dr. Stephen Henson5672e3a2003-02-20 13:37:48 +0000535 return i;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000536 }
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000537 if (BIO_get_flags(b) & BIO_FLAGS_BASE64_NO_NL)
538 {
539 if (ctx->tmp_len != 0)
540 {
541 ctx->buf_len=EVP_EncodeBlock(
542 (unsigned char *)ctx->buf,
543 (unsigned char *)ctx->tmp,
544 ctx->tmp_len);
545 ctx->buf_off=0;
546 ctx->tmp_len=0;
547 goto again;
548 }
549 }
Richard Levitte67d07382001-10-11 19:38:40 +0000550 else if (ctx->encode != B64_NONE && ctx->base64.num != 0)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000551 {
552 ctx->buf_off=0;
553 EVP_EncodeFinal(&(ctx->base64),
554 (unsigned char *)ctx->buf,
555 &(ctx->buf_len));
556 /* push out the bytes */
557 goto again;
558 }
559 /* Finally flush the underlying BIO */
560 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
561 break;
562
563 case BIO_C_DO_STATE_MACHINE:
564 BIO_clear_retry_flags(b);
565 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
566 BIO_copy_next_retry(b);
567 break;
568
569 case BIO_CTRL_DUP:
570 break;
571 case BIO_CTRL_INFO:
572 case BIO_CTRL_GET:
573 case BIO_CTRL_SET:
574 default:
575 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
576 break;
577 }
578 return(ret);
579 }
580
Dr. Stephen Henson13083212000-06-21 02:25:30 +0000581static long b64_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp)
Richard Levitted3442bc2000-02-20 23:43:02 +0000582 {
583 long ret=1;
584
585 if (b->next_bio == NULL) return(0);
586 switch (cmd)
587 {
588 default:
589 ret=BIO_callback_ctrl(b->next_bio,cmd,fp);
590 break;
591 }
592 return(ret);
593 }
594
Dr. Stephen Hensoncb877cc2010-05-27 12:41:05 +0000595static int b64_puts(BIO *b, const char *str)
596 {
597 return b64_write(b,str,strlen(str));
598 }