2 utils.c -- gathering of some stupid small functions
3 Copyright (C) 1999-2005 Ivo Timmermans
4 2000-2009 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 base64imals[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
29 static int charhex2bin(char c) {
33 return toupper(c) - 'A' + 10;
36 static int charb64decode(char c) {
49 int hex2bin(const char *src, char *dst, int length) {
51 for(i = 0; i < length && src[i * 2] && src[i * 2 + 1]; i++)
52 dst[i] = charhex2bin(src[i * 2]) * 16 + charhex2bin(src[i * 2 + 1]);
56 int bin2hex(const char *src, char *dst, int length) {
58 for(i = length - 1; i >= 0; i--) {
59 dst[i * 2 + 1] = hexadecimals[(unsigned char) src[i] & 15];
60 dst[i * 2] = hexadecimals[(unsigned char) src[i] >> 4];
66 int b64decode(const char *src, char *dst, int length) {
69 unsigned char *udst = (unsigned char *)dst;
71 for(i = 0; i < length / 3 * 4 && src[i]; i++) {
72 triplet |= charb64decode(src[i]) << (6 * (i & 3));
74 udst[0] = triplet & 0xff; triplet >>= 8;
75 udst[1] = triplet & 0xff; triplet >>= 8;
82 udst[0] = triplet & 0xff; triplet >>= 8;
83 udst[1] = triplet & 0xff;
85 } else if((i & 3) == 2) {
86 udst[0] = triplet & 0xff;
93 int b64encode(const char *src, char *dst, int length) {
95 const unsigned char *usrc = (unsigned char *)src;
96 int si = length / 3 * 3;
97 int di = length / 3 * 4;
101 triplet = usrc[si] | usrc[si + 1] << 8;
102 dst[di] = base64imals[triplet & 63]; triplet >>= 6;
103 dst[di + 1] = base64imals[triplet & 63]; triplet >>= 6;
104 dst[di + 2] = base64imals[triplet];
110 dst[di] = base64imals[triplet & 63]; triplet >>= 6;
111 dst[di + 1] = base64imals[triplet];
124 triplet = usrc[si] | usrc[si + 1] << 8 | usrc[si + 2] << 16;
125 dst[di] = base64imals[triplet & 63]; triplet >>= 6;
126 dst[di + 1] = base64imals[triplet & 63]; triplet >>= 6;
127 dst[di + 2] = base64imals[triplet & 63]; triplet >>= 6;
128 dst[di + 3] = base64imals[triplet];
134 #if defined(HAVE_MINGW) || defined(HAVE_CYGWIN)
136 #include <w32api/windows.h>
139 const char *winerror(int err) {
140 static char buf[1024], *newline;
142 if (!FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
143 NULL, err, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), buf, sizeof(buf), NULL)) {
144 strncpy(buf, "(unable to format errormessage)", sizeof(buf));
147 if((newline = strchr(buf, '\r')))
154 unsigned int bitfield_to_int(const void *bitfield, size_t size) {
155 unsigned int value = 0;
156 if(size > sizeof value)
158 memcpy(&value, bitfield, size);