summaryrefslogtreecommitdiffstats
path: root/libreport/src/lib/binhex.c
blob: 238fda0cb8f96539c9ddd5c4b4db9a6e52d45a34 (plain)
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
/*
    Copyright (C) 2010  ABRT team
    Copyright (C) 2010  RedHat Inc

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License version 2
    as published by the Free Software Foundation.

    This program is distributed in the hope that it will be useful,
    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 along
    with this program; if not, write to the Free Software Foundation, Inc.,
    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "libreport.h"

static const char hexdigits_locase[] = "0123456789abcdef";

/* Emit a string of hex representation of bytes */
char *bin2hex(char *dst, const char *str, int count)
{
	while (count) {
		unsigned char c = *str++;
		/* put lowercase hex digits */
		*dst++ = hexdigits_locase[c >> 4];
		*dst++ = hexdigits_locase[c & 0xf];
		count--;
	}
	return dst;
}

/* Convert "xxxxxxxx" hex string to binary, no more than COUNT bytes */
char *hex2bin(char *dst, const char *str, int count)
{
	/* Parts commented out with // allow parsing
	 * of strings like "xx:x:x:xx:xx:xx:xxxxxx"
	 * (IPv6, ethernet addresses and the like).
	 */
	errno = EINVAL;
	while (*str && count) {
		uint8_t val;
		uint8_t c;

		c = *str++;
		if (isdigit(c))
			val = c - '0';
		else if ((c|0x20) >= 'a' && (c|0x20) <= 'f')
			val = (c|0x20) - ('a' - 10);
		else
			return NULL;
		val <<= 4;
		c = *str;
		if (isdigit(c))
			val |= c - '0';
		else if ((c|0x20) >= 'a' && (c|0x20) <= 'f')
			val |= (c|0x20) - ('a' - 10);
		//else if (c == ':' || c == '\0')
		//	val >>= 4;
		else
			return NULL;

		*dst++ = val;
		//if (c != '\0')
			str++;
		//if (*str == ':')
		//	str++;
		count--;
	}
	errno = (*str ? ERANGE : 0);
	return dst;
}