#ifndef lint
static const char copyright[] =
"@(#) Copyright (c) 1983, 1993\n\
The Regents of the University of California. All rights reserved.\n";
#endif
#ifndef lint
#if 0
static char sccsid[] = "@(#)uudecode.c 8.2 (Berkeley) 4/2/94";
#endif
static const char rcsid[] =
"$FreeBSD: src/usr.bin/uudecode/uudecode.c,v 1.13.2.3 2002/04/22 13:12:46 jmallett Exp $";
#endif
#ifdef __APPLE__
#include <get_compat.h>
#else
#define COMPAT_MODE(a,b) (1)
#endif
#include <sys/param.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <netinet/in.h>
#include <err.h>
#include <pwd.h>
#include <arpa/nameser.h>
#include <resolv.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
int b64_ntop __P((u_char const *, size_t, char *, size_t));
int b64_pton __P((char const *, u_char *, size_t));
const char *filename;
char *outfile;
int cflag, iflag, oflag, pflag, sflag;
static void usage(void);
int decode(void);
int decode2(int);
void base64_decode(const char *);
int
main(argc, argv)
int argc;
char *argv[];
{
int rval, ch;
while ((ch = getopt(argc, argv, "cio:ps")) != -1) {
switch(ch) {
case 'c':
if (oflag)
usage();
cflag = 1;
break;
case 'i':
iflag = 1;
break;
case 'o':
if (cflag || pflag || sflag)
usage();
oflag = 1;
sflag = 1;
outfile = optarg;
break;
case 'p':
if (oflag)
usage();
pflag = 1;
break;
case 's':
if (oflag)
usage();
sflag = 1;
break;
default:
usage();
}
}
argc -= optind;
argv += optind;
if (*argv) {
rval = 0;
do {
if (!freopen(filename = *argv, "r", stdin)) {
warn("%s", *argv);
rval = 1;
continue;
}
rval |= decode();
} while (*++argv);
} else {
filename = "stdin";
rval = decode();
}
exit(rval);
}
int
decode ()
{
int flag;
if (!cflag)
return(decode2(0));
for (flag = 0; ; flag++)
if (decode2(flag))
return(1);
else if (feof(stdin))
break;
return(0);
}
int
decode2(flag)
int flag;
{
struct passwd *pw;
register int n;
register char ch, *p;
int base64, ignore, n1;
char buf[MAXPATHLEN+1];
char buffn[MAXPATHLEN+1];
char *mode, *s;
void *mode_handle;
bool writeToStdout;
base64 = ignore = 0;
do {
if (!fgets(buf, sizeof(buf), stdin)) {
if (flag)
return(0);
warnx("%s: no \"begin\" line", filename);
return(1);
}
} while (strncmp(buf, "begin", 5) != 0);
if (strncmp(buf, "begin-base64", 12) == 0)
base64 = 1;
s = strtok(buf, " ");
if (s == NULL)
errx(1, "no mode or filename in input file");
s = strtok(NULL, " ");
if (s == NULL)
errx(1, "no mode in input file");
else {
mode = strdup(s);
if (mode == NULL)
err(1, "strdup()");
}
if (!oflag) {
outfile = strtok(NULL, "\r\n");
if (outfile == NULL)
errx(1, "no filename in input file");
}
writeToStdout = pflag || (strcmp(outfile, "/dev/stdout") == 0 );
if (strlcpy(buf, outfile, sizeof(buf)) >= sizeof(buf))
errx(1, "%s: filename too long", outfile);
if (!sflag && !writeToStdout) {
strlcpy(buffn, buf, sizeof(buffn));
if (strrchr(buffn, '/') != NULL)
strncpy(buf, strrchr(buffn, '/') + 1, sizeof(buf));
if (buf[0] == '\0') {
warnx("%s: illegal filename", buffn);
return(1);
}
if (buf[0] == '~') {
if (!(p = index(buf, '/'))) {
warnx("%s: illegal ~user", filename);
return(1);
}
*p++ = '\0';
if (!(pw = getpwnam(buf + 1))) {
warnx("%s: no user %s", filename, buf);
return(1);
}
n = strlen(pw->pw_dir);
n1 = strlen(p);
if (n + n1 + 2 > MAXPATHLEN) {
warnx("%s: path too long", filename);
return(1);
}
bcopy(p, buf + n + 1, n1 + 1);
bcopy(pw->pw_dir, buf, n);
buf[n] = '/';
}
}
if (!writeToStdout) {
int newmode;
mode_handle = setmode(mode);
if (mode_handle == NULL)
err(1, "setmode()");
newmode = getmode(mode_handle, 0);
if (!COMPAT_MODE("bin/uudecode", "Unix2003")) {
newmode &= 0666; }
if (iflag && !access(buf, F_OK)) {
(void)fprintf(stderr, "not overwritten: %s\n", buf);
ignore++;
} else if (!freopen(buf, "w", stdout) || fchmod(fileno(stdout), newmode)) {
if (COMPAT_MODE("bin/uudecode", "Unix2003")) {
if (EPERM != errno) {
warn("%s: %s", buf, filename);
return(1);
}
} else {
warn("%s: %s", buf, filename);
return(1);
}
}
free(mode_handle);
free(mode);
}
strcpy(buffn, buf);
next:
for (;;) {
if (!fgets(p = buf, sizeof(buf), stdin)) {
warnx("%s: short file", filename);
return(1);
}
if (base64) {
if (strncmp(buf, "====", 4) == 0)
return (0);
base64_decode(buf);
goto next;
}
#define DEC(c) (((c) - ' ') & 077)
#define IS_DEC(c) ( (((c) - ' ') >= 0) && (((c) - ' ') <= 077 + 1) )
#define OUT_OF_RANGE \
{ \
warnx( \
"\n\tinput file: %s\n\tencoded file: %s\n\tcharacter out of range: [%d-%d]", \
filename, buffn, 1 + ' ', 077 + ' ' + 1); \
return(1); \
}
#define PUTCHAR(c) \
if (!ignore) \
putchar(c)
if ((n = DEC(*p)) <= 0)
break;
for (++p; n > 0; p += 4, n -= 3)
if (n >= 3) {
if (!(IS_DEC(*p) && IS_DEC(*(p + 1)) &&
IS_DEC(*(p + 2)) && IS_DEC(*(p + 3))))
OUT_OF_RANGE
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) {
if (!(IS_DEC(*p) && IS_DEC(*(p + 1))))
OUT_OF_RANGE
ch = DEC(p[0]) << 2 | DEC(p[1]) >> 4;
PUTCHAR(ch);
}
if (n >= 2) {
if (!(IS_DEC(*(p + 1)) &&
IS_DEC(*(p + 2))))
OUT_OF_RANGE
ch = DEC(p[1]) << 4 | DEC(p[2]) >> 2;
PUTCHAR(ch);
}
if (n >= 3) {
if (!(IS_DEC(*(p + 2)) &&
IS_DEC(*(p + 3))))
OUT_OF_RANGE
ch = DEC(p[2]) << 6 | DEC(p[3]);
PUTCHAR(ch);
}
}
}
if (fgets(buf, sizeof(buf), stdin) == NULL ||
(strcmp(buf, "end") && strcmp(buf, "end\n") &&
strcmp(buf, "end\r\n"))) {
warnx("%s: no \"end\" line", filename);
return(1);
}
return(0);
}
void
base64_decode(stream)
const char *stream;
{
unsigned char out[MAXPATHLEN * 4];
int rv;
if (index(stream, '\r') != NULL)
*index(stream, '\r') = '\0';
if (index(stream, '\n') != NULL)
*index(stream, '\n') = '\0';
rv = b64_pton(stream, out, (sizeof(out) / sizeof(out[0])));
if (rv == -1)
errx(1, "b64_pton: error decoding base64 input stream");
fwrite(out, 1, rv, stdout);
}
static void
usage()
{
(void)fprintf(stderr, "usage: uudecode [-cips] [file ...]\n");
(void)fprintf(stderr, "usage: uudecode [-i] -o output_file [file]\n");
exit(1);
}