summaryrefslogtreecommitdiff
path: root/usr.bin/uudecode/uudecode.c
blob: d1fd8dacb6f78b1aa92ca9886b8859835d15f379 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
/*	$NetBSD: uudecode.c,v 1.28 2013/01/28 19:50:30 apb Exp $	*/

/*-
 * Copyright (c) 1983, 1993
 *	The Regents of the University of California.  All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. Neither the name of the University nor the names of its contributors
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 */

/*
 * uudecode [file ...]
 *
 * create the specified file, decoding as you go.
 * used with uuencode.
 */
#include <sys/param.h>
#include <sys/stat.h>
#include <ctype.h>
#include <err.h>
#include <errno.h>
#include <limits.h>
#include <locale.h>
#include <pwd.h>
#include <stdio.h>
#include <bsd/stdlib.h>
#include <string.h>
#include <unistd.h>

static int decode(char *);
static void usage(void);
static int checkend(const char *, const char *, const char *);

static const char *inputname;

int
main(int argc, char *argv[])
{
	int ch, rval;
	char *outputname = NULL;

	setlocale(LC_ALL, "");
	setprogname(argv[0]);

	while ((ch = getopt(argc, argv, "mo:p")) != -1)
		switch (ch) {
		case 'o':
			outputname = optarg;
			break;
		case 'p':
			outputname = "/dev/stdout";
			break;
		default:
			usage();
		}
	argc -= optind;
	argv += optind;

	if (*argv) {
		rval = 0;
		do {
			if (!freopen(inputname = *argv, "r", stdin)) {
				warn("%s", *argv);
				rval = 1;
				continue;
			}
			rval |= decode(outputname);
		} while (*++argv);
	} else {
		inputname = "stdin";
		rval = decode(outputname);
	}
	exit(rval);
}

/*
 * Decode one file from stdin.  If outputname is not NULL
 * then it overrides the file name embedded in the input data.
 */
static int
decode(char *outputname)
{
	struct passwd *pw;
	int n;
	char ch, *p;
	int n1;
	long mode;
	char *fn;
	char buf[MAXPATHLEN];

	/* search for header line */
	for (;;) {
		if (!fgets(buf, sizeof(buf), stdin)) {
			warnx("%s: no \"%s\" line", inputname, "begin"); 
			return(1);
		}
		p = buf;
		if (strncmp(p, "begin", 5) == 0)  {
			p += 6;
			break;
		} else
			continue;
	} 

        /* must be followed by an octal mode and a space */
	mode = strtol(p, &fn, 8);
	if (fn == (p) || !isspace((unsigned char)*fn) || mode==LONG_MIN || mode==LONG_MAX)
	{
	        warnx("%s: invalid mode on \"%s\" line", inputname, "begin");
		return(1);
	}
	/* skip whitespace for file name */
	while (*fn && isspace((unsigned char)*fn)) fn++;
	if (*fn == 0) {
                warnx("%s: no filename on \"%s\" line", inputname, "begin");
		return(1);
	}
	/* zap newline */
	for (p = fn; *p && *p != '\n'; p++) 
	        ;
	if (*p) *p = 0;

	/* outputname overrides fn */
	if (outputname)
		fn = outputname;
	
	/* handle ~user/file format */
	if (*fn == '~') {
		if (!(p = strchr(fn, '/'))) {
			warnx("%s: illegal ~user.", inputname);
			return(1);
		}
		*p++ = '\0';
		if (!(pw = getpwnam(fn + 1))) {
			warnx("%s: no user %s.", inputname, buf);
			return(1);
		}
		n = strlen(pw->pw_dir);
		n1 = strlen(p);
		if (n + n1 + 2 > MAXPATHLEN) {
			warnx("%s: path too long.", inputname);
			return(1);
		}
		/* make space at beginning of buf by moving end of pathname */
		memmove(buf + n + 1, p, n1 + 1);
		memmove(buf, pw->pw_dir, n);
		buf[n] = '/';
		fn = buf;
	}

	if (strcmp(fn, "/dev/stdout") == 0 || strcmp(fn, "-") == 0) {
		/*
		 * POSIX.1-2008 says that both "-" and "/dev/stdout"
		 * refer to standard output when they appear in the file
		 * header, but only "/dev/stdout" refers to standard
		 * output when it appears as the argument to the "-o"
		 * command line option.
		 *
		 * We handle both special names, regardless of whether
		 * they came from the "-o" option or from the header of
		 * the input stream.
		 */
	} else {
		/*
		 * Create output file, and set its mode.  POSIX.1-2008
		 * requires the mode to be used exactly, ignoring the
		 * umask and anything else, but we mask it with 0666.
		 */
		if (freopen(fn, "w", stdout) == NULL ||
		    fchmod(fileno(stdout), mode & 0666) != 0) { 
			warn("%s: %s", fn, inputname);
			return(1);
		}
	}

	/* for each input line */
	for (;;) {
		if (!fgets(p = buf, sizeof(buf), stdin)) {
			warnx("%s: short file.", inputname);
			return(1);
		}
#define	DEC(c)	(((c) - ' ') & 077)		/* single character decode */
		/*
		* `n' is used to avoid writing out all the characters
		* at the end of the file.
		*/
		if ((n = DEC(*p)) <= 0)
			break;
		for (++p; n > 0; p += 4, n -= 3)
			if (n >= 3) {
				ch = DEC(p[0]) << 2 | DEC(p[1]) >> 4;
				putchar(ch);
				ch = DEC(p[1]) << 4 | DEC(p[2]) >> 2;
				putchar(ch);
				ch = DEC(p[2]) << 6 | DEC(p[3]);
				putchar(ch);
			}
			else {
				if (n >= 1) {
					ch = DEC(p[0]) << 2 | DEC(p[1]) >> 4;
					putchar(ch);
				}
				if (n >= 2) {
					ch = DEC(p[1]) << 4 | DEC(p[2]) >> 2;
					putchar(ch);
				}
				if (n >= 3) {
					ch = DEC(p[2]) << 6 | DEC(p[3]);
					putchar(ch);
				}
			}
	}
	if (!fgets(buf, sizeof(buf), stdin) || strcmp(buf, "end\n")) {
		warnx("%s: no \"end\" line.", inputname);
		return(1);
	}
	return(0);
}

static int
checkend(const char *ptr, const char *end, const char *msg)
{
	size_t n;

	n = strlen(end);
	if (strncmp(ptr, end, n) != 0 ||
	    strspn(ptr + n, "\t\r\n") != strlen(ptr + n)) {
		warnx("%s", msg); 
		return (1);
	}
	return (0);
}


static void
usage(void)
{
	(void)fprintf(stderr,
		      "usage: %s [-m] [-p | -o outfile] [encoded-file ...]\n",
		      getprogname());
	exit(1);
}