1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
|
/* base64.c -- routines for converting to base64
*
* This code is Copyright (c) 2012, by the authors of nmh. See the
* COPYRIGHT file in the root directory of the nmh distribution for
* complete copyright information.
*/
#include "h/mh.h"
#include "charstring.h"
#include "error.h"
#include "h/mime.h"
#include <inttypes.h>
#include "base64.h"
static const char nib2b64[0x40+1] =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
/*
* Copy data from one file to another, converting to base64-encoding.
*
* Arguments include:
*
* in - Input filehandle (unencoded data)
* out - Output filename (base64-encoded data)
* crlf - If set, output encoded CRLF for every LF on input.
*
* Returns OK on success, NOTOK otherwise.
*/
int
writeBase64aux (FILE *in, FILE *out, int crlf)
{
unsigned int cc, n;
unsigned char inbuf[3];
bool skipnl = false;
n = BPERLIN;
while ((cc = fread (inbuf, sizeof(*inbuf), sizeof(inbuf), in)) > 0) {
unsigned long bits;
char *bp;
char outbuf[4];
if (cc < sizeof(inbuf)) {
inbuf[2] = 0;
if (cc < sizeof(inbuf) - 1)
inbuf[1] = 0;
}
/*
* Convert a LF to a CRLF if desired. That means we need to push
* data back into the input stream.
*/
if (crlf) {
unsigned int i;
for (i = 0; i < cc; i++) {
if (inbuf[i] == '\n' && !skipnl) {
inbuf[i] = '\r';
/*
* If it's the last character in the buffer, we can just
* substitute a \r and push a \n back. Otherwise shuffle
* everything down and push the last character back.
*/
if (i == cc - 1) {
/*
* If we're at the end of the input, there might be
* more room in inbuf; if so, add it there. Otherwise
* push it back to the input.
*/
if (cc < sizeof(inbuf))
inbuf[cc++] = '\n';
else
ungetc('\n', in);
skipnl = true;
} else {
/* This only works as long as sizeof(inbuf) == 3 */
ungetc(inbuf[cc - 1], in);
if (cc == 3 && i == 0)
inbuf[2] = inbuf[1];
inbuf[++i] = '\n';
}
} else {
skipnl = false;
}
}
}
bits = (inbuf[0] & 0xff) << 16;
bits |= (inbuf[1] & 0xff) << 8;
bits |= inbuf[2] & 0xff;
for (bp = outbuf + sizeof(outbuf); bp > outbuf; bits >>= 6)
*--bp = nib2b64[bits & 0x3f];
if (cc < sizeof(inbuf)) {
outbuf[3] = '=';
if (cc < sizeof inbuf - 1)
outbuf[2] = '=';
}
if (fwrite (outbuf, sizeof(*outbuf), sizeof(outbuf), out) <
sizeof outbuf) {
advise ("writeBase64aux", "fwrite");
}
if (cc < sizeof(inbuf)) {
putc ('\n', out);
return OK;
}
if (--n <= 0) {
n = BPERLIN;
putc ('\n', out);
}
}
if (n != BPERLIN)
putc ('\n', out);
return OK;
}
/* Caller is responsible for ensuring that the out array is long
enough. Given length is that of in, out should be have at
least this capacity:
4 * [length/3] + length/57 + 2
But double the length will certainly be sufficient. */
int
writeBase64 (const unsigned char *in, size_t length, unsigned char *out)
{
unsigned int n = BPERLIN;
while (1) {
unsigned long bits;
unsigned char *bp;
unsigned int cc;
for (cc = 0; length > 0 && cc < 3; ++cc, --length)
/* empty */ ;
if (cc == 0)
break;
bits = (in[0] & 0xff) << 16;
if (cc > 1) {
bits |= (in[1] & 0xff) << 8;
if (cc > 2) {
bits |= in[2] & 0xff;
}
}
for (bp = out + 4; bp > out; bits >>= 6)
*--bp = nib2b64[bits & 0x3f];
if (cc < 3) {
out[3] = '=';
if (cc < 2)
out[2] = '=';
out += 4;
n = 0;
break;
}
in += 3;
out += 4;
if (--n <= 0) {
n = BPERLIN;
*out++ = '\n';
}
}
if (n != BPERLIN)
*out++ = '\n';
*out = '\0';
return OK;
}
/*
* Essentially a duplicate of writeBase64, but without line wrapping or
* newline termination (note: string IS NUL terminated)
*/
int
writeBase64raw (const unsigned char *in, size_t length, unsigned char *out)
{
while (1) {
unsigned long bits;
unsigned char *bp;
unsigned int cc;
for (cc = 0; length > 0 && cc < 3; ++cc, --length)
/* empty */ ;
if (cc == 0)
break;
bits = (in[0] & 0xff) << 16;
if (cc > 1) {
bits |= (in[1] & 0xff) << 8;
if (cc > 2) {
bits |= in[2] & 0xff;
}
}
for (bp = out + 4; bp > out; bits >>= 6)
*--bp = nib2b64[bits & 0x3f];
if (cc < 3) {
out[3] = '=';
if (cc < 2)
out[2] = '=';
out += 4;
break;
}
in += 3;
out += 4;
}
*out = '\0';
return OK;
}
static const unsigned char b642nib[0x80] = {
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x3e, 0xff, 0xff, 0xff, 0x3f,
0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,
0x3c, 0x3d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,
0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16,
0x17, 0x18, 0x19, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20,
0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28,
0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30,
0x31, 0x32, 0x33, 0xff, 0xff, 0xff, 0xff, 0xff
};
/*
* Decode a base64 string. The result, decoded, must be freed by the caller.
*
* encoded - the string to be decoded
* decoded - the decoded bytes
* len - number of decoded bytes
* skip-crs - non-zero for text content, and for which CR's should be
* skipped
*/
int
decodeBase64 (const char *encoded, unsigned char **decoded, size_t *len,
int skip_crs)
{
const char *cp = encoded;
int bitno, skip;
uint32_t bits;
/* Size the decoded string very conservatively. */
charstring_t decoded_c = charstring_create (strlen (encoded));
bitno = 18;
bits = 0L;
skip = 0;
bool self_delimiting = false;
for (; *cp; ++cp) {
switch (*cp) {
unsigned char value;
default:
if (isspace ((unsigned char) *cp)) {
break;
}
if (skip || (((unsigned char) *cp) & 0x80) ||
(value = b642nib[((unsigned char) *cp) & 0x7f]) > 0x3f) {
inform("invalid base64 byte %#x: %.42s",
*(unsigned char *)cp, cp);
charstring_free (decoded_c);
*decoded = NULL;
return NOTOK;
}
bits |= value << bitno;
test_end:
if ((bitno -= 6) < 0) {
char b = (char) ((bits >> 16) & 0xff);
if (! skip_crs || b != '\r') {
charstring_push_back (decoded_c, b);
}
if (skip < 2) {
b = (bits >> 8) & 0xff;
if (! skip_crs || b != '\r') {
charstring_push_back (decoded_c, b);
}
if (skip < 1) {
b = bits & 0xff;
if (! skip_crs || b != '\r') {
charstring_push_back (decoded_c, b);
}
}
}
bitno = 18;
bits = 0L;
skip = 0;
}
break;
case '=':
if (++skip <= 3)
goto test_end;
self_delimiting = true;
break;
}
}
if (! self_delimiting && bitno != 18) {
/* Show some context for the error. */
cp -= min(cp - encoded, 20);
inform("premature ending (bitno %d) near %s", bitno, cp);
charstring_free (decoded_c);
*decoded = NULL;
return NOTOK;
}
*decoded = (unsigned char *) charstring_buffer_copy (decoded_c);
*len = charstring_bytes (decoded_c);
charstring_free (decoded_c);
return OK;
}
/*
* Prepare an unsigned char array for display by replacing non-printable
* ASCII bytes with their hex representation. Assumes ASCII input. output
* is allocated by the function and must be freed by the caller.
*/
void
hexify (const unsigned char *input, size_t len, char **output)
{
/* Start with a charstring capacity that's arbitrarily larger than len. */
const charstring_t tmp = charstring_create (2 * len);
const unsigned char *cp = input;
size_t i;
for (i = 0; i < len; ++i, ++cp) {
if (isascii(*cp) && isprint(*cp)) {
charstring_push_back (tmp, (const char) *cp);
} else {
char s[16];
const int num = snprintf(s, sizeof s, "[0x%02x]", *cp);
if (num <= 0 || (unsigned int) num >= sizeof s) {
inform("hexify failed to write nonprintable character, needed %d bytes", num + 1);
} else {
charstring_append_cstring (tmp, s);
}
}
}
*output = charstring_buffer_copy (tmp);
charstring_free (tmp);
}
|