Branch data Line data Source code
1 : : /*
2 : : *****************************************************************************
3 : : *
4 : : * File: base64.c
5 : : *
6 : : * Purpose: Implementation of the Base64 encode/decode algorithim.
7 : : *
8 : : * This code was derived from the base64.c part of FFmpeg written
9 : : * by Ryan Martell. (rdm4@martellventures.com).
10 : : *
11 : : * Copyright (C) Ryan Martell. (rdm4@martellventures.com)
12 : : *
13 : : * Fwknop is developed primarily by the people listed in the file 'AUTHORS'.
14 : : * Copyright (C) 2009-2014 fwknop developers and contributors. For a full
15 : : * list of contributors, see the file 'CREDITS'.
16 : : *
17 : : * License (GNU General Public License):
18 : : *
19 : : * This library is free software; you can redistribute it and/or
20 : : * modify it under the terms of the GNU General Public License
21 : : * as published by the Free Software Foundation; either version 2
22 : : * of the License, or (at your option) any later version.
23 : : *
24 : : * This program is distributed in the hope that it will be useful,
25 : : * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 : : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 : : * GNU General Public License for more details.
28 : : *
29 : : * You should have received a copy of the GNU General Public License
30 : : * along with this program; if not, write to the Free Software
31 : : * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
32 : : * USA
33 : : *
34 : : *****************************************************************************
35 : : */
36 : : #include "base64.h"
37 : : #include "fko_common.h"
38 : :
39 : : #if !AFL_FUZZING
40 : : static unsigned char map2[] =
41 : : {
42 : : 0x3e, 0xff, 0xff, 0xff, 0x3f, 0x34, 0x35, 0x36,
43 : : 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0xff,
44 : : 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x01,
45 : : 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09,
46 : : 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11,
47 : : 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19,
48 : : 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1a, 0x1b,
49 : : 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23,
50 : : 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b,
51 : : 0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33
52 : : };
53 : : #endif
54 : :
55 : : int
56 : 910 : b64_decode(const char *in, unsigned char *out)
57 : : {
58 : : int i;
59 : 910 : unsigned char *dst = out;
60 : : #if ! AFL_FUZZING
61 : : int v;
62 : : #endif
63 : :
64 : : #if AFL_FUZZING
65 : : /* short circuit base64 decoding in AFL fuzzing mode - just copy
66 : : * data as-is.
67 : : */
68 [ + + ]: 30215 : for (i = 0; in[i]; i++)
69 : 29305 : *dst++ = in[i];
70 : : #else
71 : : v = 0;
72 : : for (i = 0; in[i] && in[i] != '='; i++) {
73 : : unsigned int index= in[i]-43;
74 : :
75 : : if (index>=(sizeof(map2)/sizeof(map2[0])) || map2[index] == 0xff)
76 : : return(-1);
77 : :
78 : : v = (v << 6) + map2[index];
79 : :
80 : : if (i & 3)
81 : : *dst++ = v >> (6 - 2 * (i & 3));
82 : : }
83 : : #endif
84 : :
85 : 910 : *dst = '\0';
86 : :
87 : 910 : return(dst - out);
88 : : }
89 : :
90 : : /*****************************************************************************
91 : : * b64_encode: Stolen from VLC's http.c
92 : : * Simplified by michael
93 : : * fixed edge cases and made it work from data (vs. strings) by ryan.
94 : : *****************************************************************************
95 : : */
96 : : int
97 : 2385 : b64_encode(unsigned char *in, char *out, int in_len)
98 : : {
99 : : static const char b64[] =
100 : : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
101 : 2385 : unsigned i_bits = 0;
102 : 2385 : int i_shift = 0;
103 : 2385 : int bytes_remaining = in_len;
104 : :
105 : 2385 : char *dst = out;
106 : :
107 [ + - ]: 2385 : if (in_len > 0) { /* Special edge case, what should we really do here? */
108 [ + + ]: 120968 : while (bytes_remaining) {
109 : 118583 : i_bits = (i_bits << 8) + *in++;
110 : 118583 : bytes_remaining--;
111 : 158956 : i_shift += 8;
112 : :
113 : : do {
114 : 158956 : *dst++ = b64[(i_bits << 6 >> i_shift) & 0x3f];
115 : 158956 : i_shift -= 6;
116 [ + + ][ + + ]: 161341 : } while (i_shift > 6 || (bytes_remaining == 0 && i_shift > 0));
117 : : }
118 [ + + ]: 4921 : while ((dst - out) & 3)
119 : 2536 : *dst++ = '=';
120 : : }
121 : :
122 : 2385 : *dst = '\0';
123 : :
124 : 2385 : return(dst - out);
125 : : }
126 : :
127 : : /* Strip trailing equals ("=") charcters from a base64-encoded
128 : : * message digest.
129 : : */
130 : : void
131 : 2385 : strip_b64_eq(char *data)
132 : : {
133 : : char *ndx;
134 : :
135 [ + + ]: 2385 : if((ndx = strchr(data, '=')) != NULL)
136 : 2139 : *ndx = '\0';
137 : 2385 : }
138 : :
139 : : /***EOF***/
|