2006-09-15 20:53:37 +02:00
|
|
|
/* convert.c - Hex conversion functions.
|
2008-09-03 11:37:32 +02:00
|
|
|
* Copyright (C) 2006, 2008 Free Software Foundation, Inc.
|
2006-09-15 20:53:37 +02:00
|
|
|
*
|
|
|
|
* This file is part of GnuPG.
|
|
|
|
*
|
Change license for some files in common to LGPLv3+/GPLv2+.
Having the LGPL on the common GnuPG code helps to share code
between GnuPG and related projects (like GPGME and Libassuan). This
is good for interoperability and to reduces bugs.
* common/asshelp.c, common/asshelp.h, common/asshelp2.c, common/b64dec.c
* common/b64enc.c, common/convert.c, common/dns-cert.c
* common/dns-cert.h common/exechelp-posix.c, common/exechelp-w32.c
* common/exechelp-w32ce.c, common/exechelp.h, common/get-passphrase.c
* common/get-passphrase.h, common/gettime.c, common/gpgrlhelp.c
* common/helpfile.c, common/homedir.c, common/http.c, common/http.h
* common/i18n.c, common/init.c, common/init.h, common/iobuf.c
* common/iobuf.h, common/localename.c, common/membuf.c, common/membuf.h
* common/miscellaneous.c, common/openpgp-oid.c, common/openpgpdefs.h
* common/percent.c, common/pka.c, common/pka.h, common/session-env.c
* common/session-env.h, common/sexp-parse.h, common/sexputil.c
* common/signal.c, common/srv.c, common/srv.h, common/ssh-utils.c
* common/ssh-utils.h, common/sysutils.c, common/sysutils.h
* common/tlv.c, common/tlv.h, common/ttyio.c, common/ttyio.h
* common/userids.c, common/userids.h, common/xasprintf.c: Change
license to LGPLv3+/GPLv2+/
2012-04-20 15:43:06 +02:00
|
|
|
* This file is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of either
|
2006-09-15 20:53:37 +02:00
|
|
|
*
|
Change license for some files in common to LGPLv3+/GPLv2+.
Having the LGPL on the common GnuPG code helps to share code
between GnuPG and related projects (like GPGME and Libassuan). This
is good for interoperability and to reduces bugs.
* common/asshelp.c, common/asshelp.h, common/asshelp2.c, common/b64dec.c
* common/b64enc.c, common/convert.c, common/dns-cert.c
* common/dns-cert.h common/exechelp-posix.c, common/exechelp-w32.c
* common/exechelp-w32ce.c, common/exechelp.h, common/get-passphrase.c
* common/get-passphrase.h, common/gettime.c, common/gpgrlhelp.c
* common/helpfile.c, common/homedir.c, common/http.c, common/http.h
* common/i18n.c, common/init.c, common/init.h, common/iobuf.c
* common/iobuf.h, common/localename.c, common/membuf.c, common/membuf.h
* common/miscellaneous.c, common/openpgp-oid.c, common/openpgpdefs.h
* common/percent.c, common/pka.c, common/pka.h, common/session-env.c
* common/session-env.h, common/sexp-parse.h, common/sexputil.c
* common/signal.c, common/srv.c, common/srv.h, common/ssh-utils.c
* common/ssh-utils.h, common/sysutils.c, common/sysutils.h
* common/tlv.c, common/tlv.h, common/ttyio.c, common/ttyio.h
* common/userids.c, common/userids.h, common/xasprintf.c: Change
license to LGPLv3+/GPLv2+/
2012-04-20 15:43:06 +02:00
|
|
|
* - the GNU Lesser General Public License as published by the Free
|
|
|
|
* Software Foundation; either version 3 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* or
|
|
|
|
*
|
|
|
|
* - the GNU General Public License as published by the Free
|
|
|
|
* Software Foundation; either version 2 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* or both in parallel, as here.
|
|
|
|
*
|
|
|
|
* This file is distributed in the hope that it will be useful,
|
2006-09-15 20:53:37 +02:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2016-11-05 12:02:19 +01:00
|
|
|
* along with this program; if not, see <https://www.gnu.org/licenses/>.
|
2006-09-15 20:53:37 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
|
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define tohex(n) ((n) < 10 ? ((n) + '0') : (((n) - 10) + 'A'))
|
|
|
|
|
|
|
|
|
2006-10-20 13:38:48 +02:00
|
|
|
/* Convert STRING consisting of hex characters into its binary
|
|
|
|
representation and store that at BUFFER. BUFFER needs to be of
|
2008-09-03 11:37:32 +02:00
|
|
|
LENGTH bytes. The function checks that the STRING will convert
|
2006-10-20 13:38:48 +02:00
|
|
|
exactly to LENGTH bytes. The string is delimited by either end of
|
|
|
|
string or a white space character. The function returns -1 on
|
|
|
|
error or the length of the parsed string. */
|
|
|
|
int
|
|
|
|
hex2bin (const char *string, void *buffer, size_t length)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
const char *s = string;
|
|
|
|
|
|
|
|
for (i=0; i < length; )
|
|
|
|
{
|
|
|
|
if (!hexdigitp (s) || !hexdigitp (s+1))
|
|
|
|
return -1; /* Invalid hex digits. */
|
|
|
|
((unsigned char*)buffer)[i++] = xtoi_2 (s);
|
|
|
|
s += 2;
|
|
|
|
}
|
|
|
|
if (*s && (!isascii (*s) || !isspace (*s)) )
|
|
|
|
return -1; /* Not followed by Nul or white space. */
|
|
|
|
if (i != length)
|
|
|
|
return -1; /* Not of expected length. */
|
|
|
|
if (*s)
|
|
|
|
s++; /* Skip the delimiter. */
|
|
|
|
return s - string;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-15 20:53:37 +02:00
|
|
|
/* Convert STRING consisting of hex characters into its binary representation
|
|
|
|
and store that at BUFFER. BUFFER needs to be of LENGTH bytes. The
|
|
|
|
function check that the STRING will convert exactly to LENGTH
|
2015-11-16 12:41:46 +01:00
|
|
|
bytes. Colons between the hex digits are allowed, if one colon
|
2006-09-15 20:53:37 +02:00
|
|
|
has been given a colon is expected very 2 characters. The string
|
|
|
|
is delimited by either end of string or a white space character.
|
|
|
|
The function returns -1 on error or the length of the parsed
|
|
|
|
string. */
|
|
|
|
int
|
|
|
|
hexcolon2bin (const char *string, void *buffer, size_t length)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
const char *s = string;
|
|
|
|
int need_colon = 0;
|
|
|
|
|
|
|
|
for (i=0; i < length; )
|
|
|
|
{
|
|
|
|
if (i==1 && *s == ':') /* Skip colons between hex digits. */
|
|
|
|
{
|
|
|
|
need_colon = 1;
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
else if (need_colon && *s == ':')
|
|
|
|
s++;
|
|
|
|
else if (need_colon)
|
|
|
|
return -1; /* Colon expected. */
|
|
|
|
if (!hexdigitp (s) || !hexdigitp (s+1))
|
|
|
|
return -1; /* Invalid hex digits. */
|
|
|
|
((unsigned char*)buffer)[i++] = xtoi_2 (s);
|
|
|
|
s += 2;
|
|
|
|
}
|
|
|
|
if (*s == ':')
|
|
|
|
return -1; /* Trailing colons are not allowed. */
|
|
|
|
if (*s && (!isascii (*s) || !isspace (*s)) )
|
|
|
|
return -1; /* Not followed by Nul or white space. */
|
|
|
|
if (i != length)
|
|
|
|
return -1; /* Not of expected length. */
|
|
|
|
if (*s)
|
|
|
|
s++; /* Skip the delimiter. */
|
|
|
|
return s - string;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-09-03 11:37:32 +02:00
|
|
|
|
2006-09-15 20:53:37 +02:00
|
|
|
static char *
|
|
|
|
do_bin2hex (const void *buffer, size_t length, char *stringbuf, int with_colon)
|
|
|
|
{
|
|
|
|
const unsigned char *s;
|
|
|
|
char *p;
|
2011-02-03 16:31:42 +01:00
|
|
|
|
2006-09-15 20:53:37 +02:00
|
|
|
if (!stringbuf)
|
|
|
|
{
|
|
|
|
/* Not really correct for with_colon but we don't care about the
|
|
|
|
one wasted byte. */
|
2011-02-03 16:31:42 +01:00
|
|
|
size_t n = with_colon? 3:2;
|
|
|
|
size_t nbytes = n * length + 1;
|
|
|
|
if (length && (nbytes-1) / n != length)
|
2006-09-15 20:53:37 +02:00
|
|
|
{
|
2010-03-02 22:25:08 +01:00
|
|
|
gpg_err_set_errno (ENOMEM);
|
2006-09-15 20:53:37 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
stringbuf = xtrymalloc (nbytes);
|
|
|
|
if (!stringbuf)
|
|
|
|
return NULL;
|
|
|
|
}
|
2011-02-03 16:31:42 +01:00
|
|
|
|
2006-09-15 20:53:37 +02:00
|
|
|
for (s = buffer, p = stringbuf; length; length--, s++)
|
|
|
|
{
|
|
|
|
if (with_colon && s != buffer)
|
|
|
|
*p++ = ':';
|
|
|
|
*p++ = tohex ((*s>>4)&15);
|
|
|
|
*p++ = tohex (*s&15);
|
|
|
|
}
|
|
|
|
*p = 0;
|
|
|
|
|
|
|
|
return stringbuf;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Convert LENGTH bytes of data in BUFFER into hex encoding and store
|
|
|
|
that at the provided STRINGBUF. STRINGBUF must be allocated of at
|
|
|
|
least (2*LENGTH+1) bytes or be NULL so that the function mallocs an
|
|
|
|
appropriate buffer. Returns STRINGBUF or NULL on error (which may
|
|
|
|
only occur if STRINGBUF has been NULL and the internal malloc
|
|
|
|
failed). */
|
|
|
|
char *
|
|
|
|
bin2hex (const void *buffer, size_t length, char *stringbuf)
|
|
|
|
{
|
|
|
|
return do_bin2hex (buffer, length, stringbuf, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Convert LENGTH bytes of data in BUFFER into hex encoding and store
|
|
|
|
that at the provided STRINGBUF. STRINGBUF must be allocated of at
|
|
|
|
least (3*LENGTH+1) bytes or be NULL so that the function mallocs an
|
|
|
|
appropriate buffer. Returns STRINGBUF or NULL on error (which may
|
|
|
|
only occur if STRINGBUF has been NULL and the internal malloc
|
|
|
|
failed). */
|
|
|
|
char *
|
|
|
|
bin2hexcolon (const void *buffer, size_t length, char *stringbuf)
|
|
|
|
{
|
|
|
|
return do_bin2hex (buffer, length, stringbuf, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-09-03 11:37:32 +02:00
|
|
|
|
|
|
|
/* Convert HEXSTRING consisting of hex characters into string and
|
|
|
|
store that at BUFFER. HEXSTRING is either delimited by end of
|
|
|
|
string or a white space character. The function makes sure that
|
2015-04-23 14:31:04 +02:00
|
|
|
the resulting string in BUFFER is terminated by a Nul byte. Note
|
2016-10-27 14:58:01 +02:00
|
|
|
that the returned string may include embedded Nul bytes; the extra
|
2015-04-23 14:31:04 +02:00
|
|
|
Nul byte at the end is used to make sure tha the result can always
|
|
|
|
be used as a C-string.
|
|
|
|
|
2015-11-16 12:41:46 +01:00
|
|
|
BUFSIZE is the available length of BUFFER; if the converted result
|
2015-04-23 14:31:04 +02:00
|
|
|
plus a possible required extra Nul character does not fit into this
|
2008-09-03 11:37:32 +02:00
|
|
|
buffer, the function returns NULL and won't change the existing
|
2015-04-23 14:31:04 +02:00
|
|
|
content of BUFFER. In-place conversion is possible as long as
|
2008-09-03 11:37:32 +02:00
|
|
|
BUFFER points to HEXSTRING.
|
2011-02-03 16:31:42 +01:00
|
|
|
|
2015-04-23 14:31:04 +02:00
|
|
|
If BUFFER is NULL and BUFSIZE is 0 the function scans HEXSTRING but
|
2008-09-03 11:37:32 +02:00
|
|
|
does not store anything. This may be used to find the end of
|
2015-04-23 14:31:04 +02:00
|
|
|
HEXSTRING.
|
2008-09-03 11:37:32 +02:00
|
|
|
|
2015-11-16 12:41:46 +01:00
|
|
|
On success the function returns a pointer to the next character
|
2008-09-03 11:37:32 +02:00
|
|
|
after HEXSTRING (which is either end-of-string or a the next white
|
2015-04-23 14:31:04 +02:00
|
|
|
space). If BUFLEN is not NULL the number of valid vytes in BUFFER
|
|
|
|
is stored there (an extra Nul byte is not counted); this will even
|
|
|
|
be done if BUFFER has been passed as NULL. */
|
2008-09-03 11:37:32 +02:00
|
|
|
const char *
|
|
|
|
hex2str (const char *hexstring, char *buffer, size_t bufsize, size_t *buflen)
|
|
|
|
{
|
|
|
|
const char *s = hexstring;
|
|
|
|
int idx, count;
|
|
|
|
int need_nul = 0;
|
|
|
|
|
|
|
|
if (buflen)
|
|
|
|
*buflen = 0;
|
|
|
|
|
|
|
|
for (s=hexstring, count=0; hexdigitp (s) && hexdigitp (s+1); s += 2, count++)
|
|
|
|
;
|
|
|
|
if (*s && (!isascii (*s) || !isspace (*s)) )
|
2015-04-23 14:31:04 +02:00
|
|
|
{
|
|
|
|
gpg_err_set_errno (EINVAL);
|
|
|
|
return NULL; /* Not followed by Nul or white space. */
|
|
|
|
}
|
2009-01-19 17:15:30 +01:00
|
|
|
/* We need to append a nul character. However we don't want that if
|
|
|
|
the hexstring already ends with "00". */
|
|
|
|
need_nul = ((s == hexstring) || !(s[-2] == '0' && s[-1] == '0'));
|
2008-09-03 11:37:32 +02:00
|
|
|
if (need_nul)
|
|
|
|
count++;
|
|
|
|
|
|
|
|
if (buffer)
|
|
|
|
{
|
|
|
|
if (count > bufsize)
|
2015-04-23 14:31:04 +02:00
|
|
|
{
|
|
|
|
gpg_err_set_errno (EINVAL);
|
|
|
|
return NULL; /* Too long. */
|
|
|
|
}
|
2011-02-03 16:31:42 +01:00
|
|
|
|
2008-09-03 11:37:32 +02:00
|
|
|
for (s=hexstring, idx=0; hexdigitp (s) && hexdigitp (s+1); s += 2)
|
|
|
|
((unsigned char*)buffer)[idx++] = xtoi_2 (s);
|
|
|
|
if (need_nul)
|
|
|
|
buffer[idx] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (buflen)
|
2015-04-23 14:31:04 +02:00
|
|
|
*buflen = count - need_nul;
|
2008-09-03 11:37:32 +02:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Same as hex2str but this function allocated a new string. Returns
|
|
|
|
NULL on error. If R_COUNT is not NULL, the number of scanned bytes
|
|
|
|
will be stored there. ERRNO is set on error. */
|
|
|
|
char *
|
|
|
|
hex2str_alloc (const char *hexstring, size_t *r_count)
|
|
|
|
{
|
|
|
|
const char *tail;
|
|
|
|
size_t nbytes;
|
|
|
|
char *result;
|
|
|
|
|
|
|
|
tail = hex2str (hexstring, NULL, 0, &nbytes);
|
|
|
|
if (!tail)
|
|
|
|
{
|
|
|
|
if (r_count)
|
|
|
|
*r_count = 0;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (r_count)
|
|
|
|
*r_count = tail - hexstring;
|
|
|
|
result = xtrymalloc (nbytes+1);
|
|
|
|
if (!result)
|
|
|
|
return NULL;
|
|
|
|
if (!hex2str (hexstring, result, nbytes+1, NULL))
|
|
|
|
BUG ();
|
|
|
|
return result;
|
|
|
|
}
|