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.]
62 #include <openssl/buffer.h>
63 #include <openssl/evp.h>
65 static int b64_write(BIO
*h
, const char *buf
, int num
);
66 static int b64_read(BIO
*h
, char *buf
, int size
);
67 static int b64_puts(BIO
*h
, const char *str
);
68 /*static int b64_gets(BIO *h, char *str, int size); */
69 static long b64_ctrl(BIO
*h
, int cmd
, long arg1
, void *arg2
);
70 static int b64_new(BIO
*h
);
71 static int b64_free(BIO
*data
);
72 static long b64_callback_ctrl(BIO
*h
,int cmd
,bio_info_cb
*fp
);
73 #define B64_BLOCK_SIZE 1024
74 #define B64_BLOCK_SIZE2 768
79 typedef struct b64_struct
81 /*BIO *bio; moved to the BIO structure */
84 int tmp_len
; /* used to find the start when decoding */
85 int tmp_nl
; /* If true, scan until '\n' */
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
];
94 static BIO_METHOD methods_b64
=
96 BIO_TYPE_BASE64
,"base64 encoding",
100 NULL
, /* b64_gets, */
107 BIO_METHOD
*BIO_f_base64(void)
109 return(&methods_b64
);
112 static int b64_new(BIO
*bi
)
116 ctx
=(BIO_B64_CTX
*)OPENSSL_malloc(sizeof(BIO_B64_CTX
));
117 if (ctx
== NULL
) return(0);
134 static int b64_free(BIO
*a
)
136 if (a
== NULL
) return(0);
137 OPENSSL_free(a
->ptr
);
144 static int b64_read(BIO
*b
, char *out
, int outl
)
146 int ret
=0,i
,ii
,j
,k
,x
,n
,num
,ret_code
=0;
150 if (out
== NULL
) return(0);
151 ctx
=(BIO_B64_CTX
*)b
->ptr
;
153 if ((ctx
== NULL
) || (b
->next_bio
== NULL
)) return(0);
155 BIO_clear_retry_flags(b
);
157 if (ctx
->encode
!= B64_DECODE
)
159 ctx
->encode
=B64_DECODE
;
163 EVP_DecodeInit(&(ctx
->base64
));
166 /* First check if there are bytes decoded/encoded */
167 if (ctx
->buf_len
> 0)
169 OPENSSL_assert(ctx
->buf_len
>= ctx
->buf_off
);
170 i
=ctx
->buf_len
-ctx
->buf_off
;
171 if (i
> outl
) i
=outl
;
172 OPENSSL_assert(ctx
->buf_off
+i
< (int)sizeof(ctx
->buf
));
173 memcpy(out
,&(ctx
->buf
[ctx
->buf_off
]),i
);
178 if (ctx
->buf_len
== ctx
->buf_off
)
185 /* At this point, we have room of outl bytes and an empty
186 * buffer, so we should read in some more. */
194 i
=BIO_read(b
->next_bio
,&(ctx
->tmp
[ctx
->tmp_len
]),
195 B64_BLOCK_SIZE
-ctx
->tmp_len
);
201 /* Should we continue next time we are called? */
202 if (!BIO_should_retry(b
->next_bio
))
205 /* If buffer empty break */
206 if(ctx
->tmp_len
== 0)
208 /* Fall through and process what we have */
212 /* else we retry and add more data to buffer */
219 /* We need to scan, a line at a time until we
220 * have a valid line if we are starting. */
221 if (ctx
->start
&& (BIO_get_flags(b
) & BIO_FLAGS_BASE64_NO_NL
))
228 q
=p
=(unsigned char *)ctx
->tmp
;
231 if (*(q
++) != '\n') continue;
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. */
244 k
=EVP_DecodeUpdate(&(ctx
->base64
),
245 (unsigned char *)ctx
->buf
,
247 if ((k
<= 0) && (num
== 0) && (ctx
->start
))
248 EVP_DecodeInit(&ctx
->base64
);
251 if (p
!= (unsigned char *)
254 i
-=(p
- (unsigned char *)
256 for (x
=0; x
< i
; x
++)
259 EVP_DecodeInit(&ctx
->base64
);
266 /* we fell off the end without starting */
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]))
273 /* Check buffer full */
274 if (i
== B64_BLOCK_SIZE
)
280 else if (p
!= q
) /* finished on a '\n' */
283 for (ii
=0; ii
<n
; ii
++)
287 /* else finished on a '\n' */
295 else if ((i
< B64_BLOCK_SIZE
) && (ctx
->cont
> 0))
297 /* If buffer isn't full and we can retry then
298 * restart to read in more data.
303 if (BIO_get_flags(b
) & BIO_FLAGS_BASE64_NO_NL
)
310 jj
= i
& ~3; /* process per 4 */
312 z
=EVP_DecodeBlock((unsigned char *)ctx
->buf
,
313 (unsigned char *)ctx
->tmp
,jj
);
316 if (ctx
->tmp
[jj
-1] == '=')
319 if (ctx
->tmp
[jj
-2] == '=')
323 /* z is now number of output bytes and jj is the
327 memmove(ctx
->tmp
, &ctx
->tmp
[jj
], i
-jj
);
339 i
=EVP_DecodeUpdate(&(ctx
->base64
),
340 (unsigned char *)ctx
->buf
,&ctx
->buf_len
,
341 (unsigned char *)ctx
->tmp
,i
);
352 if (ctx
->buf_len
<= outl
)
357 memcpy(out
,ctx
->buf
,i
);
360 if (ctx
->buf_off
== ctx
->buf_len
)
368 /* BIO_clear_retry_flags(b); */
369 BIO_copy_next_retry(b
);
370 return((ret
== 0)?ret_code
:ret
);
373 static int b64_write(BIO
*b
, const char *in
, int inl
)
380 ctx
=(BIO_B64_CTX
*)b
->ptr
;
381 BIO_clear_retry_flags(b
);
383 if (ctx
->encode
!= B64_ENCODE
)
385 ctx
->encode
=B64_ENCODE
;
389 EVP_EncodeInit(&(ctx
->base64
));
392 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
);
395 n
=ctx
->buf_len
-ctx
->buf_off
;
398 i
=BIO_write(b
->next_bio
,&(ctx
->buf
[ctx
->buf_off
]),n
);
401 BIO_copy_next_retry(b
);
404 OPENSSL_assert(i
<= n
);
406 OPENSSL_assert(ctx
->buf_off
<= (int)sizeof(ctx
->buf
));
407 OPENSSL_assert(ctx
->buf_len
>= ctx
->buf_off
);
410 /* at this point all pending data has been written */
414 if ((in
== NULL
) || (inl
<= 0)) return(0);
418 n
=(inl
> B64_BLOCK_SIZE
)?B64_BLOCK_SIZE
:inl
;
420 if (BIO_get_flags(b
) & BIO_FLAGS_BASE64_NO_NL
)
422 if (ctx
->tmp_len
> 0)
424 OPENSSL_assert(ctx
->tmp_len
<= 3);
426 /* There's a theoretical possibility for this */
429 memcpy(&(ctx
->tmp
[ctx
->tmp_len
]),in
,n
);
432 if (ctx
->tmp_len
< 3)
434 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
);
437 /* Since we're now done using the temporary
438 buffer, the length should be 0'd */
445 memcpy(ctx
->tmp
,in
,n
);
451 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
);
459 EVP_EncodeUpdate(&(ctx
->base64
),
460 (unsigned char *)ctx
->buf
,&ctx
->buf_len
,
461 (unsigned char *)in
,n
);
462 OPENSSL_assert(ctx
->buf_len
<= (int)sizeof(ctx
->buf
));
463 OPENSSL_assert(ctx
->buf_len
>= ctx
->buf_off
);
473 i
=BIO_write(b
->next_bio
,&(ctx
->buf
[ctx
->buf_off
]),n
);
476 BIO_copy_next_retry(b
);
477 return((ret
== 0)?i
:ret
);
479 OPENSSL_assert(i
<= n
);
482 OPENSSL_assert(ctx
->buf_off
<= (int)sizeof(ctx
->buf
));
483 OPENSSL_assert(ctx
->buf_len
>= ctx
->buf_off
);
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 OPENSSL_assert(ctx
->buf_len
>= ctx
->buf_off
);
515 ret
=ctx
->buf_len
-ctx
->buf_off
;
516 if ((ret
== 0) && (ctx
->encode
!= B64_NONE
)
517 && (ctx
->base64
.num
!= 0))
520 ret
=BIO_ctrl(b
->next_bio
,cmd
,num
,ptr
);
522 case BIO_CTRL_PENDING
: /* More to read in buffer */
523 OPENSSL_assert(ctx
->buf_len
>= ctx
->buf_off
);
524 ret
=ctx
->buf_len
-ctx
->buf_off
;
526 ret
=BIO_ctrl(b
->next_bio
,cmd
,num
,ptr
);
529 /* do a final write */
531 while (ctx
->buf_len
!= ctx
->buf_off
)
533 i
=b64_write(b
,NULL
,0);
537 if (BIO_get_flags(b
) & BIO_FLAGS_BASE64_NO_NL
)
539 if (ctx
->tmp_len
!= 0)
541 ctx
->buf_len
=EVP_EncodeBlock(
542 (unsigned char *)ctx
->buf
,
543 (unsigned char *)ctx
->tmp
,
550 else if (ctx
->encode
!= B64_NONE
&& ctx
->base64
.num
!= 0)
553 EVP_EncodeFinal(&(ctx
->base64
),
554 (unsigned char *)ctx
->buf
,
556 /* push out the bytes */
559 /* Finally flush the underlying BIO */
560 ret
=BIO_ctrl(b
->next_bio
,cmd
,num
,ptr
);
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
);
575 ret
=BIO_ctrl(b
->next_bio
,cmd
,num
,ptr
);
581 static long b64_callback_ctrl(BIO
*b
, int cmd
, bio_info_cb
*fp
)
585 if (b
->next_bio
== NULL
) return(0);
589 ret
=BIO_callback_ctrl(b
->next_bio
,cmd
,fp
);
595 static int b64_puts(BIO
*b
, const char *str
)
597 return b64_write(b
,str
,strlen(str
));