2 * Copyright (c) 2005-2008 Daniel Braniss <danny@cs.huji.ac.il>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 | $Id: misc.c,v 2.1 2006/11/12 08:06:51 danny Exp $
32 #include <sys/cdefs.h>
34 #include <sys/param.h>
35 #include <sys/types.h>
36 #include <sys/socket.h>
37 #include <sys/sysctl.h>
39 #include <netinet/in.h>
40 #include <netinet/tcp.h>
41 #include <arpa/inet.h>
42 #if __FreeBSD_version < 500000
65 static char base64
[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
66 "abcdefghijklmnopqrstuvwxyz"
69 static __inline
unsigned char
70 c64tobin(unsigned char c64
)
73 for(i
= 0; i
< 64; i
++)
79 | according to rfc3720, the binary string
80 | cannot be larger than 1024 - but i can't find it :-) XXX
84 str2bin(char *str
, char **rsp
)
86 char *src
, *dst
, *tmp
;
91 if(strncasecmp("0x", src
, 2) == 0) {
95 if((tmp
= malloc((len
+1)/2)) == NULL
) {
96 // XXX: print some error?
101 *dst
++ = c2b(*src
++);
103 *dst
= c2b(*src
++) << 4;
104 *dst
++ |= c2b(*src
++);
108 if(strncasecmp("0b", src
, 2) == 0) {
113 len
= strlen(src
) / 4 * 3;
114 if((tmp
= malloc(len
)) == NULL
) {
115 // XXX: print some error?
120 while(*src
&& ((b6
= c64tobin(*src
++)) != 64)) {
143 | assume it to be an ascii string, so just copy it
146 if((tmp
= malloc(len
)) == NULL
)
159 bin2str(char *encoding
, unsigned char *md
, int blen
)
165 if(strncasecmp(encoding
, "0x", 2) == 0) {
169 dst
= malloc(len
+ 3);
170 strcpy(dst
, encoding
);
173 sprintf(ofmt
, "%%02%c", encoding
[1]);
175 sprintf(ds
, ofmt
, *cp
++);
181 if(strncasecmp(encoding
, "0b", 2) == 0) {
184 len
= (blen
+ 2) * 4 / 3;
185 dst
= malloc(len
+ 3);
186 strcpy(dst
, encoding
);
189 b6
= 0; // to keep compiler happy.
190 for(i
= 0; i
< blen
; i
++) {
193 *ds
++ = base64
[*cp
>> 2];
194 b6
= (*cp
& 0x3) << 4;
199 b6
= (*cp
& 0xf) << 2;
204 *ds
++ = base64
[*cp
& 0x3f];