123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- #include "libbb.h"
- const char bb_uuenc_tbl_base64[65 + 1] ALIGN1 = {
- 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H',
- 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P',
- 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
- 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f',
- 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n',
- 'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
- 'w', 'x', 'y', 'z', '0', '1', '2', '3',
- '4', '5', '6', '7', '8', '9', '+', '/',
- '=' ,
- '\0'
- };
- const char bb_uuenc_tbl_std[65] ALIGN1 = {
- '`', '!', '"', '#', '$', '%', '&', '\'',
- '(', ')', '*', '+', ',', '-', '.', '/',
- '0', '1', '2', '3', '4', '5', '6', '7',
- '8', '9', ':', ';', '<', '=', '>', '?',
- '@', 'A', 'B', 'C', 'D', 'E', 'F', 'G',
- 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
- 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
- 'X', 'Y', 'Z', '[', '\\', ']', '^', '_',
- '`'
- };
- void FAST_FUNC bb_uuencode(char *p, const void *src, int length, const char *tbl)
- {
- const unsigned char *s = src;
-
- while (length > 0) {
- unsigned s1, s2;
-
- s1 = s2 = 0;
- length -= 3;
- if (length >= -1) {
- s1 = s[1];
- if (length >= 0)
- s2 = s[2];
- }
- *p++ = tbl[s[0] >> 2];
- *p++ = tbl[((s[0] & 3) << 4) + (s1 >> 4)];
- *p++ = tbl[((s1 & 0xf) << 2) + (s2 >> 6)];
- *p++ = tbl[s2 & 0x3f];
- s += 3;
- }
-
- *p = '\0';
-
- while (length) {
- *--p = tbl[64];
- length++;
- }
- }
- const char* FAST_FUNC decode_base64(char **pp_dst, const char *src)
- {
- char *dst = *pp_dst;
- const char *src_tail;
- while (1) {
- unsigned char six_bit[4];
- int count = 0;
-
- src_tail = src;
- while (count < 4) {
- char *table_ptr;
- int ch;
-
- do {
- ch = *src;
- if (ch == '\0') {
- if (count == 0) {
-
- src_tail = src;
- }
- goto ret;
- }
- src++;
- table_ptr = strchr(bb_uuenc_tbl_base64, ch);
- } while (!table_ptr);
-
- ch = table_ptr - bb_uuenc_tbl_base64;
-
- if (ch == 64)
- break;
- six_bit[count] = ch;
- count++;
- }
-
- if (count > 1)
- *dst++ = six_bit[0] << 2 | six_bit[1] >> 4;
- if (count > 2)
- *dst++ = six_bit[1] << 4 | six_bit[2] >> 2;
- if (count > 3)
- *dst++ = six_bit[2] << 6 | six_bit[3];
-
- }
- ret:
- *pp_dst = dst;
- return src_tail;
- }
- void FAST_FUNC read_base64(FILE *src_stream, FILE *dst_stream, int flags)
- {
- #define exit_char ((int)(signed char)flags)
- #define uu_style_end (flags & BASE64_FLAG_UU_STOP)
-
- enum { BUFFER_SIZE = 64 };
- char in_buf[BUFFER_SIZE + 2];
- char out_buf[BUFFER_SIZE / 4 * 3 + 2];
- char *out_tail;
- const char *in_tail;
- int term_seen = 0;
- int in_count = 0;
- while (1) {
- while (in_count < BUFFER_SIZE) {
- int ch = fgetc(src_stream);
- if (ch == exit_char) {
- if (in_count == 0)
- return;
- term_seen = 1;
- break;
- }
- if (ch == EOF) {
- term_seen = 1;
- break;
- }
-
- if (ch <= ' ')
- break;
- in_buf[in_count++] = ch;
- }
- in_buf[in_count] = '\0';
-
- if (uu_style_end && strcmp(in_buf, "====") == 0)
- return;
- out_tail = out_buf;
- in_tail = decode_base64(&out_tail, in_buf);
- fwrite(out_buf, (out_tail - out_buf), 1, dst_stream);
- if (term_seen) {
-
- if (*in_tail == '\0')
- return;
-
- bb_error_msg_and_die("truncated base64 input");
- }
-
- in_count = strlen(in_tail);
- memmove(in_buf, in_tail, in_count);
- }
- }
|