File: baseXX.c

package info (click to toggle)
nessus-libraries 1.0.10-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 9,536 kB
  • ctags: 12,585
  • sloc: ansic: 72,626; asm: 25,921; sh: 19,570; makefile: 1,974; cpp: 560; pascal: 536; yacc: 234; lex: 203; lisp: 186; perl: 76; fortran: 24
file content (457 lines) | stat: -rw-r--r-- 11,866 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
/*
 *          Copyright (c) mjh-EDV Beratung, 1996-1999
 *     mjh-EDV Beratung - 63263 Neu-Isenburg - Rosenstrasse 12
 *          Tel +49 6102 328279 - Fax +49 6102 328278
 *                Email info@mjh.teddy-net.com
 *
 *    Author: Jordan Hrycaj <jordan@mjh.teddy-net.com>
 *
 *   $Id: baseXX.c,v 1.4 2000/08/14 21:18:04 jordan Exp $
 *
 *   This library is free software; you can redistribute it and/or
 *   modify it under the terms of the GNU Library General Public
 *   License as published by the Free Software Foundation; either
 *   version 2 of the License, or (at your option) any later version.
 *
 *   This library is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *   Library General Public License for more details.
 *
 *   You should have received a copy of the GNU Library General Public
 *   License along with this library; if not, write to the Free
 *   Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include "common-stuff.h"

#ifdef HAVE_ASSERT_H
#include <assert.h>
#else
#define assert(x)   ((void*)0)
#endif

#if CHAR_BIT != 8
#error Not supporting this architecture: CHAR_BIT != 8
#endif

/* ------------------------------------------------------------------------- *
 *                      private helpers                                      *
 * ------------------------------------------------------------------------- */

static unsigned
baseXtoBinDgt /* 1 <= exp2 <= 5 */
  (unsigned    n,
   unsigned exp2)
{
  int mask = ((1 << exp2) - 1) ;

  if (n <  '0') return 0;
  if (n <= '9') return (n - '0')      & mask;
  if (n <  'A') return 0;
  if (n <= 'U') return (n - 'A' + 10) & mask;
  if (n <  'a') return 0;
  if (n <= 'u') return (n - 'a' + 10) & mask;

  return mask;
}

static unsigned
base64toBinDgt
  (unsigned n)
{
  if (n < '0') {
    if (n == '+') return 62;
    if (n == '/') return 63;
    return 0;
  }

  if (n <= '9') return n - '0' + 52 ;
  if (n <  'A') return 0;
  if (n <= 'Z') return n - 'A' ;
  if (n <  'a') return 0;
  if (n <= 'z') return n - 'a' + 26 ;

  return 63 ;
}


#define _bin2base64(n) _base64 [(n) & 63] 
static const char _base64 [] = 
/* This mapping base64 string has been copied from the squid implementation.
   Note that the  crypt passwd imprementation uses as the string 
   "./0..9A..Za..z" */
   "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" ;

#define _bin2baseX(n,b) _xhex [(n) & ((1<<(b))-1) ]
static const char _xhex [] = "0123456789abcdefghijklmnopqrstuv" ;

/* ------------------------------------------------------------------------- *
 *                    private base 64 conversion prototype                   *
 * ------------------------------------------------------------------------- */

static char *
_base64toBin
  (const char   *s,
   unsigned    *TN,
   unsigned adjust)
{
  int sn, tn, m = 0 ;
  unsigned accu = 0;
  const char *src ;
  char *trg, *t;

  /* return dynamically allocated empty string */
  if (s == 0 || (sn = strlen (s)) == 0)
    return XMALLOC (1);

  /* allocate target string, position at the end */
  tn  = (3*sn + 3) / 4 ;

  /* 
   * Assuming, that we re-convert from a base64 string to what it
   * was we may have added some additional MSBits.  In particular,
   * when an octet string is converted to base64 characters, and back
   * to an octet string, we get the number of bytes as
   *
   *          {octets} -> {base64 chars} -> {octets} 
   *         -----------------------------------------
   *         0 (mod 3) ->    0 (mod 4)   ->  0 (mod 3) -- nothing to do
   *         1 (mod 3) ->    2 (mod 4)   ->  2 (mod 3)
   *         2 (mod 3) ->    3 (mod 4)   ->  0 (mod 3)
   *
   * which implies, that there are 2 out of three cases when we gain 
   * an extra zero MSByte while converting back.
   */

  /* NOTE: (mod 4) means: look at the least two bits */
  if (adjust && 
      (
       /* leading 4 (out of 6) bits of s[] unset && sn == 2 (mod 4) */
       (*s <= _bin2base64 (0x3) && (sn & 3) == 2) ||

       /* leading 2 (out of 6) bits of s[] unset && sn == 3 (mod 4) */
       (*s <= _bin2base64 (0xf) && (sn & 3) == 3))
      )
    /* reduce target string length */
    tn -- ;

  /* allocate target string space */
  t   = XMALLOC (tn + 1);

  /* start at the right hand side, pad on the left */
  trg = t + tn;
  src = s + sn;

  /* set string length */
  if (TN != 0)
    *TN = tn ;

  do
    {
      /* push rightmost nibbles onto top of accu */
      while (m < 8 && s < src) {
	-- src ;
	accu  |= (base64toBinDgt (*src) << m) ;
	m     += 6 ;
      }
      if (-- trg < t)
	break ;
      /* place accu contents into target string */
      * trg = (unsigned char) (accu & 0xff);
      accu >>= 8 ;
      m     -= 8 ;
    }
  /* only in the last case, when s == src can m < 0 happen */
  while (s <= src && m >= 0);

  return t ;
}


static char *
_baseXtoBase64 /* X = 2, 4, 8, 16, 32 */
  (const char     *s,
   unsigned base_exp,
   unsigned   adjust)
{
  int sn, tn, m = 0 ;
  unsigned accu = 0;
  const char *src ;
  char *trg, *t;

  /* return dynamically allocated empty string */
  if (s == 0 || (sn = strlen (s)) == 0 || 
      base_exp == 0 || base_exp > 5)
    return XMALLOC (1);

  /* allocate target string, position at the end, note that the approach
     ti determine the length of the underlying string used here is different
     from what pgp/mime does, where the '=' tag is used to  indicate bit 
     padding */ 

  tn  = (base_exp * sn + 5) / 6 ;
  /* 
   * Assuming, that we re-convert from a baseX string to what it
   * was base64, we may have added some additional MSBits.  In 
   * particular, when a base64 bit string is converted to baseX
   * characters, and back, we get the number of bytes as
   *
   *      {base64 chars} -> {baseX chars} -> {base64 chars} 
   *      -------------------------------------------------
   *
   * X=32:  0 (mod 5)    ->   0 (mod 6)   ->  0 (mod 5) -- nothing to do
   *        1 (mod 5)    ->   2 (mod 6)   ->  2 (mod 5)
   *        2 (mod 5)    ->   3 (mod 6)   ->  3 (mod 5)
   *        3 (mod 5)    ->   4 (mod 6)   ->  4 (mod 5)
   *        4 (mod 5)    ->   5 (mod 6)   ->  5 (mod 5)
   *
   * X=16:  0 (mod 2)    ->   0 (mod 3)   ->  0 (mod 2) -- nothing to do
   *        1 (mod 2)    ->   2 (mod 3)   ->  0 (mod 2)
   *
   * X=8:   0 (mod 1)    ->   0 (mod 2)   ->  0 (mod 1) -- nothing to do
   * X=4:   0 (mod 1)    ->   0 (mod 3)   ->  0 (mod 1) -- nothing to do
   * X=2:   0 (mod 1)    ->   0 (mod 6)   ->  0 (mod 1) -- nothing to do
   *
   * which implies, that there are 2 out of three cases when we gain 
   * an extra zero MSByte when converting back.
   */

  if (adjust)

    /* we use a jump table here as it is easier for debugging than a
       single nested AND/OR expression */
      
    switch (base_exp) {

    case 5:
      
      switch (sn % 6) {
      case 2: /* leading 4 (out of 5) bit(s) of s[] unset && sn == 2 (mod 6) */
	if (*s <= _bin2baseX (0x1, 5))
	  goto chop_target_string_length ;
	break;

      case 3: /* leading 3 (out of 5) bit(s) of s[] unset && sn == 3 (mod 6) */
	if (*s <= _bin2baseX (0x3, 5))
	  goto chop_target_string_length ;
	break;
	
      case 4: /* leading 2 (out of 5) bit(s) of s[] unset && sn == 4 (mod 6) */
	if (*s <= _bin2baseX (0x7, 5))
	  goto chop_target_string_length ;
	break;
  
      case 5: /* leading 1 (out of 5) bit(s) of s[] unset && sn == 5 (mod 6) */
	if (*s <= _bin2baseX (0xf, 5))
	  goto chop_target_string_length ;
      }
      break;
      
    case 4: 
      
      switch (sn % 3) {
      case 2: /* leading 2 (out of 4) bit(s) of s[] unset && sn == 2 (mod 3) */
	if (*s <= _bin2baseX (0x3, 4)) 
	  goto chop_target_string_length ;
      }
      break;

      /*@NOTREACHED@*/ 

    chop_target_string_length: /* reduce target string length */
      tn -- ;

    } /* end switch */
  /* end if adjust */

  /* allocate target string space */
  t   = XMALLOC (tn + 1);

  /* start at the right hand side, pad on the left */
  trg = t + tn;
  src = s + sn;

  do
    {
      /* push rightmost nibbles onto top of accu */
      while (m < 6 && s < src) {	/* 2^6 == 64 */
	-- src ;
	accu  |= (baseXtoBinDgt (*src, base_exp) << m) ;
	m     += base_exp ;
      }
      if (-- trg < t)
	break ;
      /* place accu contents into target string */
      * trg = _bin2base64 (accu) ;
      accu >>= 6 ;
      m     -= 6 ;
    }
  /* only in the last case, when s == src can m < 0 happen */
  while (s <= src && m >= 0);

  assert (accu == 0) ;
  return t ;
}

/* ------------------------------------------------------------------------- *
 *                  public base 64 conversion functions                      *
 * ------------------------------------------------------------------------- */

char *
baseXtoBase64 /* X = 2, 4, 8, 16, 32 */
  (const char     *s,
   unsigned base_exp)
{
  return _baseXtoBase64 (s, base_exp, 1);
}


char *
baseXtoBase64raw /* X = 2, 4, 8, 16, 32 */
  (const char     *s,
   unsigned base_exp)
{
  return _baseXtoBase64 (s, base_exp, 0);
}


char *
base64toBaseX
  (const char     *s,
   unsigned base_exp)
{
  int sn, tn, m = 0 ;
  unsigned accu = 0;
  const char *src ;
  char *trg, *t;

  /* return dynamically allocated empty string */
  if (s == 0 || (sn = strlen (s)) == 0 ||
      base_exp == 0 || base_exp > 5)
    return XMALLOC (1);

  /* allocate target string, position at the end */
  tn  = (6 * sn + base_exp - 1) / base_exp ;
  t   = XMALLOC (tn + 1);

  /* start at the right hand side, pad on the left */
  trg = t + tn ;
  src = s + sn ;

  do
    {
      /* push rightmost src bits onto accu from the left */
	-- src ;
	accu  |= (base64toBinDgt (*src) << m);
	m     += 6 ;			/* 2^6 == 64 */
	
	/* place accu contents into target string */
	while (m >= (int)base_exp && t < trg) {
	  * -- trg = _bin2baseX (accu, base_exp) ;
	  accu >>= base_exp ;
	  m     -= base_exp ;
	}
    }
  while (s < src);
  
  /* store left overs */
  if (t < trg)
    * -- trg = _bin2baseX (accu, base_exp) ;
  
  assert (t == trg);
  return t ;
}


/* ------------------------------------------------------------------------- *
 *                   public base 64 conversion functions                     *
 * ------------------------------------------------------------------------- */

char *
bin2base64
  (const char *s,
   unsigned   sn)
{
  int tn, m = 0 ;
  unsigned accu = 0;
  const char *src ;
  char *trg, *t;

  /* return dynamically allocated empty string */
  if (s == 0 || sn == 0)
    return XMALLOC (1);

  /* allocate target string, position at the end */
  tn  = (4*sn + 2) / 3 ;
  t   = XMALLOC (tn + 1);

  /* start at the right hand side, pad on the left */
  trg = t + tn;
  src = s + sn;

  do
    {
      /* push rightmost src bits onto accu from the left */
	-- src ;
	accu  |= (((unsigned char)*src & 0xff) << m) ;
	m     += 8 ;
	
	/* place accu contents into target string */
	while (m >= 6 && t < trg) {
	  * -- trg = _bin2base64 (accu) ;
	  accu >>= 6 ;
	  m     -= 6 ;
	}
    }
  while (s < src);
  
  /* store left overs */
  if (t < trg)
    * -- trg = _bin2base64 (accu) ;
  
  assert (t == trg);
  return t ;
}


char *
bin2base32 
  (const char *s,
   unsigned   sn)
{
  /* FIXME: write generic conversion */
  char *b64 = bin2base64 (s, sn);
  char *  t = base64toBaseX (b64, 5);
  xfree (b64);
  return t;
}

char *
base64toBin
  (const char *s,
   unsigned  *TN)
{
  return _base64toBin (s, TN, 1);
}


char *
base32toBin
  (const char *s,
   unsigned  *TN)
{
  /* FIXME: write generic conversion */
  char *b64 = _baseXtoBase64 (s, 5, 1);
  char *  t = _base64toBin (b64, TN, 1);
  xfree (b64);
  return t ;
}

char *
base64toBinRaw 
  (const char *s,
   unsigned  *TN)
{
  return _base64toBin (s, TN, 0);
}