OpenVPN
base64.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 1995-2001 Kungliga Tekniska Högskolan
3  * (Royal Institute of Technology, Stockholm, Sweden).
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright
11  * notice, this list of conditions and the following disclaimer.
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright
14  * notice, this list of conditions and the following disclaimer in the
15  * documentation and/or other materials provided with the distribution.
16  *
17  * 3. Neither the name of the Institute nor the names of its contributors
18  * may be used to endorse or promote products derived from this software
19  * without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33 
34 #ifdef HAVE_CONFIG_H
35 #include "config.h"
36 #endif
37 
38 #include "syshead.h"
39 
40 #include "base64.h"
41 
42 #include "memdbg.h"
43 
44 static char base64_chars[] =
45  "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
46 /*
47  * base64 encode input data of length size to malloced
48  * buffer which is returned as *str. Returns string
49  * length of *str.
50  */
51 int
52 openvpn_base64_encode(const void *data, int size, char **str)
53 {
54  char *s, *p;
55  int i;
56  int c;
57  const unsigned char *q;
58 
59  if (size < 0)
60  {
61  return -1;
62  }
63  p = s = (char *) malloc(size * 4 / 3 + 4);
64  if (p == NULL)
65  {
66  return -1;
67  }
68  q = (const unsigned char *) data;
69  i = 0;
70  for (i = 0; i < size; )
71  {
72  c = q[i++];
73  c *= 256;
74  if (i < size)
75  {
76  c += q[i];
77  }
78  i++;
79  c *= 256;
80  if (i < size)
81  {
82  c += q[i];
83  }
84  i++;
85  p[0] = base64_chars[(c & 0x00fc0000) >> 18];
86  p[1] = base64_chars[(c & 0x0003f000) >> 12];
87  p[2] = base64_chars[(c & 0x00000fc0) >> 6];
88  p[3] = base64_chars[(c & 0x0000003f) >> 0];
89  if (i > size)
90  {
91  p[3] = '=';
92  }
93  if (i > size + 1)
94  {
95  p[2] = '=';
96  }
97  p += 4;
98  }
99  *p = 0;
100  *str = s;
101  return strlen(s);
102 }
103 
104 static int
105 pos(char c)
106 {
107  char *p;
108  for (p = base64_chars; *p; p++)
109  {
110  if (*p == c)
111  {
112  return p - base64_chars;
113  }
114  }
115  return -1;
116 }
117 
118 #define DECODE_ERROR 0xffffffff
119 
120 static unsigned int
121 token_decode(const char *token)
122 {
123  int i;
124  unsigned int val = 0;
125  int marker = 0;
126  if (!token[0] || !token[1] || !token[2] || !token[3])
127  {
128  return DECODE_ERROR;
129  }
130  for (i = 0; i < 4; i++)
131  {
132  val *= 64;
133  if (token[i] == '=')
134  {
135  marker++;
136  }
137  else if (marker > 0)
138  {
139  return DECODE_ERROR;
140  }
141  else
142  {
143  val += pos(token[i]);
144  }
145  }
146  if (marker > 2)
147  {
148  return DECODE_ERROR;
149  }
150  return (marker << 24) | val;
151 }
152 /*
153  * Decode base64 str, outputting data to buffer
154  * at data of length size. Return length of
155  * decoded data written or -1 on error or overflow.
156  */
157 int
158 openvpn_base64_decode(const char *str, void *data, int size)
159 {
160  const char *p;
161  unsigned char *q;
162  unsigned char *e = NULL;
163 
164  q = data;
165  if (size >= 0)
166  {
167  e = q + size;
168  }
169  for (p = str; *p && (*p == '=' || strchr(base64_chars, *p)); p += 4)
170  {
171  unsigned int val = token_decode(p);
172  unsigned int marker = (val >> 24) & 0xff;
173  if (val == DECODE_ERROR)
174  {
175  return -1;
176  }
177  if (e && q >= e)
178  {
179  return -1;
180  }
181  *q++ = (val >> 16) & 0xff;
182  if (marker < 2)
183  {
184  if (e && q >= e)
185  {
186  return -1;
187  }
188  *q++ = (val >> 8) & 0xff;
189  }
190  if (marker < 1)
191  {
192  if (e && q >= e)
193  {
194  return -1;
195  }
196  *q++ = val & 0xff;
197  }
198  }
199  return q - (unsigned char *) data;
200 }
token_decode
static unsigned int token_decode(const char *token)
Definition: base64.c:121
openvpn_base64_decode
int openvpn_base64_decode(const char *str, void *data, int size)
Definition: base64.c:158
DECODE_ERROR
#define DECODE_ERROR
Definition: base64.c:118
openvpn_base64_encode
int openvpn_base64_encode(const void *data, int size, char **str)
Definition: base64.c:52
pos
static int pos(char c)
Definition: base64.c:105
base64_chars
static char base64_chars[]
Definition: base64.c:44
base64.h
syshead.h
config.h
memdbg.h