blob: 9dc5bb86d4d82d083b254b178f59b30c2475acdb [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
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000015#include <stdio.h>
16#include <errno.h>
Rob Landleyb7128c62005-09-11 01:05:30 +000017#include <getopt.h> /* optind */
Eric Andersened3ef502001-01-27 08:24:39 +000018#include <string.h>
19#include <stdlib.h>
"Vladimir N. Oleynik"ba248202005-10-06 15:18:09 +000020#include "busybox.h"
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000021
Glenn L McGrath7f9de022003-11-06 03:17:23 +000022static int read_stduu(FILE *src_stream, FILE *dst_stream)
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000023{
Glenn L McGrath7f9de022003-11-06 03:17:23 +000024 char *line;
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000025
Glenn L McGrath7f9de022003-11-06 03:17:23 +000026 while ((line = bb_get_chomped_line_from_file(src_stream)) != NULL) {
27 int length;
28 char *line_ptr = line;
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000029
Glenn L McGrath7f9de022003-11-06 03:17:23 +000030 if (strcmp(line, "end") == 0) {
31 return(EXIT_SUCCESS);
32 }
33 length = ((*line_ptr - 0x20) & 0x3f)* 4 / 3;
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000034
Glenn L McGrath7f9de022003-11-06 03:17:23 +000035 if (length <= 0) {
36 /* Ignore the "`\n" line, why is it even in the encode file ? */
37 continue;
38 }
39 if (length > 60) {
40 bb_error_msg_and_die("Line too long");
41 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +000042
Glenn L McGrath7f9de022003-11-06 03:17:23 +000043 line_ptr++;
44 /* Tolerate an overly long line to acomadate a possible exta '`' */
"Vladimir N. Oleynik"87be3162006-01-31 14:25:52 +000045 if (strlen(line_ptr) < (size_t)length) {
Glenn L McGrath7f9de022003-11-06 03:17:23 +000046 bb_error_msg_and_die("Short file");
47 }
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000048
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000049 while (length > 0) {
Glenn L McGrath7f9de022003-11-06 03:17:23 +000050 /* Merge four 6 bit chars to three 8 bit chars */
"Vladimir N. Oleynik"87be3162006-01-31 14:25:52 +000051 fputc(((line_ptr[0] - 0x20) & 077) << 2 | ((line_ptr[1] - 0x20) & 077) >> 4, dst_stream);
Glenn L McGrath7f9de022003-11-06 03:17:23 +000052 line_ptr++;
53 length--;
54 if (length == 0) {
55 break;
56 }
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000057
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000058 fputc(((line_ptr[0] - 0x20) & 077) << 4 | ((line_ptr[1] - 0x20) & 077) >> 2, dst_stream);
Glenn L McGrath7f9de022003-11-06 03:17:23 +000059 line_ptr++;
60 length--;
61 if (length == 0) {
62 break;
63 }
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000064
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000065 fputc(((line_ptr[0] - 0x20) & 077) << 6 | ((line_ptr[1] - 0x20) & 077), dst_stream);
Glenn L McGrath7f9de022003-11-06 03:17:23 +000066 line_ptr += 2;
67 length -= 2;
68 }
69 free(line);
70 }
71 bb_error_msg_and_die("Short file");
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000072}
73
Glenn L McGrath7f9de022003-11-06 03:17:23 +000074static int read_base64(FILE *src_stream, FILE *dst_stream)
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000075{
"Vladimir N. Oleynik"87be3162006-01-31 14:25:52 +000076 static const char base64_table[] =
Glenn L McGrath7f9de022003-11-06 03:17:23 +000077 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\n";
78 char term_count = 0;
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000079
Glenn L McGrath7f9de022003-11-06 03:17:23 +000080 while (1) {
81 char translated[4];
82 int count = 0;
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000083
Glenn L McGrath7f9de022003-11-06 03:17:23 +000084 while (count < 4) {
85 char *table_ptr;
Eric Andersen5e678872006-01-30 19:48:23 +000086 int ch;
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000087
Glenn L McGrath7f9de022003-11-06 03:17:23 +000088 /* Get next _valid_ character */
89 do {
90 ch = fgetc(src_stream);
91 if (ch == EOF) {
92 bb_error_msg_and_die("Short file");
93 }
94 } while ((table_ptr = strchr(base64_table, ch)) == NULL);
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000095
Glenn L McGrath7f9de022003-11-06 03:17:23 +000096 /* Convert encoded charcter to decimal */
97 ch = table_ptr - base64_table;
Eric Andersen2b6ab3c2000-06-13 06:54:53 +000098
Glenn L McGrath7f9de022003-11-06 03:17:23 +000099 if (*table_ptr == '=') {
100 if (term_count == 0) {
101 translated[count] = 0;
102 break;
103 }
104 term_count++;
105 }
106 else if (*table_ptr == '\n') {
107 /* Check for terminating line */
108 if (term_count == 5) {
109 return(EXIT_SUCCESS);
110 }
111 term_count = 1;
112 continue;
113 } else {
114 translated[count] = ch;
115 count++;
116 term_count = 0;
117 }
118 }
Eric Andersen2b6ab3c2000-06-13 06:54:53 +0000119
Glenn L McGrath7f9de022003-11-06 03:17:23 +0000120 /* Merge 6 bit chars to 8 bit */
121 fputc(translated[0] << 2 | translated[1] >> 4, dst_stream);
122 if (count > 2) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000123 fputc(translated[1] << 4 | translated[2] >> 2, dst_stream);
Glenn L McGrath7f9de022003-11-06 03:17:23 +0000124 }
125 if (count > 3) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000126 fputc(translated[2] << 6 | translated[3], dst_stream);
Glenn L McGrath7f9de022003-11-06 03:17:23 +0000127 }
128 }
Eric Andersen2b6ab3c2000-06-13 06:54:53 +0000129}
130
Rob Landleydfba7412006-03-06 20:47:33 +0000131int uudecode_main(int argc, char **argv)
Eric Andersen2b6ab3c2000-06-13 06:54:53 +0000132{
Glenn L McGrath7f9de022003-11-06 03:17:23 +0000133 int (*decode_fn_ptr) (FILE * src, FILE * dst);
134 FILE *src_stream;
135 char *outname = NULL;
136 char *line;
137 int opt;
Eric Andersen2b6ab3c2000-06-13 06:54:53 +0000138
Glenn L McGrath7f9de022003-11-06 03:17:23 +0000139 opt = bb_getopt_ulflags(argc, argv, "o:", &outname);
Eric Andersen2b6ab3c2000-06-13 06:54:53 +0000140
Glenn L McGrath7f9de022003-11-06 03:17:23 +0000141 if (optind == argc) {
142 src_stream = stdin;
143 } else if (optind + 1 == argc) {
144 src_stream = bb_xfopen(argv[optind], "r");
145 } else {
146 bb_show_usage();
147 }
Eric Andersen2b6ab3c2000-06-13 06:54:53 +0000148
Glenn L McGrath7f9de022003-11-06 03:17:23 +0000149 /* Search for the start of the encoding */
150 while ((line = bb_get_chomped_line_from_file(src_stream)) != NULL) {
151 char *line_ptr = NULL;
Eric Andersen2b6ab3c2000-06-13 06:54:53 +0000152
Glenn L McGrath7f9de022003-11-06 03:17:23 +0000153 if (line == NULL) {
154 break;
155 } else if (strncmp(line, "begin-base64 ", 13) == 0) {
156 line_ptr = line + 13;
157 decode_fn_ptr = read_base64;
158 } else if (strncmp(line, "begin ", 6) == 0) {
159 line_ptr = line + 6;
160 decode_fn_ptr = read_stduu;
161 }
Eric Andersen2b6ab3c2000-06-13 06:54:53 +0000162
Glenn L McGrath7f9de022003-11-06 03:17:23 +0000163 if (line_ptr) {
164 FILE *dst_stream;
165 int mode;
166 int ret;
Eric Andersen2b6ab3c2000-06-13 06:54:53 +0000167
Glenn L McGrath7f9de022003-11-06 03:17:23 +0000168 mode = strtoul(line_ptr, NULL, 8);
169 if (outname == NULL) {
170 outname = strchr(line_ptr, ' ');
171 if ((outname == NULL) || (*outname == '\0')) {
172 break;
173 }
174 outname++;
175 }
176 if (strcmp(outname, "-") == 0) {
177 dst_stream = stdout;
178 } else {
179 dst_stream = bb_xfopen(outname, "w");
180 chmod(outname, mode & (S_IRWXU | S_IRWXG | S_IRWXO));
181 }
182 free(line);
183 ret = decode_fn_ptr(src_stream, dst_stream);
184 bb_fclose_nonstdin(src_stream);
185 return(ret);
186 }
187 free(line);
188 }
189 bb_error_msg_and_die("No `begin' line");
Eric Andersen2b6ab3c2000-06-13 06:54:53 +0000190}