blob: c8152a808cde47637bd2ece12c2c4bb45878ddeb [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrath7f9de022003-11-06 03:17:23 +00002/*
Glenn L McGrathc6992fe2004-04-25 05:11:19 +00003 * Copyright 2003, Glenn McGrath <bug1@iinet.net.au>
Eric Andersen2b6ab3c2000-06-13 06:54:53 +00004 *
Rob Landley0edbad12006-04-17 22:49:30 +00005 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersen4e573f42000-11-14 23:29:24 +00006 *
Glenn L McGrath7f9de022003-11-06 03:17:23 +00007 * Based on specification from
8 * http://www.opengroup.org/onlinepubs/007904975/utilities/uuencode.html
Eric Andersen4e573f42000-11-14 23:29:24 +00009 *
Rob Landley0edbad12006-04-17 22:49:30 +000010 * Bugs: the spec doesn't mention anything about "`\n`\n" prior to the
11 * "end" line
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000012 */
13
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000014
"Vladimir N. Oleynik"ba248202005-10-06 15:18:09 +000015#include "busybox.h"
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000016
Glenn L McGrath7f9de022003-11-06 03:17:23 +000017static int read_stduu(FILE *src_stream, FILE *dst_stream)
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000018{
Glenn L McGrath7f9de022003-11-06 03:17:23 +000019 char *line;
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000020
Denis Vlasenko2d5ca602006-10-12 22:43:20 +000021 while ((line = xmalloc_getline(src_stream)) != NULL) {
Glenn L McGrath7f9de022003-11-06 03:17:23 +000022 int length;
23 char *line_ptr = line;
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000024
Glenn L McGrath7f9de022003-11-06 03:17:23 +000025 if (strcmp(line, "end") == 0) {
26 return(EXIT_SUCCESS);
27 }
28 length = ((*line_ptr - 0x20) & 0x3f)* 4 / 3;
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000029
Glenn L McGrath7f9de022003-11-06 03:17:23 +000030 if (length <= 0) {
31 /* Ignore the "`\n" line, why is it even in the encode file ? */
32 continue;
33 }
34 if (length > 60) {
35 bb_error_msg_and_die("Line too long");
36 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +000037
Glenn L McGrath7f9de022003-11-06 03:17:23 +000038 line_ptr++;
Bernhard Reutner-Fischer42f67022006-09-21 20:40:56 +000039 /* Tolerate an overly long line to accomodate a possible exta '`' */
"Vladimir N. Oleynik"87be3162006-01-31 14:25:52 +000040 if (strlen(line_ptr) < (size_t)length) {
Glenn L McGrath7f9de022003-11-06 03:17:23 +000041 bb_error_msg_and_die("Short file");
42 }
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000043
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000044 while (length > 0) {
Glenn L McGrath7f9de022003-11-06 03:17:23 +000045 /* Merge four 6 bit chars to three 8 bit chars */
"Vladimir N. Oleynik"87be3162006-01-31 14:25:52 +000046 fputc(((line_ptr[0] - 0x20) & 077) << 2 | ((line_ptr[1] - 0x20) & 077) >> 4, dst_stream);
Glenn L McGrath7f9de022003-11-06 03:17:23 +000047 line_ptr++;
48 length--;
49 if (length == 0) {
50 break;
51 }
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000052
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000053 fputc(((line_ptr[0] - 0x20) & 077) << 4 | ((line_ptr[1] - 0x20) & 077) >> 2, dst_stream);
Glenn L McGrath7f9de022003-11-06 03:17:23 +000054 line_ptr++;
55 length--;
56 if (length == 0) {
57 break;
58 }
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000059
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000060 fputc(((line_ptr[0] - 0x20) & 077) << 6 | ((line_ptr[1] - 0x20) & 077), dst_stream);
Glenn L McGrath7f9de022003-11-06 03:17:23 +000061 line_ptr += 2;
62 length -= 2;
63 }
64 free(line);
65 }
66 bb_error_msg_and_die("Short file");
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000067}
68
Glenn L McGrath7f9de022003-11-06 03:17:23 +000069static int read_base64(FILE *src_stream, FILE *dst_stream)
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000070{
"Vladimir N. Oleynik"87be3162006-01-31 14:25:52 +000071 static const char base64_table[] =
Glenn L McGrath7f9de022003-11-06 03:17:23 +000072 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\n";
73 char term_count = 0;
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000074
Glenn L McGrath7f9de022003-11-06 03:17:23 +000075 while (1) {
76 char translated[4];
77 int count = 0;
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000078
Glenn L McGrath7f9de022003-11-06 03:17:23 +000079 while (count < 4) {
80 char *table_ptr;
Eric Andersen5e678872006-01-30 19:48:23 +000081 int ch;
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000082
Glenn L McGrath7f9de022003-11-06 03:17:23 +000083 /* Get next _valid_ character */
84 do {
85 ch = fgetc(src_stream);
86 if (ch == EOF) {
87 bb_error_msg_and_die("Short file");
88 }
89 } while ((table_ptr = strchr(base64_table, ch)) == NULL);
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000090
Glenn L McGrath7f9de022003-11-06 03:17:23 +000091 /* Convert encoded charcter to decimal */
92 ch = table_ptr - base64_table;
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000093
Glenn L McGrath7f9de022003-11-06 03:17:23 +000094 if (*table_ptr == '=') {
95 if (term_count == 0) {
96 translated[count] = 0;
97 break;
98 }
99 term_count++;
100 }
101 else if (*table_ptr == '\n') {
102 /* Check for terminating line */
103 if (term_count == 5) {
104 return(EXIT_SUCCESS);
105 }
106 term_count = 1;
107 continue;
108 } else {
109 translated[count] = ch;
110 count++;
111 term_count = 0;
112 }
113 }
Eric Andersen2b6ab3c2000-06-13 06:54:53 +0000114
Glenn L McGrath7f9de022003-11-06 03:17:23 +0000115 /* Merge 6 bit chars to 8 bit */
116 fputc(translated[0] << 2 | translated[1] >> 4, dst_stream);
117 if (count > 2) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000118 fputc(translated[1] << 4 | translated[2] >> 2, dst_stream);
Glenn L McGrath7f9de022003-11-06 03:17:23 +0000119 }
120 if (count > 3) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000121 fputc(translated[2] << 6 | translated[3], dst_stream);
Glenn L McGrath7f9de022003-11-06 03:17:23 +0000122 }
123 }
Eric Andersen2b6ab3c2000-06-13 06:54:53 +0000124}
125
Rob Landleydfba7412006-03-06 20:47:33 +0000126int uudecode_main(int argc, char **argv)
Eric Andersen2b6ab3c2000-06-13 06:54:53 +0000127{
Glenn L McGrath7f9de022003-11-06 03:17:23 +0000128 FILE *src_stream;
129 char *outname = NULL;
130 char *line;
Eric Andersen2b6ab3c2000-06-13 06:54:53 +0000131
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000132 getopt32(argc, argv, "o:", &outname);
Eric Andersen2b6ab3c2000-06-13 06:54:53 +0000133
Glenn L McGrath7f9de022003-11-06 03:17:23 +0000134 if (optind == argc) {
135 src_stream = stdin;
136 } else if (optind + 1 == argc) {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000137 src_stream = xfopen(argv[optind], "r");
Glenn L McGrath7f9de022003-11-06 03:17:23 +0000138 } else {
139 bb_show_usage();
140 }
Eric Andersen2b6ab3c2000-06-13 06:54:53 +0000141
Glenn L McGrath7f9de022003-11-06 03:17:23 +0000142 /* Search for the start of the encoding */
Denis Vlasenko2d5ca602006-10-12 22:43:20 +0000143 while ((line = xmalloc_getline(src_stream)) != NULL) {
Rob Landleyb97f07f2006-09-22 19:11:59 +0000144 int (*decode_fn_ptr)(FILE * src, FILE * dst);
Rob Landley29d94b92006-09-23 19:56:21 +0000145 char *line_ptr;
146 FILE *dst_stream;
147 int mode;
148 int ret;
149
Rob Landley565bc332006-07-31 22:50:12 +0000150 if (strncmp(line, "begin-base64 ", 13) == 0) {
Glenn L McGrath7f9de022003-11-06 03:17:23 +0000151 line_ptr = line + 13;
152 decode_fn_ptr = read_base64;
153 } else if (strncmp(line, "begin ", 6) == 0) {
154 line_ptr = line + 6;
155 decode_fn_ptr = read_stduu;
Rob Landley29d94b92006-09-23 19:56:21 +0000156 } else {
157 free(line);
158 continue;
Glenn L McGrath7f9de022003-11-06 03:17:23 +0000159 }
Eric Andersen2b6ab3c2000-06-13 06:54:53 +0000160
Rob Landley29d94b92006-09-23 19:56:21 +0000161 mode = strtoul(line_ptr, NULL, 8);
162 if (outname == NULL) {
163 outname = strchr(line_ptr, ' ');
164 if ((outname == NULL) || (*outname == '\0')) {
165 break;
Glenn L McGrath7f9de022003-11-06 03:17:23 +0000166 }
Rob Landley29d94b92006-09-23 19:56:21 +0000167 outname++;
168 }
169 if (strcmp(outname, "-") == 0) {
170 dst_stream = stdout;
171 } else {
172 dst_stream = xfopen(outname, "w");
173 chmod(outname, mode & (S_IRWXU | S_IRWXG | S_IRWXO));
Glenn L McGrath7f9de022003-11-06 03:17:23 +0000174 }
175 free(line);
Rob Landley29d94b92006-09-23 19:56:21 +0000176 ret = decode_fn_ptr(src_stream, dst_stream);
177 bb_fclose_nonstdin(src_stream);
178 return(ret);
Glenn L McGrath7f9de022003-11-06 03:17:23 +0000179 }
180 bb_error_msg_and_die("No `begin' line");
Eric Andersen2b6ab3c2000-06-13 06:54:53 +0000181}