1 /* $NetBSD: uuencode.c,v 1.16 2014/09/06 18:58:35 dholland 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.16 2014/09/06 18:58:35 dholland 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 static void encode(void);
64 static void base64_encode(void);
65 __dead
static void usage(void);
68 main(int argc
, char *argv
[])
75 setlocale(LC_ALL
, "");
78 while ((ch
= getopt(argc
, argv
, "m")) != -1) {
91 case 2: /* optional first argument is input file */
92 if (!freopen(*argv
, "r", stdin
) || fstat(fileno(stdin
), &sb
))
94 #define RWX (S_IRWXU|S_IRWXG|S_IRWXO)
95 mode
= sb
.st_mode
& RWX
;
99 #define RW (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)
100 mode
= RW
& ~umask(RW
);
108 (void)printf("begin-base64 %o %s\n", mode
, *argv
);
110 (void)printf("====\n");
112 (void)printf("begin %o %s\n", mode
, *argv
);
114 (void)printf("end\n");
118 err(1, "write error");
122 /* ENC is the basic 1 character encoding function to make a char printing */
123 #define ENC(c) ((c) ? ((c) & 077) + ' ': '`')
126 * copy from in to out, encoding in base64 as you go along.
132 * Output must fit into 80 columns, chunks come in 4, leave 1.
134 #define GROUPS ((70 / 4) - 1)
135 unsigned char buf
[3];
136 char buf2
[sizeof(buf
) * 2 + 1];
142 while ((n
= fread(buf
, 1, sizeof(buf
), stdin
))) {
144 rv
= b64_ntop(buf
, n
, buf2
, (sizeof(buf2
) / sizeof(buf2
[0])));
146 errx(1, "b64_ntop: error encoding base64");
147 printf("%s%s", buf2
, (sequence
% GROUPS
) ? "" : "\n");
149 if (sequence
% GROUPS
)
154 * copy from in to out, encoding as you go along.
163 while ((n
= fread(buf
, 1, 45, stdin
)) > 0) {
165 if (putchar(ch
) == EOF
)
167 for (p
= buf
; n
> 0; n
-= 3, p
+= 3) {
170 if (putchar(ch
) == EOF
)
172 ch
= ((*p
<< 4) & 060) | ((p
[1] >> 4) & 017);
174 if (putchar(ch
) == EOF
)
176 ch
= ((p
[1] << 2) & 074) | ((p
[2] >> 6) & 03);
178 if (putchar(ch
) == EOF
)
182 if (putchar(ch
) == EOF
)
185 if (putchar('\n') == EOF
)
189 err(1, "read error.");
198 (void)fprintf(stderr
,
199 "usage: %s [-m] [inputfile] headername > encodedfile\n",