4 * Copyright (C) 2004, 2005, 2007, 2009 Internet Systems Consortium, Inc. ("ISC")
5 * Copyright (C) 1998-2001, 2003 Internet Software Consortium.
7 * Permission to use, copy, modify, and/or distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
12 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
13 * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
14 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
15 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
16 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17 * PERFORMANCE OF THIS SOFTWARE.
20 /* Id: base64.c,v 1.34 2009/10/21 23:48:05 tbox Exp */
26 #include <isc/base64.h>
27 #include <isc/buffer.h>
29 #include <isc/string.h>
32 #define RETERR(x) do { \
33 isc_result_t _r = (x); \
34 if (_r != ISC_R_SUCCESS) \
41 * These static functions are also present in lib/dns/rdata.c. I'm not
42 * sure where they should go. -- bwelling
45 str_totext(const char *source
, isc_buffer_t
*target
);
48 mem_tobuffer(isc_buffer_t
*target
, void *base
, unsigned int length
);
50 static const char base64
[] =
51 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
55 isc_base64_totext(isc_region_t
*source
, int wordlength
,
56 const char *wordbreak
, isc_buffer_t
*target
)
59 unsigned int loops
= 0;
64 memset(buf
, 0, sizeof(buf
));
65 while (source
->length
> 2) {
66 buf
[0] = base64
[(source
->base
[0]>>2)&0x3f];
67 buf
[1] = base64
[((source
->base
[0]<<4)&0x30)|
68 ((source
->base
[1]>>4)&0x0f)];
69 buf
[2] = base64
[((source
->base
[1]<<2)&0x3c)|
70 ((source
->base
[2]>>6)&0x03)];
71 buf
[3] = base64
[source
->base
[2]&0x3f];
72 RETERR(str_totext(buf
, target
));
73 isc_region_consume(source
, 3);
76 if (source
->length
!= 0 &&
77 (int)((loops
+ 1) * 4) >= wordlength
)
80 RETERR(str_totext(wordbreak
, target
));
83 if (source
->length
== 2) {
84 buf
[0] = base64
[(source
->base
[0]>>2)&0x3f];
85 buf
[1] = base64
[((source
->base
[0]<<4)&0x30)|
86 ((source
->base
[1]>>4)&0x0f)];
87 buf
[2] = base64
[((source
->base
[1]<<2)&0x3c)];
89 RETERR(str_totext(buf
, target
));
90 isc_region_consume(source
, 2);
91 } else if (source
->length
== 1) {
92 buf
[0] = base64
[(source
->base
[0]>>2)&0x3f];
93 buf
[1] = base64
[((source
->base
[0]<<4)&0x30)];
94 buf
[2] = buf
[3] = '=';
95 RETERR(str_totext(buf
, target
));
96 isc_region_consume(source
, 1);
98 return (ISC_R_SUCCESS
);
102 * State of a base64 decoding process in progress.
105 int length
; /*%< Desired length of binary data or -1 */
106 isc_buffer_t
*target
; /*%< Buffer for resulting binary data */
107 int digits
; /*%< Number of buffered base64 digits */
108 isc_boolean_t seen_end
; /*%< True if "=" end marker seen */
110 } base64_decode_ctx_t
;
113 base64_decode_init(base64_decode_ctx_t
*ctx
, int length
, isc_buffer_t
*target
)
116 ctx
->seen_end
= ISC_FALSE
;
117 ctx
->length
= length
;
118 ctx
->target
= target
;
121 static inline isc_result_t
122 base64_decode_char(base64_decode_ctx_t
*ctx
, int c
) {
126 return (ISC_R_BADBASE64
);
127 if ((s
= strchr(base64
, c
)) == NULL
)
128 return (ISC_R_BADBASE64
);
129 ctx
->val
[ctx
->digits
++] = s
- base64
;
130 if (ctx
->digits
== 4) {
132 unsigned char buf
[3];
133 if (ctx
->val
[0] == 64 || ctx
->val
[1] == 64)
134 return (ISC_R_BADBASE64
);
135 if (ctx
->val
[2] == 64 && ctx
->val
[3] != 64)
136 return (ISC_R_BADBASE64
);
138 * Check that bits that should be zero are.
140 if (ctx
->val
[2] == 64 && (ctx
->val
[1] & 0xf) != 0)
141 return (ISC_R_BADBASE64
);
143 * We don't need to test for ctx->val[2] != 64 as
144 * the bottom two bits of 64 are zero.
146 if (ctx
->val
[3] == 64 && (ctx
->val
[2] & 0x3) != 0)
147 return (ISC_R_BADBASE64
);
148 n
= (ctx
->val
[2] == 64) ? 1 :
149 (ctx
->val
[3] == 64) ? 2 : 3;
151 ctx
->seen_end
= ISC_TRUE
;
152 if (ctx
->val
[2] == 64)
154 if (ctx
->val
[3] == 64)
157 buf
[0] = (ctx
->val
[0]<<2)|(ctx
->val
[1]>>4);
158 buf
[1] = (ctx
->val
[1]<<4)|(ctx
->val
[2]>>2);
159 buf
[2] = (ctx
->val
[2]<<6)|(ctx
->val
[3]);
160 RETERR(mem_tobuffer(ctx
->target
, buf
, n
));
161 if (ctx
->length
>= 0) {
163 return (ISC_R_BADBASE64
);
169 return (ISC_R_SUCCESS
);
172 static inline isc_result_t
173 base64_decode_finish(base64_decode_ctx_t
*ctx
) {
175 return (ISC_R_UNEXPECTEDEND
);
176 if (ctx
->digits
!= 0)
177 return (ISC_R_BADBASE64
);
178 return (ISC_R_SUCCESS
);
182 isc_base64_tobuffer(isc_lex_t
*lexer
, isc_buffer_t
*target
, int length
) {
183 base64_decode_ctx_t ctx
;
184 isc_textregion_t
*tr
;
188 base64_decode_init(&ctx
, length
, target
);
190 while (!ctx
.seen_end
&& (ctx
.length
!= 0)) {
197 RETERR(isc_lex_getmastertoken(lexer
, &token
,
198 isc_tokentype_string
, eol
));
199 if (token
.type
!= isc_tokentype_string
)
201 tr
= &token
.value
.as_textregion
;
202 for (i
= 0; i
< tr
->length
; i
++)
203 RETERR(base64_decode_char(&ctx
, tr
->base
[i
]));
205 if (ctx
.length
< 0 && !ctx
.seen_end
)
206 isc_lex_ungettoken(lexer
, &token
);
207 RETERR(base64_decode_finish(&ctx
));
208 return (ISC_R_SUCCESS
);
212 isc_base64_decodestring(const char *cstr
, isc_buffer_t
*target
) {
213 base64_decode_ctx_t ctx
;
215 base64_decode_init(&ctx
, -1, target
);
220 if (c
== ' ' || c
== '\t' || c
== '\n' || c
== '\r')
222 RETERR(base64_decode_char(&ctx
, c
));
224 RETERR(base64_decode_finish(&ctx
));
225 return (ISC_R_SUCCESS
);
229 str_totext(const char *source
, isc_buffer_t
*target
) {
233 isc_buffer_availableregion(target
, ®ion
);
236 if (l
> region
.length
)
237 return (ISC_R_NOSPACE
);
239 memcpy(region
.base
, source
, l
);
240 isc_buffer_add(target
, l
);
241 return (ISC_R_SUCCESS
);
245 mem_tobuffer(isc_buffer_t
*target
, void *base
, unsigned int length
) {
248 isc_buffer_availableregion(target
, &tr
);
249 if (length
> tr
.length
)
250 return (ISC_R_NOSPACE
);
251 memcpy(tr
.base
, base
, length
);
252 isc_buffer_add(target
, length
);
253 return (ISC_R_SUCCESS
);