Home | History | Annotate | Line # | Download | only in liblutil
base64.c revision 1.1.1.1.8.2
      1  1.1.1.1.8.2  lukem /* base64.c -- routines to encode/decode base64 data */
      2  1.1.1.1.8.2  lukem /* $OpenLDAP: pkg/ldap/libraries/liblutil/base64.c,v 1.15.2.3 2008/02/11 23:26:42 kurt Exp $ */
      3  1.1.1.1.8.2  lukem /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
      4  1.1.1.1.8.2  lukem  *
      5  1.1.1.1.8.2  lukem  * Copyright 1998-2008 The OpenLDAP Foundation.
      6  1.1.1.1.8.2  lukem  * Portions Copyright 1998-2003 Kurt D. Zeilenga.
      7  1.1.1.1.8.2  lukem  * Portions Copyright 1995 IBM Corporation.
      8  1.1.1.1.8.2  lukem  * All rights reserved.
      9  1.1.1.1.8.2  lukem  *
     10  1.1.1.1.8.2  lukem  * Redistribution and use in source and binary forms, with or without
     11  1.1.1.1.8.2  lukem  * modification, are permitted only as authorized by the OpenLDAP
     12  1.1.1.1.8.2  lukem  * Public License.
     13  1.1.1.1.8.2  lukem  *
     14  1.1.1.1.8.2  lukem  * A copy of this license is available in the file LICENSE in the
     15  1.1.1.1.8.2  lukem  * top-level directory of the distribution or, alternatively, at
     16  1.1.1.1.8.2  lukem  * <http://www.OpenLDAP.org/license.html>.
     17  1.1.1.1.8.2  lukem  */
     18  1.1.1.1.8.2  lukem /* Portions Copyright (c) 1996, 1998 by Internet Software Consortium.
     19  1.1.1.1.8.2  lukem  *
     20  1.1.1.1.8.2  lukem  * Permission to use, copy, modify, and distribute this software for any
     21  1.1.1.1.8.2  lukem  * purpose with or without fee is hereby granted, provided that the above
     22  1.1.1.1.8.2  lukem  * copyright notice and this permission notice appear in all copies.
     23  1.1.1.1.8.2  lukem  *
     24  1.1.1.1.8.2  lukem  * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
     25  1.1.1.1.8.2  lukem  * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
     26  1.1.1.1.8.2  lukem  * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
     27  1.1.1.1.8.2  lukem  * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
     28  1.1.1.1.8.2  lukem  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
     29  1.1.1.1.8.2  lukem  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
     30  1.1.1.1.8.2  lukem  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
     31  1.1.1.1.8.2  lukem  * SOFTWARE.
     32  1.1.1.1.8.2  lukem  */
     33  1.1.1.1.8.2  lukem /* This work is based upon Base64 routines (developed by IBM) found
     34  1.1.1.1.8.2  lukem  * Berkeley Internet Name Daemon (BIND) as distributed by ISC.  They
     35  1.1.1.1.8.2  lukem  * were adapted for inclusion in OpenLDAP Software by Kurt D. Zeilenga.
     36  1.1.1.1.8.2  lukem  */
     37  1.1.1.1.8.2  lukem 
     38  1.1.1.1.8.2  lukem #include "portable.h"
     39  1.1.1.1.8.2  lukem 
     40  1.1.1.1.8.2  lukem #include <ac/assert.h>
     41  1.1.1.1.8.2  lukem #include <ac/stdlib.h>
     42  1.1.1.1.8.2  lukem #include <ac/ctype.h>
     43  1.1.1.1.8.2  lukem #include <ac/string.h>
     44  1.1.1.1.8.2  lukem 
     45  1.1.1.1.8.2  lukem /* include socket.h to get sys/types.h and/or winsock2.h */
     46  1.1.1.1.8.2  lukem #include <ac/socket.h>
     47  1.1.1.1.8.2  lukem 
     48  1.1.1.1.8.2  lukem #include "lutil.h"
     49  1.1.1.1.8.2  lukem 
     50  1.1.1.1.8.2  lukem static const char Base64[] =
     51  1.1.1.1.8.2  lukem 	"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
     52  1.1.1.1.8.2  lukem static const char Pad64 = '=';
     53  1.1.1.1.8.2  lukem 
     54  1.1.1.1.8.2  lukem /* (From RFC1521 and draft-ietf-dnssec-secext-03.txt)
     55  1.1.1.1.8.2  lukem    The following encoding technique is taken from RFC 1521 by Borenstein
     56  1.1.1.1.8.2  lukem    and Freed.  It is reproduced here in a slightly edited form for
     57  1.1.1.1.8.2  lukem    convenience.
     58  1.1.1.1.8.2  lukem 
     59  1.1.1.1.8.2  lukem    A 65-character subset of US-ASCII is used, enabling 6 bits to be
     60  1.1.1.1.8.2  lukem    represented per printable character. (The extra 65th character, "=",
     61  1.1.1.1.8.2  lukem    is used to signify a special processing function.)
     62  1.1.1.1.8.2  lukem 
     63  1.1.1.1.8.2  lukem    The encoding process represents 24-bit groups of input bits as output
     64  1.1.1.1.8.2  lukem    strings of 4 encoded characters. Proceeding from left to right, a
     65  1.1.1.1.8.2  lukem    24-bit input group is formed by concatenating 3 8-bit input groups.
     66  1.1.1.1.8.2  lukem    These 24 bits are then treated as 4 concatenated 6-bit groups, each
     67  1.1.1.1.8.2  lukem    of which is translated into a single digit in the base64 alphabet.
     68  1.1.1.1.8.2  lukem 
     69  1.1.1.1.8.2  lukem    Each 6-bit group is used as an index into an array of 64 printable
     70  1.1.1.1.8.2  lukem    characters. The character referenced by the index is placed in the
     71  1.1.1.1.8.2  lukem    output string.
     72  1.1.1.1.8.2  lukem 
     73  1.1.1.1.8.2  lukem                          Table 1: The Base64 Alphabet
     74  1.1.1.1.8.2  lukem 
     75  1.1.1.1.8.2  lukem       Value Encoding  Value Encoding  Value Encoding  Value Encoding
     76  1.1.1.1.8.2  lukem           0 A            17 R            34 i            51 z
     77  1.1.1.1.8.2  lukem           1 B            18 S            35 j            52 0
     78  1.1.1.1.8.2  lukem           2 C            19 T            36 k            53 1
     79  1.1.1.1.8.2  lukem           3 D            20 U            37 l            54 2
     80  1.1.1.1.8.2  lukem           4 E            21 V            38 m            55 3
     81  1.1.1.1.8.2  lukem           5 F            22 W            39 n            56 4
     82  1.1.1.1.8.2  lukem           6 G            23 X            40 o            57 5
     83  1.1.1.1.8.2  lukem           7 H            24 Y            41 p            58 6
     84  1.1.1.1.8.2  lukem           8 I            25 Z            42 q            59 7
     85  1.1.1.1.8.2  lukem           9 J            26 a            43 r            60 8
     86  1.1.1.1.8.2  lukem          10 K            27 b            44 s            61 9
     87  1.1.1.1.8.2  lukem          11 L            28 c            45 t            62 +
     88  1.1.1.1.8.2  lukem          12 M            29 d            46 u            63 /
     89  1.1.1.1.8.2  lukem          13 N            30 e            47 v
     90  1.1.1.1.8.2  lukem          14 O            31 f            48 w         (pad) =
     91  1.1.1.1.8.2  lukem          15 P            32 g            49 x
     92  1.1.1.1.8.2  lukem          16 Q            33 h            50 y
     93  1.1.1.1.8.2  lukem 
     94  1.1.1.1.8.2  lukem    Special processing is performed if fewer than 24 bits are available
     95  1.1.1.1.8.2  lukem    at the end of the data being encoded.  A full encoding quantum is
     96  1.1.1.1.8.2  lukem    always completed at the end of a quantity.  When fewer than 24 input
     97  1.1.1.1.8.2  lukem    bits are available in an input group, zero bits are added (on the
     98  1.1.1.1.8.2  lukem    right) to form an integral number of 6-bit groups.  Padding at the
     99  1.1.1.1.8.2  lukem    end of the data is performed using the '=' character.
    100  1.1.1.1.8.2  lukem 
    101  1.1.1.1.8.2  lukem    Since all base64 input is an integral number of octets, only the
    102  1.1.1.1.8.2  lukem          -------------------------------------------------
    103  1.1.1.1.8.2  lukem    following cases can arise:
    104  1.1.1.1.8.2  lukem 
    105  1.1.1.1.8.2  lukem        (1) the final quantum of encoding input is an integral
    106  1.1.1.1.8.2  lukem            multiple of 24 bits; here, the final unit of encoded
    107  1.1.1.1.8.2  lukem 	   output will be an integral multiple of 4 characters
    108  1.1.1.1.8.2  lukem 	   with no "=" padding,
    109  1.1.1.1.8.2  lukem        (2) the final quantum of encoding input is exactly 8 bits;
    110  1.1.1.1.8.2  lukem            here, the final unit of encoded output will be two
    111  1.1.1.1.8.2  lukem 	   characters followed by two "=" padding characters, or
    112  1.1.1.1.8.2  lukem        (3) the final quantum of encoding input is exactly 16 bits;
    113  1.1.1.1.8.2  lukem            here, the final unit of encoded output will be three
    114  1.1.1.1.8.2  lukem 	   characters followed by one "=" padding character.
    115  1.1.1.1.8.2  lukem    */
    116  1.1.1.1.8.2  lukem 
    117  1.1.1.1.8.2  lukem int
    118  1.1.1.1.8.2  lukem lutil_b64_ntop(
    119  1.1.1.1.8.2  lukem 	u_char const *src,
    120  1.1.1.1.8.2  lukem 	size_t srclength,
    121  1.1.1.1.8.2  lukem 	char *target,
    122  1.1.1.1.8.2  lukem 	size_t targsize)
    123  1.1.1.1.8.2  lukem {
    124  1.1.1.1.8.2  lukem 	size_t datalength = 0;
    125  1.1.1.1.8.2  lukem 	u_char input[3];
    126  1.1.1.1.8.2  lukem 	u_char output[4];
    127  1.1.1.1.8.2  lukem 	size_t i;
    128  1.1.1.1.8.2  lukem 
    129  1.1.1.1.8.2  lukem 	while (2 < srclength) {
    130  1.1.1.1.8.2  lukem 		input[0] = *src++;
    131  1.1.1.1.8.2  lukem 		input[1] = *src++;
    132  1.1.1.1.8.2  lukem 		input[2] = *src++;
    133  1.1.1.1.8.2  lukem 		srclength -= 3;
    134  1.1.1.1.8.2  lukem 
    135  1.1.1.1.8.2  lukem 		output[0] = input[0] >> 2;
    136  1.1.1.1.8.2  lukem 		output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4);
    137  1.1.1.1.8.2  lukem 		output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6);
    138  1.1.1.1.8.2  lukem 		output[3] = input[2] & 0x3f;
    139  1.1.1.1.8.2  lukem 		assert(output[0] < 64);
    140  1.1.1.1.8.2  lukem 		assert(output[1] < 64);
    141  1.1.1.1.8.2  lukem 		assert(output[2] < 64);
    142  1.1.1.1.8.2  lukem 		assert(output[3] < 64);
    143  1.1.1.1.8.2  lukem 
    144  1.1.1.1.8.2  lukem 		if (datalength + 4 > targsize)
    145  1.1.1.1.8.2  lukem 			return (-1);
    146  1.1.1.1.8.2  lukem 		target[datalength++] = Base64[output[0]];
    147  1.1.1.1.8.2  lukem 		target[datalength++] = Base64[output[1]];
    148  1.1.1.1.8.2  lukem 		target[datalength++] = Base64[output[2]];
    149  1.1.1.1.8.2  lukem 		target[datalength++] = Base64[output[3]];
    150  1.1.1.1.8.2  lukem 	}
    151  1.1.1.1.8.2  lukem 
    152  1.1.1.1.8.2  lukem 	/* Now we worry about padding. */
    153  1.1.1.1.8.2  lukem 	if (0 != srclength) {
    154  1.1.1.1.8.2  lukem 		/* Get what's left. */
    155  1.1.1.1.8.2  lukem 		input[0] = input[1] = input[2] = '\0';
    156  1.1.1.1.8.2  lukem 		for (i = 0; i < srclength; i++)
    157  1.1.1.1.8.2  lukem 			input[i] = *src++;
    158  1.1.1.1.8.2  lukem 
    159  1.1.1.1.8.2  lukem 		output[0] = input[0] >> 2;
    160  1.1.1.1.8.2  lukem 		output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4);
    161  1.1.1.1.8.2  lukem 		output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6);
    162  1.1.1.1.8.2  lukem 		assert(output[0] < 64);
    163  1.1.1.1.8.2  lukem 		assert(output[1] < 64);
    164  1.1.1.1.8.2  lukem 		assert(output[2] < 64);
    165  1.1.1.1.8.2  lukem 
    166  1.1.1.1.8.2  lukem 		if (datalength + 4 > targsize)
    167  1.1.1.1.8.2  lukem 			return (-1);
    168  1.1.1.1.8.2  lukem 		target[datalength++] = Base64[output[0]];
    169  1.1.1.1.8.2  lukem 		target[datalength++] = Base64[output[1]];
    170  1.1.1.1.8.2  lukem 		if (srclength == 1)
    171  1.1.1.1.8.2  lukem 			target[datalength++] = Pad64;
    172  1.1.1.1.8.2  lukem 		else
    173  1.1.1.1.8.2  lukem 			target[datalength++] = Base64[output[2]];
    174  1.1.1.1.8.2  lukem 		target[datalength++] = Pad64;
    175  1.1.1.1.8.2  lukem 	}
    176  1.1.1.1.8.2  lukem 	if (datalength >= targsize)
    177  1.1.1.1.8.2  lukem 		return (-1);
    178  1.1.1.1.8.2  lukem 	target[datalength] = '\0';	/* Returned value doesn't count \0. */
    179  1.1.1.1.8.2  lukem 	return (datalength);
    180  1.1.1.1.8.2  lukem }
    181  1.1.1.1.8.2  lukem 
    182  1.1.1.1.8.2  lukem /* skips all whitespace anywhere.
    183  1.1.1.1.8.2  lukem    converts characters, four at a time, starting at (or after)
    184  1.1.1.1.8.2  lukem    src from base - 64 numbers into three 8 bit bytes in the target area.
    185  1.1.1.1.8.2  lukem    it returns the number of data bytes stored at the target, or -1 on error.
    186  1.1.1.1.8.2  lukem  */
    187  1.1.1.1.8.2  lukem 
    188  1.1.1.1.8.2  lukem int
    189  1.1.1.1.8.2  lukem lutil_b64_pton(
    190  1.1.1.1.8.2  lukem 	char const *src,
    191  1.1.1.1.8.2  lukem 	u_char *target,
    192  1.1.1.1.8.2  lukem 	size_t targsize)
    193  1.1.1.1.8.2  lukem {
    194  1.1.1.1.8.2  lukem 	int tarindex, state, ch;
    195  1.1.1.1.8.2  lukem 	char *pos;
    196  1.1.1.1.8.2  lukem 
    197  1.1.1.1.8.2  lukem 	state = 0;
    198  1.1.1.1.8.2  lukem 	tarindex = 0;
    199  1.1.1.1.8.2  lukem 
    200  1.1.1.1.8.2  lukem 	while ((ch = *src++) != '\0') {
    201  1.1.1.1.8.2  lukem 		if (isascii(ch) && isspace(ch))	/* Skip whitespace anywhere. */
    202  1.1.1.1.8.2  lukem 			continue;
    203  1.1.1.1.8.2  lukem 
    204  1.1.1.1.8.2  lukem 		if (ch == Pad64)
    205  1.1.1.1.8.2  lukem 			break;
    206  1.1.1.1.8.2  lukem 
    207  1.1.1.1.8.2  lukem 		pos = strchr(Base64, ch);
    208  1.1.1.1.8.2  lukem 		if (pos == 0) 		/* A non-base64 character. */
    209  1.1.1.1.8.2  lukem 			return (-1);
    210  1.1.1.1.8.2  lukem 
    211  1.1.1.1.8.2  lukem 		switch (state) {
    212  1.1.1.1.8.2  lukem 		case 0:
    213  1.1.1.1.8.2  lukem 			if (target) {
    214  1.1.1.1.8.2  lukem 				if ((size_t)tarindex >= targsize)
    215  1.1.1.1.8.2  lukem 					return (-1);
    216  1.1.1.1.8.2  lukem 				target[tarindex] = (pos - Base64) << 2;
    217  1.1.1.1.8.2  lukem 			}
    218  1.1.1.1.8.2  lukem 			state = 1;
    219  1.1.1.1.8.2  lukem 			break;
    220  1.1.1.1.8.2  lukem 		case 1:
    221  1.1.1.1.8.2  lukem 			if (target) {
    222  1.1.1.1.8.2  lukem 				if ((size_t)tarindex + 1 >= targsize)
    223  1.1.1.1.8.2  lukem 					return (-1);
    224  1.1.1.1.8.2  lukem 				target[tarindex]   |=  (pos - Base64) >> 4;
    225  1.1.1.1.8.2  lukem 				target[tarindex+1]  = ((pos - Base64) & 0x0f)
    226  1.1.1.1.8.2  lukem 							<< 4 ;
    227  1.1.1.1.8.2  lukem 			}
    228  1.1.1.1.8.2  lukem 			tarindex++;
    229  1.1.1.1.8.2  lukem 			state = 2;
    230  1.1.1.1.8.2  lukem 			break;
    231  1.1.1.1.8.2  lukem 		case 2:
    232  1.1.1.1.8.2  lukem 			if (target) {
    233  1.1.1.1.8.2  lukem 				if ((size_t)tarindex + 1 >= targsize)
    234  1.1.1.1.8.2  lukem 					return (-1);
    235  1.1.1.1.8.2  lukem 				target[tarindex]   |=  (pos - Base64) >> 2;
    236  1.1.1.1.8.2  lukem 				target[tarindex+1]  = ((pos - Base64) & 0x03)
    237  1.1.1.1.8.2  lukem 							<< 6;
    238  1.1.1.1.8.2  lukem 			}
    239  1.1.1.1.8.2  lukem 			tarindex++;
    240  1.1.1.1.8.2  lukem 			state = 3;
    241  1.1.1.1.8.2  lukem 			break;
    242  1.1.1.1.8.2  lukem 		case 3:
    243  1.1.1.1.8.2  lukem 			if (target) {
    244  1.1.1.1.8.2  lukem 				if ((size_t)tarindex >= targsize)
    245  1.1.1.1.8.2  lukem 					return (-1);
    246  1.1.1.1.8.2  lukem 				target[tarindex] |= (pos - Base64);
    247  1.1.1.1.8.2  lukem 			}
    248  1.1.1.1.8.2  lukem 			tarindex++;
    249  1.1.1.1.8.2  lukem 			state = 0;
    250  1.1.1.1.8.2  lukem 			break;
    251  1.1.1.1.8.2  lukem 		default:
    252  1.1.1.1.8.2  lukem 			abort();
    253  1.1.1.1.8.2  lukem 		}
    254  1.1.1.1.8.2  lukem 	}
    255  1.1.1.1.8.2  lukem 
    256  1.1.1.1.8.2  lukem 	/*
    257  1.1.1.1.8.2  lukem 	 * We are done decoding Base-64 chars.  Let's see if we ended
    258  1.1.1.1.8.2  lukem 	 * on a byte boundary, and/or with erroneous trailing characters.
    259  1.1.1.1.8.2  lukem 	 */
    260  1.1.1.1.8.2  lukem 
    261  1.1.1.1.8.2  lukem 	if (ch == Pad64) {		/* We got a pad char. */
    262  1.1.1.1.8.2  lukem 		ch = *src++;		/* Skip it, get next. */
    263  1.1.1.1.8.2  lukem 		switch (state) {
    264  1.1.1.1.8.2  lukem 		case 0:		/* Invalid = in first position */
    265  1.1.1.1.8.2  lukem 		case 1:		/* Invalid = in second position */
    266  1.1.1.1.8.2  lukem 			return (-1);
    267  1.1.1.1.8.2  lukem 
    268  1.1.1.1.8.2  lukem 		case 2:		/* Valid, means one byte of info */
    269  1.1.1.1.8.2  lukem 			/* Skip any number of spaces. */
    270  1.1.1.1.8.2  lukem 			for ((void)NULL; ch != '\0'; ch = *src++)
    271  1.1.1.1.8.2  lukem 				if (! (isascii(ch) && isspace(ch)))
    272  1.1.1.1.8.2  lukem 					break;
    273  1.1.1.1.8.2  lukem 			/* Make sure there is another trailing = sign. */
    274  1.1.1.1.8.2  lukem 			if (ch != Pad64)
    275  1.1.1.1.8.2  lukem 				return (-1);
    276  1.1.1.1.8.2  lukem 			ch = *src++;		/* Skip the = */
    277  1.1.1.1.8.2  lukem 			/* Fall through to "single trailing =" case. */
    278  1.1.1.1.8.2  lukem 			/* FALLTHROUGH */
    279  1.1.1.1.8.2  lukem 
    280  1.1.1.1.8.2  lukem 		case 3:		/* Valid, means two bytes of info */
    281  1.1.1.1.8.2  lukem 			/*
    282  1.1.1.1.8.2  lukem 			 * We know this char is an =.  Is there anything but
    283  1.1.1.1.8.2  lukem 			 * whitespace after it?
    284  1.1.1.1.8.2  lukem 			 */
    285  1.1.1.1.8.2  lukem 			for ((void)NULL; ch != '\0'; ch = *src++)
    286  1.1.1.1.8.2  lukem 				if (! (isascii(ch) && isspace(ch)))
    287  1.1.1.1.8.2  lukem 					return (-1);
    288  1.1.1.1.8.2  lukem 
    289  1.1.1.1.8.2  lukem 			/*
    290  1.1.1.1.8.2  lukem 			 * Now make sure for cases 2 and 3 that the "extra"
    291  1.1.1.1.8.2  lukem 			 * bits that slopped past the last full byte were
    292  1.1.1.1.8.2  lukem 			 * zeros.  If we don't check them, they become a
    293  1.1.1.1.8.2  lukem 			 * subliminal channel.
    294  1.1.1.1.8.2  lukem 			 */
    295  1.1.1.1.8.2  lukem 			if (target && target[tarindex] != 0)
    296  1.1.1.1.8.2  lukem 				return (-1);
    297  1.1.1.1.8.2  lukem 		}
    298  1.1.1.1.8.2  lukem 	} else {
    299  1.1.1.1.8.2  lukem 		/*
    300  1.1.1.1.8.2  lukem 		 * We ended by seeing the end of the string.  Make sure we
    301  1.1.1.1.8.2  lukem 		 * have no partial bytes lying around.
    302  1.1.1.1.8.2  lukem 		 */
    303  1.1.1.1.8.2  lukem 		if (state != 0)
    304  1.1.1.1.8.2  lukem 			return (-1);
    305  1.1.1.1.8.2  lukem 	}
    306  1.1.1.1.8.2  lukem 
    307  1.1.1.1.8.2  lukem 	return (tarindex);
    308  1.1.1.1.8.2  lukem }
    309