2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-02-23 03:22:43 -05:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2001-08-03 09:51:44 -04:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2011-04-17 17:03:33 -04:00
|
|
|
* Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2001-08-03 09:51:44 -04:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
2004-02-23 03:22:43 -05:00
|
|
|
*
|
2001-08-03 09:51:44 -04:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
2001-08-03 09:51:44 -04:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
2001-08-03 09:51:44 -04:00
|
|
|
|
2011-04-17 17:03:33 -04:00
|
|
|
/* Base64 encoding/decoding */
|
2000-09-28 04:01:52 -04:00
|
|
|
|
2001-08-24 03:39:50 -04:00
|
|
|
#include "setup.h"
|
|
|
|
|
2001-08-14 05:25:15 -04:00
|
|
|
#define _MPRINTF_REPLACE /* use our functions only */
|
|
|
|
#include <curl/mprintf.h>
|
|
|
|
|
2007-01-03 18:04:38 -05:00
|
|
|
#include "urldata.h" /* for the SessionHandle definition */
|
2010-02-21 22:41:02 -05:00
|
|
|
#include "warnless.h"
|
2008-08-16 20:25:38 -04:00
|
|
|
#include "curl_base64.h"
|
2009-04-21 07:46:16 -04:00
|
|
|
#include "curl_memory.h"
|
2011-04-19 18:48:20 -04:00
|
|
|
#include "non-ascii.h"
|
2000-09-28 04:01:52 -04:00
|
|
|
|
2004-05-11 07:30:23 -04:00
|
|
|
/* include memdebug.h last */
|
2000-10-09 07:12:34 -04:00
|
|
|
#include "memdebug.h"
|
2004-05-11 07:30:23 -04:00
|
|
|
|
2007-01-03 18:04:38 -05:00
|
|
|
/* ---- Base64 Encoding/Decoding Table --- */
|
|
|
|
static const char table64[]=
|
|
|
|
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
|
2000-10-09 07:12:34 -04:00
|
|
|
|
2004-02-23 03:22:43 -05:00
|
|
|
static void decodeQuantum(unsigned char *dest, const char *src)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2010-02-21 14:59:09 -05:00
|
|
|
const char *s, *p;
|
|
|
|
unsigned long i, v, x = 0;
|
2007-01-03 18:04:38 -05:00
|
|
|
|
2010-02-21 14:59:09 -05:00
|
|
|
for(i = 0, s = src; i < 4; i++, s++) {
|
|
|
|
v = 0;
|
|
|
|
p = table64;
|
|
|
|
while(*p && (*p != *s)) {
|
|
|
|
v++;
|
|
|
|
p++;
|
2010-02-20 06:58:26 -05:00
|
|
|
}
|
2010-02-21 14:59:09 -05:00
|
|
|
if(*p == *s)
|
|
|
|
x = (x << 6) + v;
|
|
|
|
else if(*s == '=')
|
2003-01-06 07:41:33 -05:00
|
|
|
x = (x << 6);
|
2001-08-03 09:51:44 -04:00
|
|
|
}
|
|
|
|
|
2010-02-22 13:56:29 -05:00
|
|
|
dest[2] = curlx_ultouc(x);
|
2004-03-01 07:54:59 -05:00
|
|
|
x >>= 8;
|
2010-02-22 13:56:29 -05:00
|
|
|
dest[1] = curlx_ultouc(x);
|
2004-03-01 07:54:59 -05:00
|
|
|
x >>= 8;
|
2010-02-22 13:56:29 -05:00
|
|
|
dest[0] = curlx_ultouc(x);
|
2000-09-28 04:01:52 -04:00
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-02-23 03:22:43 -05:00
|
|
|
/*
|
|
|
|
* Curl_base64_decode()
|
|
|
|
*
|
2011-08-24 02:07:36 -04:00
|
|
|
* Given a base64 NUL-terminated string at src, decode it and return a
|
|
|
|
* pointer in *outptr to a newly allocated memory area holding decoded
|
|
|
|
* data. Size of decoded data is returned in variable pointed by outlen.
|
|
|
|
*
|
|
|
|
* Returns CURLE_OK on success, otherwise specific error code. Function
|
|
|
|
* output shall not be considered valid unless CURLE_OK is returned.
|
|
|
|
*
|
|
|
|
* When decoded data length is 0, returns NULL in *outptr.
|
2011-06-10 08:40:46 -04:00
|
|
|
*
|
|
|
|
* @unittest: 1302
|
2001-08-03 09:51:44 -04:00
|
|
|
*/
|
2011-08-24 02:07:36 -04:00
|
|
|
CURLcode Curl_base64_decode(const char *src,
|
|
|
|
unsigned char **outptr, size_t *outlen)
|
2000-09-28 04:01:52 -04:00
|
|
|
{
|
2010-02-19 20:15:10 -05:00
|
|
|
size_t length = 0;
|
|
|
|
size_t equalsTerm = 0;
|
|
|
|
size_t i;
|
|
|
|
size_t numQuantums;
|
2001-08-03 09:51:44 -04:00
|
|
|
unsigned char lastQuantum[3];
|
2010-02-19 20:15:10 -05:00
|
|
|
size_t rawlen = 0;
|
2005-02-22 07:10:30 -05:00
|
|
|
unsigned char *newstr;
|
|
|
|
|
|
|
|
*outptr = NULL;
|
2011-08-24 02:07:36 -04:00
|
|
|
*outlen = 0;
|
2004-02-23 03:22:43 -05:00
|
|
|
|
2001-08-03 09:51:44 -04:00
|
|
|
while((src[length] != '=') && src[length])
|
|
|
|
length++;
|
2005-02-28 18:54:17 -05:00
|
|
|
/* A maximum of two = padding characters is allowed */
|
|
|
|
if(src[length] == '=') {
|
2001-08-03 09:51:44 -04:00
|
|
|
equalsTerm++;
|
2005-02-28 18:54:17 -05:00
|
|
|
if(src[length+equalsTerm] == '=')
|
|
|
|
equalsTerm++;
|
|
|
|
}
|
2002-12-19 11:02:51 -05:00
|
|
|
numQuantums = (length + equalsTerm) / 4;
|
2004-02-23 03:22:43 -05:00
|
|
|
|
2005-02-28 18:54:17 -05:00
|
|
|
/* Don't allocate a buffer if the decoded length is 0 */
|
2010-02-19 20:15:10 -05:00
|
|
|
if(numQuantums == 0)
|
2011-08-24 02:07:36 -04:00
|
|
|
return CURLE_OK;
|
2005-02-28 18:54:17 -05:00
|
|
|
|
2004-02-23 03:22:43 -05:00
|
|
|
rawlen = (numQuantums * 3) - equalsTerm;
|
|
|
|
|
2005-02-28 18:54:17 -05:00
|
|
|
/* The buffer must be large enough to make room for the last quantum
|
|
|
|
(which may be partially thrown out) and the zero terminator. */
|
|
|
|
newstr = malloc(rawlen+4);
|
2005-02-22 07:10:30 -05:00
|
|
|
if(!newstr)
|
2011-08-24 02:07:36 -04:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2005-02-22 07:10:30 -05:00
|
|
|
|
|
|
|
*outptr = newstr;
|
|
|
|
|
2005-02-28 18:54:17 -05:00
|
|
|
/* Decode all but the last quantum (which may not decode to a
|
|
|
|
multiple of 3 bytes) */
|
2002-12-19 11:02:51 -05:00
|
|
|
for(i = 0; i < numQuantums - 1; i++) {
|
2008-09-02 14:36:39 -04:00
|
|
|
decodeQuantum(newstr, src);
|
2005-02-22 07:10:30 -05:00
|
|
|
newstr += 3; src += 4;
|
2000-09-28 04:01:52 -04:00
|
|
|
}
|
2001-08-03 09:51:44 -04:00
|
|
|
|
2005-02-28 18:54:17 -05:00
|
|
|
/* This final decode may actually read slightly past the end of the buffer
|
|
|
|
if the input string is missing pad bytes. This will almost always be
|
|
|
|
harmless. */
|
2001-08-03 09:51:44 -04:00
|
|
|
decodeQuantum(lastQuantum, src);
|
2003-01-09 06:31:49 -05:00
|
|
|
for(i = 0; i < 3 - equalsTerm; i++)
|
2005-02-22 07:10:30 -05:00
|
|
|
newstr[i] = lastQuantum[i];
|
2004-02-23 03:22:43 -05:00
|
|
|
|
2010-02-19 20:15:10 -05:00
|
|
|
newstr[i] = '\0'; /* zero terminate */
|
2011-08-24 02:07:36 -04:00
|
|
|
|
|
|
|
*outlen = rawlen; /* return size of decoded data */
|
|
|
|
|
|
|
|
return CURLE_OK;
|
2000-09-28 04:01:52 -04:00
|
|
|
}
|
2000-09-21 04:46:44 -04:00
|
|
|
|
2001-08-03 09:51:44 -04:00
|
|
|
/*
|
|
|
|
* Curl_base64_encode()
|
|
|
|
*
|
2011-08-24 02:07:36 -04:00
|
|
|
* Given a pointer to an input buffer and an input size, encode it and
|
|
|
|
* return a pointer in *outptr to a newly allocated memory area holding
|
|
|
|
* encoded data. Size of encoded data is returned in variable pointed by
|
|
|
|
* outlen.
|
|
|
|
*
|
|
|
|
* Input length of 0 indicates input buffer holds a NUL-terminated string.
|
|
|
|
*
|
|
|
|
* Returns CURLE_OK on success, otherwise specific error code. Function
|
|
|
|
* output shall not be considered valid unless CURLE_OK is returned.
|
|
|
|
*
|
|
|
|
* When encoded data length is 0, returns NULL in *outptr.
|
2001-08-03 09:51:44 -04:00
|
|
|
*
|
2011-06-10 08:40:46 -04:00
|
|
|
* @unittest: 1302
|
2001-08-03 09:51:44 -04:00
|
|
|
*/
|
2011-08-24 02:07:36 -04:00
|
|
|
CURLcode Curl_base64_encode(struct SessionHandle *data,
|
|
|
|
const char *inputbuff, size_t insize,
|
|
|
|
char **outptr, size_t *outlen)
|
2000-09-28 04:01:52 -04:00
|
|
|
{
|
2011-08-24 02:07:36 -04:00
|
|
|
CURLcode error;
|
2001-08-03 09:51:44 -04:00
|
|
|
unsigned char ibuf[3];
|
|
|
|
unsigned char obuf[4];
|
|
|
|
int i;
|
|
|
|
int inputparts;
|
|
|
|
char *output;
|
|
|
|
char *base64data;
|
2007-02-01 07:23:00 -05:00
|
|
|
char *convbuf = NULL;
|
2001-08-03 09:51:44 -04:00
|
|
|
|
2009-06-04 19:55:56 -04:00
|
|
|
const char *indata = inputbuff;
|
2001-08-03 09:51:44 -04:00
|
|
|
|
2011-08-24 02:07:36 -04:00
|
|
|
*outptr = NULL;
|
|
|
|
*outlen = 0;
|
2004-05-12 09:23:17 -04:00
|
|
|
|
2001-08-03 09:51:44 -04:00
|
|
|
if(0 == insize)
|
|
|
|
insize = strlen(indata);
|
|
|
|
|
2008-09-06 01:29:05 -04:00
|
|
|
base64data = output = malloc(insize*4/3+4);
|
2001-08-03 09:51:44 -04:00
|
|
|
if(NULL == output)
|
2011-08-24 02:07:36 -04:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2001-08-03 09:51:44 -04:00
|
|
|
|
2007-01-03 18:04:38 -05:00
|
|
|
/*
|
|
|
|
* The base64 data needs to be created using the network encoding
|
|
|
|
* not the host encoding. And we can't change the actual input
|
|
|
|
* so we copy it to a buffer, translate it, and use that instead.
|
|
|
|
*/
|
2011-08-24 02:07:36 -04:00
|
|
|
error = Curl_convert_clone(data, indata, insize, &convbuf);
|
|
|
|
if(error) {
|
2011-05-23 10:55:49 -04:00
|
|
|
free(output);
|
2011-08-24 02:07:36 -04:00
|
|
|
return error;
|
2011-05-23 10:55:49 -04:00
|
|
|
}
|
2011-04-19 18:48:20 -04:00
|
|
|
|
|
|
|
if(convbuf)
|
|
|
|
indata = (char *)convbuf;
|
2007-01-03 18:04:38 -05:00
|
|
|
|
2001-08-03 09:51:44 -04:00
|
|
|
while(insize > 0) {
|
2011-04-20 09:17:42 -04:00
|
|
|
for(i = inputparts = 0; i < 3; i++) {
|
2003-02-13 13:30:10 -05:00
|
|
|
if(insize > 0) {
|
2001-08-03 09:51:44 -04:00
|
|
|
inputparts++;
|
2010-02-20 14:51:02 -05:00
|
|
|
ibuf[i] = (unsigned char) *indata;
|
2001-08-03 09:51:44 -04:00
|
|
|
indata++;
|
|
|
|
insize--;
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
else
|
2001-08-03 09:51:44 -04:00
|
|
|
ibuf[i] = 0;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2004-02-23 03:22:43 -05:00
|
|
|
|
2006-07-19 17:14:02 -04:00
|
|
|
obuf[0] = (unsigned char) ((ibuf[0] & 0xFC) >> 2);
|
|
|
|
obuf[1] = (unsigned char) (((ibuf[0] & 0x03) << 4) | \
|
|
|
|
((ibuf[1] & 0xF0) >> 4));
|
|
|
|
obuf[2] = (unsigned char) (((ibuf[1] & 0x0F) << 2) | \
|
|
|
|
((ibuf[2] & 0xC0) >> 6));
|
|
|
|
obuf[3] = (unsigned char) (ibuf[2] & 0x3F);
|
2001-08-03 09:51:44 -04:00
|
|
|
|
|
|
|
switch(inputparts) {
|
|
|
|
case 1: /* only one byte read */
|
2004-06-24 07:54:11 -04:00
|
|
|
snprintf(output, 5, "%c%c==",
|
|
|
|
table64[obuf[0]],
|
|
|
|
table64[obuf[1]]);
|
2001-08-03 09:51:44 -04:00
|
|
|
break;
|
|
|
|
case 2: /* two bytes read */
|
2004-06-24 07:54:11 -04:00
|
|
|
snprintf(output, 5, "%c%c%c=",
|
|
|
|
table64[obuf[0]],
|
|
|
|
table64[obuf[1]],
|
|
|
|
table64[obuf[2]]);
|
2001-08-03 09:51:44 -04:00
|
|
|
break;
|
|
|
|
default:
|
2004-06-24 07:54:11 -04:00
|
|
|
snprintf(output, 5, "%c%c%c%c",
|
|
|
|
table64[obuf[0]],
|
|
|
|
table64[obuf[1]],
|
|
|
|
table64[obuf[2]],
|
|
|
|
table64[obuf[3]] );
|
2001-08-03 09:51:44 -04:00
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2001-08-03 09:51:44 -04:00
|
|
|
output += 4;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2011-08-24 02:07:36 -04:00
|
|
|
*output = '\0';
|
|
|
|
*outptr = base64data; /* return pointer to new data, allocated memory */
|
2001-08-03 09:51:44 -04:00
|
|
|
|
2011-04-19 18:48:20 -04:00
|
|
|
if(convbuf)
|
2007-01-03 18:04:38 -05:00
|
|
|
free(convbuf);
|
2011-04-19 18:48:20 -04:00
|
|
|
|
2011-08-24 02:07:36 -04:00
|
|
|
*outlen = strlen(base64data); /* return the length of the new data */
|
|
|
|
|
|
|
|
return CURLE_OK;
|
2001-08-03 09:51:44 -04:00
|
|
|
}
|
|
|
|
/* ---- End of Base64 Encoding ---- */
|