Glenn L McGrath | 089deca | 2001-07-28 21:06:13 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Copyright (C) 2000 by Glenn McGrath |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 4 | * |
Glenn L McGrath | 089deca | 2001-07-28 21:06:13 +0000 | [diff] [blame] | 5 | * based on the function base64_encode from http.c in wget v1.6 |
| 6 | * Copyright (C) 1995, 1996, 1997, 1998, 2000 Free Software Foundation, Inc. |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 7 | * |
Glenn L McGrath | 089deca | 2001-07-28 21:06:13 +0000 | [diff] [blame] | 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 12 | * |
Glenn L McGrath | 089deca | 2001-07-28 21:06:13 +0000 | [diff] [blame] | 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU Library General Public License for more details. |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 17 | * |
Glenn L McGrath | 089deca | 2001-07-28 21:06:13 +0000 | [diff] [blame] | 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 21 | */ |
Eric Andersen | 999bf72 | 2000-07-09 06:59:58 +0000 | [diff] [blame] | 22 | #include <getopt.h> |
Glenn L McGrath | 089deca | 2001-07-28 21:06:13 +0000 | [diff] [blame] | 23 | #include <stdio.h> |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 24 | #include <stdlib.h> |
Glenn L McGrath | 089deca | 2001-07-28 21:06:13 +0000 | [diff] [blame] | 25 | #include <sys/types.h> |
| 26 | #include <sys/stat.h> |
| 27 | #include <unistd.h> |
Eric Andersen | cbe31da | 2001-02-20 06:14:08 +0000 | [diff] [blame] | 28 | #include "busybox.h" |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 29 | |
Glenn L McGrath | 089deca | 2001-07-28 21:06:13 +0000 | [diff] [blame] | 30 | /* Conversion table. for base 64 */ |
| 31 | static char tbl_base64[64] = { |
| 32 | 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', |
| 33 | 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', |
| 34 | 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', |
| 35 | 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', |
| 36 | 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', |
| 37 | 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', |
| 38 | 'w', 'x', 'y', 'z', '0', '1', '2', '3', |
| 39 | '4', '5', '6', '7', '8', '9', '+', '/' |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 40 | }; |
| 41 | |
Glenn L McGrath | 089deca | 2001-07-28 21:06:13 +0000 | [diff] [blame] | 42 | static char tbl_std[64] = { |
| 43 | '`', '!', '"', '#', '$', '%', '&', '\'', |
| 44 | '(', ')', '*', '+', ',', '-', '.', '/', |
| 45 | '0', '1', '2', '3', '4', '5', '6', '7', |
| 46 | '8', '9', ':', ';', '<', '=', '>', '?', |
| 47 | '@', 'A', 'B', 'C', 'D', 'E', 'F', 'G', |
| 48 | 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', |
| 49 | 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', |
| 50 | 'X', 'Y', 'Z', '[', '\\', ']', '^', '_' |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 51 | }; |
| 52 | |
Glenn L McGrath | 089deca | 2001-07-28 21:06:13 +0000 | [diff] [blame] | 53 | /* |
| 54 | * Encode the string S of length LENGTH to base64 format and place it |
| 55 | * to STORE. STORE will be 0-terminated, and must point to a writable |
| 56 | * buffer of at least 1+BASE64_LENGTH(length) bytes. |
| 57 | * where BASE64_LENGTH(len) = (4 * ((LENGTH + 2) / 3)) |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 58 | */ |
Glenn L McGrath | eba2605 | 2001-07-29 05:47:33 +0000 | [diff] [blame^] | 59 | static void uuencode (const char *s, const char *store, const int length, const char *tbl) |
Glenn L McGrath | 089deca | 2001-07-28 21:06:13 +0000 | [diff] [blame] | 60 | { |
| 61 | int i; |
| 62 | unsigned char *p = (unsigned char *)store; |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 63 | |
Glenn L McGrath | 089deca | 2001-07-28 21:06:13 +0000 | [diff] [blame] | 64 | /* Transform the 3x8 bits to 4x6 bits, as required by base64. */ |
| 65 | for (i = 0; i < length; i += 3) { |
| 66 | *p++ = tbl[s[0] >> 2]; |
| 67 | *p++ = tbl[((s[0] & 3) << 4) + (s[1] >> 4)]; |
| 68 | *p++ = tbl[((s[1] & 0xf) << 2) + (s[2] >> 6)]; |
| 69 | *p++ = tbl[s[2] & 0x3f]; |
| 70 | s += 3; |
| 71 | } |
| 72 | /* Pad the result if necessary... */ |
| 73 | if (i == length + 1) { |
| 74 | *(p - 1) = '='; |
| 75 | } |
| 76 | else if (i == length + 2) { |
| 77 | *(p - 1) = *(p - 2) = '='; |
| 78 | } |
| 79 | /* ...and zero-terminate it. */ |
| 80 | *p = '\0'; |
| 81 | } |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 82 | |
Glenn L McGrath | 089deca | 2001-07-28 21:06:13 +0000 | [diff] [blame] | 83 | int uuencode_main(int argc, char **argv) |
| 84 | { |
Glenn L McGrath | eba2605 | 2001-07-29 05:47:33 +0000 | [diff] [blame^] | 85 | const int src_buf_size = 60; // This *MUST* be a multiple of 3 |
Glenn L McGrath | 089deca | 2001-07-28 21:06:13 +0000 | [diff] [blame] | 86 | const int dst_buf_size = 4 * ((src_buf_size + 2) / 3); |
| 87 | RESERVE_BB_BUFFER(src_buf, src_buf_size + 1); |
| 88 | RESERVE_BB_BUFFER(dst_buf, dst_buf_size + 1); |
| 89 | struct stat stat_buf; |
| 90 | FILE *src_stream = stdin; |
| 91 | char *tbl = tbl_std; |
| 92 | size_t size; |
| 93 | mode_t mode; |
| 94 | int opt; |
| 95 | int column = 0; |
Glenn L McGrath | eba2605 | 2001-07-29 05:47:33 +0000 | [diff] [blame^] | 96 | int write_size = 0; |
Glenn L McGrath | 089deca | 2001-07-28 21:06:13 +0000 | [diff] [blame] | 97 | int remaining; |
| 98 | int buffer_offset = 0; |
| 99 | |
| 100 | while ((opt = getopt(argc, argv, "m")) != -1) { |
| 101 | switch (opt) { |
| 102 | case 'm': |
| 103 | tbl = tbl_base64; |
| 104 | break; |
| 105 | default: |
| 106 | show_usage(); |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | switch (argc - optind) { |
| 111 | case 2: |
| 112 | src_stream = xfopen(argv[optind], "r"); |
| 113 | stat(argv[optind], &stat_buf); |
| 114 | mode = stat_buf.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO); |
| 115 | if (src_stream == stdout) { |
| 116 | printf("NULL\n"); |
| 117 | } |
| 118 | break; |
| 119 | case 1: |
| 120 | mode = umask(0666); |
| 121 | break; |
| 122 | default: |
| 123 | show_usage(); |
| 124 | } |
| 125 | |
| 126 | printf("begin%s %o %s", tbl == tbl_std ? "" : "-base64", mode, argv[argc - 1]); |
| 127 | |
| 128 | while ((size = fread(src_buf, 1, src_buf_size, src_stream)) > 0) { |
| 129 | /* Encode the buffer we just read in */ |
Glenn L McGrath | eba2605 | 2001-07-29 05:47:33 +0000 | [diff] [blame^] | 130 | uuencode(src_buf, dst_buf, size, tbl); |
Glenn L McGrath | 089deca | 2001-07-28 21:06:13 +0000 | [diff] [blame] | 131 | |
| 132 | /* Write the buffer to stdout, wrapping at 60 chars. |
| 133 | * This looks overly complex, but it gets tricky as |
| 134 | * the line has to continue to wrap correctly if we |
| 135 | * have to refill the buffer |
| 136 | * |
| 137 | * Improvments most welcome |
| 138 | */ |
| 139 | |
| 140 | /* Initialise values for the new buffer */ |
| 141 | remaining = 4 * ((size + 2) / 3); |
| 142 | buffer_offset = 0; |
Glenn L McGrath | 089deca | 2001-07-28 21:06:13 +0000 | [diff] [blame] | 143 | |
| 144 | /* Write the buffer to stdout, wrapping at 60 chars |
| 145 | * starting from the column the last buffer ran out |
| 146 | */ |
| 147 | do { |
Glenn L McGrath | eba2605 | 2001-07-29 05:47:33 +0000 | [diff] [blame^] | 148 | if (remaining > (60 - column)) { |
| 149 | write_size = 60 - column; |
| 150 | } |
| 151 | else if (remaining < 60) { |
| 152 | write_size = remaining; |
| 153 | } else { |
| 154 | write_size = 60; |
| 155 | } |
| 156 | |
Glenn L McGrath | 089deca | 2001-07-28 21:06:13 +0000 | [diff] [blame] | 157 | /* Setup a new row if required */ |
| 158 | if (column == 0) { |
| 159 | putchar('\n'); |
| 160 | if (tbl == tbl_std) { |
| 161 | putchar('M'); |
| 162 | } |
| 163 | } |
| 164 | /* Write to the 60th column */ |
| 165 | if (fwrite(&dst_buf[buffer_offset], 1, write_size, stdout) != write_size) { |
| 166 | perror("Couldnt finish writing"); |
| 167 | } |
| 168 | /* Update variables based on last write */ |
| 169 | buffer_offset += write_size; |
| 170 | remaining -= write_size; |
| 171 | column += write_size; |
| 172 | if (column % 60 == 0) { |
| 173 | column = 0; |
| 174 | } |
Glenn L McGrath | 089deca | 2001-07-28 21:06:13 +0000 | [diff] [blame] | 175 | } while (remaining > 0); |
| 176 | } |
| 177 | printf(tbl == tbl_std ? "\n`\nend\n" : "\n====\n"); |
| 178 | |
| 179 | return(EXIT_SUCCESS); |
| 180 | } |