1 /* $NetBSD: uuencode.c,v 1.13 2008/07/21 14:19:27 lukem Exp $ */
4 * Copyright (c) 1983, 1993
5 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 #include <sys/cdefs.h>
34 __COPYRIGHT("@(#) Copyright (c) 1983, 1993\
35 The Regents of the University of California. All rights reserved.");
40 static char sccsid
[] = "@(#)uuencode.c 8.2 (Berkeley) 4/2/94";
42 __RCSID("$NetBSD: uuencode.c,v 1.13 2008/07/21 14:19:27 lukem Exp $");
47 * uuencode [input] output
49 * Encode a file so it can be mailed to a remote system.
51 #include <sys/types.h>
53 #include <netinet/in.h>
63 int main(int, char *[]);
64 static void encode(void);
65 static void base64_encode(void);
66 static void usage(void);
69 main(int argc
, char *argv
[])
76 setlocale(LC_ALL
, "");
79 while ((ch
= getopt(argc
, argv
, "m")) != -1) {
92 case 2: /* optional first argument is input file */
93 if (!freopen(*argv
, "r", stdin
) || fstat(fileno(stdin
), &sb
))
95 #define RWX (S_IRWXU|S_IRWXG|S_IRWXO)
96 mode
= sb
.st_mode
& RWX
;
100 #define RW (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)
101 mode
= RW
& ~umask(RW
);
109 (void)printf("begin-base64 %o %s\n", mode
, *argv
);
111 (void)printf("====\n");
113 (void)printf("begin %o %s\n", mode
, *argv
);
115 (void)printf("end\n");
119 err(1, "write error");
123 /* ENC is the basic 1 character encoding function to make a char printing */
124 #define ENC(c) ((c) ? ((c) & 077) + ' ': '`')
127 * copy from in to out, encoding in base64 as you go along.
133 * Output must fit into 80 columns, chunks come in 4, leave 1.
135 #define GROUPS ((70 / 4) - 1)
136 unsigned char buf
[3];
137 char buf2
[sizeof(buf
) * 2 + 1];
143 while ((n
= fread(buf
, 1, sizeof(buf
), stdin
))) {
145 rv
= b64_ntop(buf
, n
, buf2
, (sizeof(buf2
) / sizeof(buf2
[0])));
147 errx(1, "b64_ntop: error encoding base64");
148 printf("%s%s", buf2
, (sequence
% GROUPS
) ? "" : "\n");
150 if (sequence
% GROUPS
)
155 * copy from in to out, encoding as you go along.
164 while ((n
= fread(buf
, 1, 45, stdin
)) > 0) {
166 if (putchar(ch
) == EOF
)
168 for (p
= buf
; n
> 0; n
-= 3, p
+= 3) {
171 if (putchar(ch
) == EOF
)
173 ch
= ((*p
<< 4) & 060) | ((p
[1] >> 4) & 017);
175 if (putchar(ch
) == EOF
)
177 ch
= ((p
[1] << 2) & 074) | ((p
[2] >> 6) & 03);
179 if (putchar(ch
) == EOF
)
183 if (putchar(ch
) == EOF
)
186 if (putchar('\n') == EOF
)
190 err(1, "read error.");
199 (void)fprintf(stderr
, "usage: %s [-m] [inputfile] outputname\n",