1 /* vi: set sw=4 ts=4: */
3 * Copyright 2003, Glenn McGrath
5 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
7 * Based on specification from
8 * http://www.opengroup.org/onlinepubs/007904975/utilities/uuencode.html
10 * Bugs: the spec doesn't mention anything about "`\n`\n" prior to the
14 //usage:#define uudecode_trivial_usage
15 //usage: "[-o OUTFILE] [INFILE]"
16 //usage:#define uudecode_full_usage "\n\n"
17 //usage: "Uudecode a file\n"
18 //usage: "Finds OUTFILE in uuencoded source unless -o is given"
20 //usage:#define uudecode_example_usage
21 //usage: "$ uudecode -o busybox busybox.uu\n"
22 //usage: "$ ls -l busybox\n"
23 //usage: "-rwxr-xr-x 1 ams ams 245264 Jun 7 21:35 busybox\n"
28 static void FAST_FUNC
read_stduu(FILE *src_stream
, FILE *dst_stream
, int flags UNUSED_PARAM
)
33 int encoded_len
, str_len
;
38 line
= xmalloc_fgets_str_len(src_stream
, "\n", &line_len
);
41 /* Handle both Unix and MSDOS text, and stray trailing spaces */
43 while (--str_len
>= 0 && isspace(line
[str_len
]))
46 if (strcmp(line
, "end") == 0) {
47 return; /* the only non-error exit */
52 *line_ptr
= (*line_ptr
- 0x20) & 0x3f;
55 str_len
= line_ptr
- line
;
57 encoded_len
= line
[0] * 4 / 3;
58 /* Check that line is not too short. (we tolerate
59 * overly _long_ line to accommodate possible extra '`').
60 * Empty line case is also caught here. */
61 if (str_len
<= encoded_len
) {
62 break; /* go to bb_error_msg_and_die("short file"); */
64 if (encoded_len
<= 0) {
65 /* Ignore the "`\n" line, why is it even in the encode file ? */
69 if (encoded_len
> 60) {
70 bb_error_msg_and_die("line too long");
76 /* Merge four 6 bit chars to three 8 bit chars */
77 *dst
++ = line_ptr
[0] << 2 | line_ptr
[1] >> 4;
79 if (encoded_len
== 0) {
83 *dst
++ = line_ptr
[1] << 4 | line_ptr
[2] >> 2;
85 if (encoded_len
== 0) {
89 *dst
++ = line_ptr
[2] << 6 | line_ptr
[3];
92 } while (encoded_len
> 0);
93 fwrite(line
, 1, dst
- line
, dst_stream
);
96 bb_error_msg_and_die("short file");
101 int uudecode_main(int argc
, char **argv
) MAIN_EXTERNALLY_VISIBLE
;
102 int uudecode_main(int argc UNUSED_PARAM
, char **argv
)
105 char *outname
= NULL
;
108 opt_complementary
= "?1"; /* 1 argument max */
109 getopt32(argv
, "o:", &outname
);
113 *--argv
= (char*)"-";
114 src_stream
= xfopen_stdin(argv
[0]);
116 /* Search for the start of the encoding */
117 while ((line
= xmalloc_fgetline(src_stream
)) != NULL
) {
118 void FAST_FUNC (*decode_fn_ptr
)(FILE *src
, FILE *dst
, int flags
);
123 if (is_prefixed_with(line
, "begin-base64 ")) {
124 line_ptr
= line
+ 13;
125 decode_fn_ptr
= read_base64
;
126 } else if (is_prefixed_with(line
, "begin ")) {
128 decode_fn_ptr
= read_stduu
;
134 /* begin line found. decode and exit */
135 mode
= bb_strtou(line_ptr
, NULL
, 8);
136 if (outname
== NULL
) {
137 outname
= strchr(line_ptr
, ' ');
141 trim(outname
); /* remove trailing space (and '\r' for DOS text) */
146 if (NOT_LONE_DASH(outname
)) {
147 dst_stream
= xfopen_for_write(outname
);
148 fchmod(fileno(dst_stream
), mode
& (S_IRWXU
| S_IRWXG
| S_IRWXO
));
151 decode_fn_ptr(src_stream
, dst_stream
, /*flags:*/ BASE64_FLAG_UU_STOP
+ BASE64_FLAG_NO_STOP_CHAR
);
152 /* fclose_if_not_stdin(src_stream); - redundant */
155 bb_error_msg_and_die("no 'begin' line");
159 //applet:IF_BASE64(APPLET(base64, BB_DIR_BIN, BB_SUID_DROP))
161 //kbuild:lib-$(CONFIG_BASE64) += uudecode.o
163 //config:config BASE64
164 //config: bool "base64"
167 //config: Base64 encode and decode
169 //usage:#define base64_trivial_usage
170 //usage: "[-d] [FILE]"
171 //usage:#define base64_full_usage "\n\n"
172 //usage: "Base64 encode or decode FILE to standard output"
173 //usage: "\n -d Decode data"
174 ////usage: "\n -w COL Wrap lines at COL (default 76, 0 disables)"
175 ////usage: "\n -i When decoding, ignore non-alphabet characters"
178 int base64_main(int argc
, char **argv
) MAIN_EXTERNALLY_VISIBLE
;
179 int base64_main(int argc UNUSED_PARAM
, char **argv
)
184 opt_complementary
= "?1"; /* 1 argument max */
185 opts
= getopt32(argv
, "d");
189 *--argv
= (char*)"-";
190 src_stream
= xfopen_stdin(argv
[0]);
192 read_base64(src_stream
, stdout
, /*flags:*/ (char)EOF
);
195 SRC_BUF_SIZE
= 76/4*3, /* This *MUST* be a multiple of 3 */
196 DST_BUF_SIZE
= 4 * ((SRC_BUF_SIZE
+ 2) / 3),
198 char src_buf
[SRC_BUF_SIZE
];
199 char dst_buf
[DST_BUF_SIZE
+ 1];
200 int src_fd
= fileno(src_stream
);
202 size_t size
= full_read(src_fd
, src_buf
, SRC_BUF_SIZE
);
205 if ((ssize_t
)size
< 0)
206 bb_perror_msg_and_die(bb_msg_read_error
);
207 /* Encode the buffer we just read in */
208 bb_uuencode(dst_buf
, src_buf
, size
, bb_uuenc_tbl_base64
);
209 xwrite(STDOUT_FILENO
, dst_buf
, 4 * ((size
+ 2) / 3));
215 fflush_stdout_and_exit(EXIT_SUCCESS
);
220 Put this into an empty dir with busybox binary, an run.
223 test -x busybox || { echo "No ./busybox?"; exit; }
224 ln -sf busybox uudecode
225 ln -sf busybox uuencode
232 echo -n ABCDEF >ABCDEF
236 ./uuencode $f <$f >u_$f
237 ./uuencode -m $f <$f >m_$f
239 mkdir unpk_u unpk_m 2>/dev/null
241 ./uudecode <$f -o unpk_u/${f:2}
242 diff -a ${f:2} unpk_u/${f:2} >/dev/null 2>&1
246 ./uudecode <$f -o unpk_m/${f:2}
247 diff -a ${f:2} unpk_m/${f:2} >/dev/null 2>&1