Update contrib.
1 /* crypto/evp/bio_b64.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
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.
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).
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.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
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)"
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
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.]
60 © Portions copyright (c) 2006 Nokia Corporation. All rights reserved.
67 #include <openssl/buffer.h>
68 #include <openssl/evp.h>
69 #if (defined(SYMBIAN) && (defined(__WINSCW__) || defined(__WINS__)))
70 #include "libcrypto_wsd_macros.h"
71 #include "libcrypto_wsd.h"
74 static int b64_write(BIO *h, const char *buf, int num);
75 static int b64_read(BIO *h, char *buf, int size);
76 /*static int b64_puts(BIO *h, const char *str); */
77 /*static int b64_gets(BIO *h, char *str, int size); */
78 static long b64_ctrl(BIO *h, int cmd, long arg1, void *arg2);
79 static int b64_new(BIO *h);
80 static int b64_free(BIO *data);
81 static long b64_callback_ctrl(BIO *h,int cmd,bio_info_cb *fp);
82 #define B64_BLOCK_SIZE 1024
83 #define B64_BLOCK_SIZE2 768
88 typedef struct b64_struct
90 /*BIO *bio; moved to the BIO structure */
93 int tmp_len; /* used to find the start when decoding */
94 int tmp_nl; /* If true, scan until '\n' */
96 int start; /* have we started decoding yet? */
97 int cont; /* <= 0 when finished */
98 EVP_ENCODE_CTX base64;
99 char buf[EVP_ENCODE_LENGTH(B64_BLOCK_SIZE)+10];
100 char tmp[B64_BLOCK_SIZE];
104 static BIO_METHOD methods_b64=
106 BIO_TYPE_BASE64,"base64 encoding",
109 NULL, /* b64_puts, */
110 NULL, /* b64_gets, */
117 GET_STATIC_VAR_FROM_TLS(methods_b64,bio_b64,BIO_METHOD)
118 #define methods_b64 (*GET_WSD_VAR_NAME(methods_b64,bio_b64, s)())
119 const BIO_METHOD temp_s_methods_b64=
121 BIO_TYPE_BASE64,"base64 encoding",
124 NULL, /* b64_puts, */
125 NULL, /* b64_gets, */
132 EXPORT_C BIO_METHOD *BIO_f_base64(void)
134 return(&methods_b64);
137 static int b64_new(BIO *bi)
141 ctx=(BIO_B64_CTX *)OPENSSL_malloc(sizeof(BIO_B64_CTX));
142 if (ctx == NULL) return(0);
158 static int b64_free(BIO *a)
160 if (a == NULL) return(0);
161 OPENSSL_free(a->ptr);
168 static int b64_read(BIO *b, char *out, int outl)
170 int ret=0,i,ii,j,k,x,n,num,ret_code=0;
174 if (out == NULL) return(0);
175 ctx=(BIO_B64_CTX *)b->ptr;
177 if ((ctx == NULL) || (b->next_bio == NULL)) return(0);
179 if (ctx->encode != B64_DECODE)
181 ctx->encode=B64_DECODE;
185 EVP_DecodeInit(&(ctx->base64));
188 /* First check if there are bytes decoded/encoded */
189 if (ctx->buf_len > 0)
191 i=ctx->buf_len-ctx->buf_off;
192 if (i > outl) i=outl;
193 OPENSSL_assert(ctx->buf_off+i < (int)sizeof(ctx->buf));
194 memcpy(out,&(ctx->buf[ctx->buf_off]),i);
199 if (ctx->buf_len == ctx->buf_off)
206 /* At this point, we have room of outl bytes and an empty
207 * buffer, so we should read in some more. */
216 i=BIO_read(b->next_bio,&(ctx->tmp[ctx->tmp_len]),
217 B64_BLOCK_SIZE-ctx->tmp_len);
223 /* Should be continue next time we are called? */
224 if (!BIO_should_retry(b->next_bio))
227 /* If buffer empty break */
228 if(ctx->tmp_len == 0)
230 /* Fall through and process what we have */
234 /* else we retry and add more data to buffer */
241 /* We need to scan, a line at a time until we
242 * have a valid line if we are starting. */
243 if (ctx->start && (BIO_get_flags(b) & BIO_FLAGS_BASE64_NO_NL))
250 q=p=(unsigned char *)ctx->tmp;
253 if (*(q++) != '\n') continue;
255 /* due to a previous very long line,
256 * we need to keep on scanning for a '\n'
257 * before we even start looking for
258 * base64 encoded stuff. */
266 k=EVP_DecodeUpdate(&(ctx->base64),
267 (unsigned char *)ctx->buf,
269 if ((k <= 0) && (num == 0) && (ctx->start))
270 EVP_DecodeInit(&ctx->base64);
273 if (p != (unsigned char *)
276 i-=(p- (unsigned char *)
278 for (x=0; x < i; x++)
281 EVP_DecodeInit(&ctx->base64);
288 /* we fell off the end without starting */
291 /* Is this is one long chunk?, if so, keep on
292 * reading until a new line. */
293 if (p == (unsigned char *)&(ctx->tmp[0]))
295 /* Check buffer full */
296 if (i == B64_BLOCK_SIZE)
302 else if (p != q) /* finished on a '\n' */
305 for (ii=0; ii<n; ii++)
309 /* else finished on a '\n' */
315 /* If buffer isn't full and we can retry then
316 * restart to read in more data.
318 else if ((i < B64_BLOCK_SIZE) && (ctx->cont > 0))
321 if (BIO_get_flags(b) & BIO_FLAGS_BASE64_NO_NL)
326 z=EVP_DecodeBlock((unsigned char *)ctx->buf,
327 (unsigned char *)ctx->tmp,jj);
330 if (ctx->tmp[jj-1] == '=')
333 if (ctx->tmp[jj-2] == '=')
337 /* z is now number of output bytes and jj is the
341 memcpy((unsigned char *)ctx->tmp,
342 (unsigned char *)&(ctx->tmp[jj]),i-jj);
356 i=EVP_DecodeUpdate(&(ctx->base64),
357 (unsigned char *)ctx->buf,&ctx->buf_len,
358 (unsigned char *)ctx->tmp,i);
369 if (ctx->buf_len <= outl)
374 memcpy(out,ctx->buf,i);
377 if (ctx->buf_off == ctx->buf_len)
385 BIO_clear_retry_flags(b);
386 BIO_copy_next_retry(b);
387 return((ret == 0)?ret_code:ret);
390 static int b64_write(BIO *b, const char *in, int inl)
395 ctx=(BIO_B64_CTX *)b->ptr;
396 BIO_clear_retry_flags(b);
398 if (ctx->encode != B64_ENCODE)
400 ctx->encode=B64_ENCODE;
404 EVP_EncodeInit(&(ctx->base64));
407 n=ctx->buf_len-ctx->buf_off;
410 i=BIO_write(b->next_bio,&(ctx->buf[ctx->buf_off]),n);
413 BIO_copy_next_retry(b);
419 /* at this point all pending data has been written */
423 if ((in == NULL) || (inl <= 0)) return(0);
427 n=(inl > B64_BLOCK_SIZE)?B64_BLOCK_SIZE:inl;
429 if (BIO_get_flags(b) & BIO_FLAGS_BASE64_NO_NL)
431 if (ctx->tmp_len > 0)
434 /* There's a teoretical possibility for this */
437 memcpy(&(ctx->tmp[ctx->tmp_len]),in,n);
439 if (ctx->tmp_len < 3)
441 ctx->buf_len=EVP_EncodeBlock(
442 (unsigned char *)ctx->buf,
443 (unsigned char *)ctx->tmp,
445 /* Since we're now done using the temporary
446 buffer, the length should be 0'd */
453 memcpy(&(ctx->tmp[0]),in,n);
458 ctx->buf_len=EVP_EncodeBlock(
459 (unsigned char *)ctx->buf,
460 (unsigned char *)in,n);
465 EVP_EncodeUpdate(&(ctx->base64),
466 (unsigned char *)ctx->buf,&ctx->buf_len,
467 (unsigned char *)in,n);
476 i=BIO_write(b->next_bio,&(ctx->buf[ctx->buf_off]),n);
479 BIO_copy_next_retry(b);
480 return((ret == 0)?i:ret);
491 static long b64_ctrl(BIO *b, int cmd, long num, void *ptr)
497 ctx=(BIO_B64_CTX *)b->ptr;
504 ctx->encode=B64_NONE;
505 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
507 case BIO_CTRL_EOF: /* More to read */
511 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
513 case BIO_CTRL_WPENDING: /* More to write in buffer */
514 ret=ctx->buf_len-ctx->buf_off;
515 if ((ret == 0) && (ctx->encode != B64_NONE)
516 && (ctx->base64.num != 0))
519 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
521 case BIO_CTRL_PENDING: /* More to read in buffer */
522 ret=ctx->buf_len-ctx->buf_off;
524 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
527 /* do a final write */
529 while (ctx->buf_len != ctx->buf_off)
531 i=b64_write(b,NULL,0);
535 if (BIO_get_flags(b) & BIO_FLAGS_BASE64_NO_NL)
537 if (ctx->tmp_len != 0)
539 ctx->buf_len=EVP_EncodeBlock(
540 (unsigned char *)ctx->buf,
541 (unsigned char *)ctx->tmp,
548 else if (ctx->encode != B64_NONE && ctx->base64.num != 0)
551 EVP_EncodeFinal(&(ctx->base64),
552 (unsigned char *)ctx->buf,
554 /* push out the bytes */
557 /* Finally flush the underlying BIO */
558 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
561 case BIO_C_DO_STATE_MACHINE:
562 BIO_clear_retry_flags(b);
563 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
564 BIO_copy_next_retry(b);
573 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
579 static long b64_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp)
583 if (b->next_bio == NULL) return(0);
587 ret=BIO_callback_ctrl(b->next_bio,cmd,fp);