Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 1 | /* |
| 2 | * GPLv2 |
Glenn L McGrath | c6992fe | 2004-04-25 05:11:19 +0000 | [diff] [blame] | 3 | * Copyright 2003, Glenn McGrath <bug1@iinet.net.au> |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 4 | * |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as published |
| 7 | * by the Free Software Foundation; either version 2 of the License. |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 8 | * |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU Library General Public License for more details. |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 13 | * |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 17 | * |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 18 | * Based on specification from |
| 19 | * http://www.opengroup.org/onlinepubs/007904975/utilities/uuencode.html |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 20 | * |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 21 | * Bugs: the spec doesnt mention anything about "`\n`\n" prior to the "end" line |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 22 | */ |
| 23 | |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 24 | |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 25 | #include <stdio.h> |
| 26 | #include <errno.h> |
Rob Landley | b7128c6 | 2005-09-11 01:05:30 +0000 | [diff] [blame] | 27 | #include <getopt.h> /* optind */ |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 28 | #include <string.h> |
| 29 | #include <stdlib.h> |
"Vladimir N. Oleynik" | ba24820 | 2005-10-06 15:18:09 +0000 | [diff] [blame] | 30 | #include "busybox.h" |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 31 | |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 32 | static int read_stduu(FILE *src_stream, FILE *dst_stream) |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 33 | { |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 34 | char *line; |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 35 | |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 36 | while ((line = bb_get_chomped_line_from_file(src_stream)) != NULL) { |
| 37 | int length; |
| 38 | char *line_ptr = line; |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 39 | |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 40 | if (strcmp(line, "end") == 0) { |
| 41 | return(EXIT_SUCCESS); |
| 42 | } |
| 43 | length = ((*line_ptr - 0x20) & 0x3f)* 4 / 3; |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 44 | |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 45 | if (length <= 0) { |
| 46 | /* Ignore the "`\n" line, why is it even in the encode file ? */ |
| 47 | continue; |
| 48 | } |
| 49 | if (length > 60) { |
| 50 | bb_error_msg_and_die("Line too long"); |
| 51 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 52 | |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 53 | line_ptr++; |
| 54 | /* Tolerate an overly long line to acomadate a possible exta '`' */ |
| 55 | if (strlen(line_ptr) < length) { |
| 56 | bb_error_msg_and_die("Short file"); |
| 57 | } |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 58 | |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 59 | while (length > 0) { |
| 60 | /* Merge four 6 bit chars to three 8 bit chars */ |
| 61 | fputc(((line_ptr[0] - 0x20) & 077) << 2 | ((line_ptr[1] - 0x20) & 077) >> 4, dst_stream); |
| 62 | line_ptr++; |
| 63 | length--; |
| 64 | if (length == 0) { |
| 65 | break; |
| 66 | } |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 67 | |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 68 | fputc(((line_ptr[0] - 0x20) & 077) << 4 | ((line_ptr[1] - 0x20) & 077) >> 2, dst_stream); |
| 69 | line_ptr++; |
| 70 | length--; |
| 71 | if (length == 0) { |
| 72 | break; |
| 73 | } |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 74 | |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 75 | fputc(((line_ptr[0] - 0x20) & 077) << 6 | ((line_ptr[1] - 0x20) & 077), dst_stream); |
| 76 | line_ptr += 2; |
| 77 | length -= 2; |
| 78 | } |
| 79 | free(line); |
| 80 | } |
| 81 | bb_error_msg_and_die("Short file"); |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 82 | } |
| 83 | |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 84 | static int read_base64(FILE *src_stream, FILE *dst_stream) |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 85 | { |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 86 | const char *base64_table = |
| 87 | "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\n"; |
| 88 | char term_count = 0; |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 89 | |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 90 | while (1) { |
| 91 | char translated[4]; |
| 92 | int count = 0; |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 93 | |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 94 | while (count < 4) { |
| 95 | char *table_ptr; |
| 96 | char ch; |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 97 | |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 98 | /* Get next _valid_ character */ |
| 99 | do { |
| 100 | ch = fgetc(src_stream); |
| 101 | if (ch == EOF) { |
| 102 | bb_error_msg_and_die("Short file"); |
| 103 | } |
| 104 | } while ((table_ptr = strchr(base64_table, ch)) == NULL); |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 105 | |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 106 | /* Convert encoded charcter to decimal */ |
| 107 | ch = table_ptr - base64_table; |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 108 | |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 109 | if (*table_ptr == '=') { |
| 110 | if (term_count == 0) { |
| 111 | translated[count] = 0; |
| 112 | break; |
| 113 | } |
| 114 | term_count++; |
| 115 | } |
| 116 | else if (*table_ptr == '\n') { |
| 117 | /* Check for terminating line */ |
| 118 | if (term_count == 5) { |
| 119 | return(EXIT_SUCCESS); |
| 120 | } |
| 121 | term_count = 1; |
| 122 | continue; |
| 123 | } else { |
| 124 | translated[count] = ch; |
| 125 | count++; |
| 126 | term_count = 0; |
| 127 | } |
| 128 | } |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 129 | |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 130 | /* Merge 6 bit chars to 8 bit */ |
| 131 | fputc(translated[0] << 2 | translated[1] >> 4, dst_stream); |
| 132 | if (count > 2) { |
| 133 | fputc(translated[1] << 4 | translated[2] >> 2, dst_stream); |
| 134 | } |
| 135 | if (count > 3) { |
| 136 | fputc(translated[2] << 6 | translated[3], dst_stream); |
| 137 | } |
| 138 | } |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 139 | } |
| 140 | |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 141 | extern int uudecode_main(int argc, char **argv) |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 142 | { |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 143 | int (*decode_fn_ptr) (FILE * src, FILE * dst); |
| 144 | FILE *src_stream; |
| 145 | char *outname = NULL; |
| 146 | char *line; |
| 147 | int opt; |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 148 | |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 149 | opt = bb_getopt_ulflags(argc, argv, "o:", &outname); |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 150 | |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 151 | if (optind == argc) { |
| 152 | src_stream = stdin; |
| 153 | } else if (optind + 1 == argc) { |
| 154 | src_stream = bb_xfopen(argv[optind], "r"); |
| 155 | } else { |
| 156 | bb_show_usage(); |
| 157 | } |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 158 | |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 159 | /* Search for the start of the encoding */ |
| 160 | while ((line = bb_get_chomped_line_from_file(src_stream)) != NULL) { |
| 161 | char *line_ptr = NULL; |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 162 | |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 163 | if (line == NULL) { |
| 164 | break; |
| 165 | } else if (strncmp(line, "begin-base64 ", 13) == 0) { |
| 166 | line_ptr = line + 13; |
| 167 | decode_fn_ptr = read_base64; |
| 168 | } else if (strncmp(line, "begin ", 6) == 0) { |
| 169 | line_ptr = line + 6; |
| 170 | decode_fn_ptr = read_stduu; |
| 171 | } |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 172 | |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 173 | if (line_ptr) { |
| 174 | FILE *dst_stream; |
| 175 | int mode; |
| 176 | int ret; |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 177 | |
Glenn L McGrath | 7f9de02 | 2003-11-06 03:17:23 +0000 | [diff] [blame] | 178 | mode = strtoul(line_ptr, NULL, 8); |
| 179 | if (outname == NULL) { |
| 180 | outname = strchr(line_ptr, ' '); |
| 181 | if ((outname == NULL) || (*outname == '\0')) { |
| 182 | break; |
| 183 | } |
| 184 | outname++; |
| 185 | } |
| 186 | if (strcmp(outname, "-") == 0) { |
| 187 | dst_stream = stdout; |
| 188 | } else { |
| 189 | dst_stream = bb_xfopen(outname, "w"); |
| 190 | chmod(outname, mode & (S_IRWXU | S_IRWXG | S_IRWXO)); |
| 191 | } |
| 192 | free(line); |
| 193 | ret = decode_fn_ptr(src_stream, dst_stream); |
| 194 | bb_fclose_nonstdin(src_stream); |
| 195 | return(ret); |
| 196 | } |
| 197 | free(line); |
| 198 | } |
| 199 | bb_error_msg_and_die("No `begin' line"); |
Eric Andersen | 2b6ab3c | 2000-06-13 06:54:53 +0000 | [diff] [blame] | 200 | } |