2 utils.c -- gathering of some stupid small functions
3 Copyright (C) 1999-2005 Ivo Timmermans
4 2000-2013 Guus Sliepen <guus@tinc-vpn.org>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #include "../src/logger.h"
26 static const char hexadecimals[] = "0123456789ABCDEF";
27 static const char base64_original[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
28 static const char base64_urlsafe[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_";
29 static const char base64_decode[256] = {
30 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
31 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
32 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, 62, -1, 63,
33 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -1, -1, -1,
34 -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
35 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, 63,
36 -1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
37 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1,
38 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
39 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
40 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
41 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
42 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
43 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
44 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
45 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
48 static int charhex2bin(char c) {
52 return toupper(c) - 'A' + 10;
55 int hex2bin(const char *src, void *vdst, int length) {
58 for(i = 0; i < length && isxdigit(src[i * 2]) && isxdigit(src[i * 2 + 1]); i++)
59 dst[i] = charhex2bin(src[i * 2]) * 16 + charhex2bin(src[i * 2 + 1]);
63 int bin2hex(const void *vsrc, char *dst, int length) {
64 const char *src = vsrc;
65 for(int i = length - 1; i >= 0; i--) {
66 dst[i * 2 + 1] = hexadecimals[(unsigned char) src[i] & 15];
67 dst[i * 2] = hexadecimals[(unsigned char) src[i] >> 4];
73 int b64decode(const char *src, void *dst, int length) {
76 unsigned char *udst = (unsigned char *)dst;
78 for(i = 0; i < length && src[i]; i++) {
79 triplet |= base64_decode[src[i] & 0xff] << (6 * (i & 3));
81 if(triplet & 0xff000000U)
83 udst[0] = triplet & 0xff; triplet >>= 8;
84 udst[1] = triplet & 0xff; triplet >>= 8;
90 if(triplet & 0xff000000U)
93 udst[0] = triplet & 0xff; triplet >>= 8;
94 udst[1] = triplet & 0xff;
96 } else if((i & 3) == 2) {
97 udst[0] = triplet & 0xff;
104 static int b64encode_internal(const void *src, char *dst, int length, const char *alphabet) {
106 const unsigned char *usrc = (unsigned char *)src;
107 int si = length / 3 * 3;
108 int di = length / 3 * 4;
112 triplet = usrc[si] | usrc[si + 1] << 8;
113 dst[di] = alphabet[triplet & 63]; triplet >>= 6;
114 dst[di + 1] = alphabet[triplet & 63]; triplet >>= 6;
115 dst[di + 2] = alphabet[triplet];
121 dst[di] = alphabet[triplet & 63]; triplet >>= 6;
122 dst[di + 1] = alphabet[triplet];
135 triplet = usrc[si] | usrc[si + 1] << 8 | usrc[si + 2] << 16;
136 dst[di] = alphabet[triplet & 63]; triplet >>= 6;
137 dst[di + 1] = alphabet[triplet & 63]; triplet >>= 6;
138 dst[di + 2] = alphabet[triplet & 63]; triplet >>= 6;
139 dst[di + 3] = alphabet[triplet];
145 int b64encode(const void *src, char *dst, int length) {
146 return b64encode_internal(src, dst, length, base64_original);
149 int b64encode_urlsafe(const void *src, char *dst, int length) {
150 return b64encode_internal(src, dst, length, base64_urlsafe);
153 #if defined(HAVE_MINGW) || defined(HAVE_CYGWIN)
155 #include <w32api/windows.h>
158 const char *winerror(int err) {
159 static char buf[1024], *ptr;
161 ptr = buf + sprintf(buf, "(%d) ", err);
163 if (!FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
164 NULL, err, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), ptr, sizeof(buf) - (ptr - buf), NULL)) {
165 strncpy(buf, "(unable to format errormessage)", sizeof(buf));
168 if((ptr = strchr(buf, '\r')))
175 unsigned int bitfield_to_int(const void *bitfield, size_t size) {
176 unsigned int value = 0;
177 if(size > sizeof value)
179 memcpy(&value, bitfield, size);