]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/uuencode/uuencode.c
pkgbase: examine METALOG files relative to stage root directory
[FreeBSD/FreeBSD.git] / usr.bin / uuencode / uuencode.c
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1983, 1993
5  *      The Regents of the University of California.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
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.
18  *
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
29  * SUCH DAMAGE.
30  */
31
32 #if 0
33 #ifndef lint
34 static const char copyright[] =
35 "@(#) Copyright (c) 1983, 1993\n\
36         The Regents of the University of California.  All rights reserved.\n";
37 #endif /* not lint */
38
39 #ifndef lint
40 static char sccsid[] = "@(#)uuencode.c  8.2 (Berkeley) 4/2/94";
41 #endif /* not lint */
42 #endif
43 #include <sys/cdefs.h>
44 __FBSDID("$FreeBSD$");
45
46 /*
47  * uuencode [input] output
48  *
49  * Encode a file so it can be mailed to a remote system.
50  */
51 #include <sys/param.h>
52 #include <sys/socket.h>
53 #include <sys/stat.h>
54
55 #include <netinet/in.h>
56
57 #include <err.h>
58 #include <libgen.h>
59 #include <resolv.h>
60 #include <stdio.h>
61 #include <stdbool.h>
62 #include <stdlib.h>
63 #include <string.h>
64 #include <unistd.h>
65
66 static void encode(void);
67 static void base64_encode(void);
68 static void usage(void);
69
70 static FILE *output;
71 static int mode;
72 static bool raw;
73 static char **av;
74
75 int
76 main(int argc, char *argv[])
77 {
78         struct stat sb;
79         bool base64;
80         int ch;
81         const char *outfile;
82
83         base64 = false;
84         outfile = NULL;
85
86         if (strcmp(basename(argv[0]), "b64encode") == 0)
87                 base64 = 1;
88
89         while ((ch = getopt(argc, argv, "mo:r")) != -1) {
90                 switch (ch) {
91                 case 'm':
92                         base64 = true;
93                         break;
94                 case 'o':
95                         outfile = optarg;
96                         break;
97                 case 'r':
98                         raw = true;
99                         break;
100                 case '?':
101                 default:
102                         usage();
103                 }
104         }
105         argv += optind;
106         argc -= optind;
107
108         switch (argc) {
109         case 2:                 /* optional first argument is input file */
110                 if (!freopen(*argv, "r", stdin) || fstat(fileno(stdin), &sb))
111                         err(1, "%s", *argv);
112 #define RWX     (S_IRWXU|S_IRWXG|S_IRWXO)
113                 mode = sb.st_mode & RWX;
114                 ++argv;
115                 break;
116         case 1:
117 #define RW      (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)
118                 mode = RW & ~umask(RW);
119                 break;
120         case 0:
121         default:
122                 usage();
123         }
124
125         av = argv;
126
127         if (outfile != NULL) {
128                 output = fopen(outfile, "w+");
129                 if (output == NULL)
130                         err(1, "unable to open %s for output", outfile);
131         } else
132                 output = stdout;
133         if (base64)
134                 base64_encode();
135         else
136                 encode();
137         if (ferror(output))
138                 errx(1, "write error");
139         exit(0);
140 }
141
142 /* ENC is the basic 1 character encoding function to make a char printing */
143 #define ENC(c) ((c) ? ((c) & 077) + ' ': '`')
144
145 /*
146  * Copy from in to out, encoding in base64 as you go along.
147  */
148 static void
149 base64_encode(void)
150 {
151         /*
152          * Output must fit into 80 columns, chunks come in 4, leave 1.
153          */
154 #define GROUPS  ((80 / 4) - 1)
155         unsigned char buf[3];
156         char buf2[sizeof(buf) * 2 + 1];
157         size_t n;
158         int rv, sequence;
159
160         sequence = 0;
161
162         if (!raw)
163                 fprintf(output, "begin-base64 %o %s\n", mode, *av);
164         while ((n = fread(buf, 1, sizeof(buf), stdin))) {
165                 ++sequence;
166                 rv = b64_ntop(buf, n, buf2, nitems(buf2));
167                 if (rv == -1)
168                         errx(1, "b64_ntop: error encoding base64");
169                 fprintf(output, "%s%s", buf2, (sequence % GROUPS) ? "" : "\n");
170         }
171         if (sequence % GROUPS)
172                 fprintf(output, "\n");
173         if (!raw)
174                 fprintf(output, "====\n");
175 }
176
177 /*
178  * Copy from in to out, encoding as you go along.
179  */
180 static void
181 encode(void)
182 {
183         int ch, n;
184         char *p;
185         char buf[80];
186
187         if (!raw)
188                 (void)fprintf(output, "begin %o %s\n", mode, *av);
189         while ((n = fread(buf, 1, 45, stdin))) {
190                 ch = ENC(n);
191                 if (fputc(ch, output) == EOF)
192                         break;
193                 for (p = buf; n > 0; n -= 3, p += 3) {
194                         /* Pad with nulls if not a multiple of 3. */
195                         if (n < 3) {
196                                 p[2] = '\0';
197                                 if (n < 2)
198                                         p[1] = '\0';
199                         }
200                         ch = *p >> 2;
201                         ch = ENC(ch);
202                         if (fputc(ch, output) == EOF)
203                                 break;
204                         ch = ((*p << 4) & 060) | ((p[1] >> 4) & 017);
205                         ch = ENC(ch);
206                         if (fputc(ch, output) == EOF)
207                                 break;
208                         ch = ((p[1] << 2) & 074) | ((p[2] >> 6) & 03);
209                         ch = ENC(ch);
210                         if (fputc(ch, output) == EOF)
211                                 break;
212                         ch = p[2] & 077;
213                         ch = ENC(ch);
214                         if (fputc(ch, output) == EOF)
215                                 break;
216                 }
217                 if (fputc('\n', output) == EOF)
218                         break;
219         }
220         if (ferror(stdin))
221                 errx(1, "read error");
222         if (!raw)
223                 (void)fprintf(output, "%c\nend\n", ENC('\0'));
224 }
225
226 static void
227 usage(void)
228 {
229         (void)fprintf(stderr,
230 "usage: uuencode [-m] [-o outfile] [infile] remotefile\n"
231 "       b64encode [-o outfile] [infile] remotefile\n");
232         exit(1);
233 }