View | Details | Raw Unified
Collapse All | Expand All

(-) netkit-ftp-old/ChangeLog (+3 lines)
 Lines 1-3    Link Here 
28-Nov-2000:
	IPv6 support. (Hiroyuki YAMAMORI <h-yamamo@db3.so-net.ne.jp>)
8-Jul-2000:
8-Jul-2000:
	Fix misused printf-function call (not %n-exploitable though).
	Fix misused printf-function call (not %n-exploitable though).
(-) netkit-ftp-old/configure (+42 lines)
 Lines 24-29    Link Here 
    --binmode=mode        Mode for binaries [755]
    --binmode=mode        Mode for binaries [755]
    --manmode=mode        Mode for manual pages [644]
    --manmode=mode        Mode for manual pages [644]
    --with-c-compiler=cc  Program for compiling C source [guessed]
    --with-c-compiler=cc  Program for compiling C source [guessed]
    --enable-ipv6         Enable IPv6 support
EOF
EOF
	exit 0;;
	exit 0;;
	--verbose) ;;
	--verbose) ;;
 Lines 39-44    Link Here 
	--manmode=*) MANMODE=`echo $1 | sed 's/^[^=]*=//'` ;;
	--manmode=*) MANMODE=`echo $1 | sed 's/^[^=]*=//'` ;;
	--with-c-compiler=*) CC=`echo $1 | sed 's/^[^=]*=//'` ;;
	--with-c-compiler=*) CC=`echo $1 | sed 's/^[^=]*=//'` ;;
	--without-readline|--disable-readline) WITHOUT_READLINE=1;;
	--without-readline|--disable-readline) WITHOUT_READLINE=1;;
	--disable-ipv6) ENABLE_IPV6=no;;
	--enable-ipv6=*) ENABLE_IPV6=`echo $1 | sed 's/^[^=]*=//'`;;
	--enable-ipv6) ENABLE_IPV6=yes;;
	*) echo "Unrecognized option: $1"; exit 1;;
	*) echo "Unrecognized option: $1"; exit 1;;
esac 
esac 
shift
shift
 Lines 146-151    Link Here 
rm -f __conftest*
rm -f __conftest*
##################################################
##################################################
## Enable IPv6
echo -n "Whether to enable IPv6 support... "
if [ x"$ENABLE_IPV6" = x"yes" ]; then
    echo yes
    CFLAGS="$CFLAGS -DINET6"
else
    echo no
fi
rm -f __conftest*
## Search IPv6 Library / Headers
if [ x"$ENABLE_IPV6" = x"yes" ]; then
    echo -n "Search for IPv6 library... "
    inet6libdirs="/usr/local/v6/lib /usr/local/lib /usr /usr/inet6/lib"
    inet6libs="inet6"
    inet6found=no
    for inet6libdir in $inet6libdirs; do
        for inet6lib in $inet6libs; do
            if [ -d $inet6libdir ] && [ -f $inet6libdir/lib$inet6lib.a ]; then
                inet6found=yes
                break 2
            fi
        done
    done
    if [ x"$inet6found" = x"yes" ]; then
        echo "$inet6libdir/lib$inet6lib.a"
        LIBS="$LIBS -L$inet6libdir -l$inet6lib"
    else
        echo "not found"
    fi
fi
rm -f __conftest*
##################################################
echo -n 'Checking for BSD signal semantics... '
echo -n 'Checking for BSD signal semantics... '
cat <<EOF >__conftest.c
cat <<EOF >__conftest.c
(-) netkit-ftp-old/ftp/Makefile (+3 lines)
 Lines 19-28    Link Here 
cmds.o glob.o: glob.h
cmds.o glob.o: glob.h
install: ftp
install: ftp
	install -d $(INSTALLROOT)$(BINDIR)
	install -s -m$(BINMODE) ftp $(INSTALLROOT)$(BINDIR)
	install -s -m$(BINMODE) ftp $(INSTALLROOT)$(BINDIR)
	ln -sf ftp $(INSTALLROOT)$(BINDIR)/pftp
	ln -sf ftp $(INSTALLROOT)$(BINDIR)/pftp
	install -d $(INSTALLROOT)$(MANDIR)/man1
	install -m$(MANMODE) ftp.1 $(INSTALLROOT)$(MANDIR)/man1
	install -m$(MANMODE) ftp.1 $(INSTALLROOT)$(MANDIR)/man1
	ln -sf ftp.1 $(INSTALLROOT)$(MANDIR)/man1/pftp.1
	ln -sf ftp.1 $(INSTALLROOT)$(MANDIR)/man1/pftp.1
	install -d $(INSTALLROOT)$(MANDIR)/man5
	install -m$(MANMODE) netrc.5 $(INSTALLROOT)$(MANDIR)/man5
	install -m$(MANMODE) netrc.5 $(INSTALLROOT)$(MANDIR)/man5
clean:
clean:
(-) netkit-ftp-old/ftp/cmds.c (-10 / +7 lines)
 Lines 1-3    Link Here 
/* $USAGI$ */
/*
/*
 * Copyright (c) 1985, 1989 Regents of the University of California.
 * Copyright (c) 1985, 1989 Regents of the University of California.
 * All rights reserved.
 * All rights reserved.
 Lines 190-196    Link Here 
setpeer(int argc, char *argv[])
setpeer(int argc, char *argv[])
{
{
	char *host;
	char *host;
	unsigned short port;
	char *port;
	if (connected) {
	if (connected) {
		printf("Already connected to %s, use close first.\n",
		printf("Already connected to %s, use close first.\n",
 Lines 205-211    Link Here 
		code = -1;
		code = -1;
		return;
		return;
	}
	}
	port = ftp_port;
	port = NULL;
	if (argc > 2) {
	if (argc > 2) {
#ifdef USE_SSL
#ifdef USE_SSL
                /* not really an SSL enhancement but something that
                /* not really an SSL enhancement but something that
 Lines 233-252    Link Here 
		    }
		    }
		} else 
		} else 
#endif /* USE_SSL */
#endif /* USE_SSL */
		port = atoi(argv[2]);
		port = argv[2];
		if (port < 1) {
			printf("%s: bad port number-- %s\n", argv[1], argv[2]);
			printf ("usage: %s host-name [port]\n", argv[0]);
			code = -1;
			return;
		}
		port = htons(port);
	}
	}
	host = hookup(argv[1], port);
	host = hookup(argv[1], port);
	if (host) {
	if (host) {
		int overbose;
		int overbose;
		connected = 1;
		connected = 1;
		try_epsv = 1;
		try_eprt = 1;
		/*
		/*
		 * Set up defaults for FTP.
		 * Set up defaults for FTP.
		 */
		 */
(-) netkit-ftp-old/ftp/ftp.c (-96 / +394 lines)
 Lines 10-15    Link Here 
 *
 *
 */
 */
/* $USAGI$ */
 
/*
 * Copyright (C) 1997 and 1998 WIDE Project.
 * 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 project 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 PROJECT 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 PROJECT 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.
*/
/*
/*
 * Copyright (c) 1985, 1989 Regents of the University of California.
 * Copyright (c) 1985, 1989 Regents of the University of California.
 * All rights reserved.
 * All rights reserved.
 Lines 75-88    Link Here 
#include "ftp_var.h"
#include "ftp_var.h"
#include "cmds.h"
#include "cmds.h"
#ifdef _USAGI
#include "version.h"
#else
#include "../version.h"
#include "../version.h"
#endif
union sockunion {
	struct sockinet {
		u_short	si_family;
		u_short	si_port;
	} su_si;
	struct	sockaddr		su_sa;
	struct	sockaddr_in  		su_sin;
#ifdef INET6
	struct	sockaddr_in6 		su_sin6;
#endif
};
#define	su_family	su_sa.sa_family
#define	su_port		su_si.si_port
#ifdef INET6
#define ex_af2prot(a) (a == AF_INET ? 1 : (a == AF_INET6 ? 2 : 0))
#else
#define ex_af2prot(a) (a == AF_INET ? 1 : 0)
#endif
int data = -1;
int data = -1;
off_t restart_point = 0;
off_t restart_point = 0;
static struct sockaddr_in hisctladdr;
static union sockunion hisctladdr;
static struct sockaddr_in data_addr;
static union sockunion data_addr;
static struct sockaddr_in myctladdr;
static union sockunion myctladdr;
static int ptflag = 0;
static int ptflag = 0;
static sigjmp_buf recvabort;
static sigjmp_buf recvabort;
static sigjmp_buf sendabort;
static sigjmp_buf sendabort;
 Lines 119-197    Link Here 
static FILE *dataconn(const char *);
static FILE *dataconn(const char *);
char *
char *
hookup(char *host, int port)
hookup(const char *host, const char *port)
{
{
	register struct hostent *hp = 0;
	int s, tos, error;
	int s, tos;
	socklen_t len;
	socklen_t len;
	static char hostnamebuf[256];
	static char hostnamebuf[256];
	struct addrinfo hints, *res, *res0;
	char hbuf[MAXHOSTNAMELEN], pbuf[NI_MAXSERV];
	char *cause = "ftp: unknown";
	if (port) {
		strncpy(pbuf, port, sizeof(pbuf) - 1);
		pbuf[sizeof(pbuf) - 1] = '\0';
	} else {
		sprintf(pbuf, "%d", ntohs(ftp_port));
	}
	memset(&hisctladdr, 0, sizeof(hisctladdr));
	memset(&hisctladdr, 0, sizeof(hisctladdr));
	if (inet_aton(host, &hisctladdr.sin_addr)) {
	memset(&hints, 0, sizeof(hints));
		hisctladdr.sin_family = AF_INET;
	hints.ai_flags = AI_CANONNAME;
		strncpy(hostnamebuf, host, sizeof(hostnamebuf));
	hints.ai_socktype = SOCK_STREAM;
		hostnamebuf[sizeof(hostnamebuf)-1]=0;
	error = getaddrinfo(host, pbuf, &hints, &res0);
	} 
	if (error) {
	else {
		if (port) {
		hp = gethostbyname(host);
			strcpy(hbuf, " ");
		if (hp == NULL) {
		} else {
			fprintf(stderr, "ftp: %s: ", host);
			hbuf[0] = '\0';
			herror((char *)NULL);
			pbuf[0] = '\0';
			code = -1;
			return((char *) 0);
		}
		}
		hisctladdr.sin_family = hp->h_addrtype;
		fprintf(stderr, "ftp: %s%s%s: %s\n", host, hbuf, pbuf,
		if (hp->h_length > (int)sizeof(hisctladdr.sin_addr)) {
						gai_strerror(error));
			hp->h_length = sizeof(hisctladdr.sin_addr);
		}
		memcpy(&hisctladdr.sin_addr, hp->h_addr_list[0], hp->h_length);
		(void) strncpy(hostnamebuf, hp->h_name, sizeof(hostnamebuf));
		hostnamebuf[sizeof(hostnamebuf)-1] = 0;
	}
	hostname = hostnamebuf;
	s = socket(hisctladdr.sin_family, SOCK_STREAM, 0);
	if (s < 0) {
		perror("ftp: socket");
		code = -1;
		code = -1;
		return (0);
		return (0);
	}
	}
	hisctladdr.sin_port = port;
	while (connect(s, (struct sockaddr *)&hisctladdr, sizeof (hisctladdr)) < 0) {
	if (res0->ai_canonname) {
		if (hp && hp->h_addr_list[1]) {
		struct addrinfo h, *a;
			int oerrno = errno;
		memset(&h, 0, sizeof(h));
		h.ai_family = PF_UNSPEC;
			fprintf(stderr, "ftp: connect to address %s: ",
		h.ai_socktype = SOCK_STREAM;
				inet_ntoa(hisctladdr.sin_addr));
		h.ai_flags = AI_NUMERICHOST;
			errno = oerrno;
		if (!getaddrinfo(res0->ai_canonname, NULL, &h, &a)) {
			perror((char *) 0);
			strncpy(hostnamebuf, res0->ai_canonname, sizeof(hostnamebuf));
			hp->h_addr_list++;
			freeaddrinfo(a);
			memcpy(&hisctladdr.sin_addr, hp->h_addr_list[0], 
		} else
			       hp->h_length);
			strncpy(hostnamebuf, host, sizeof(hostnamebuf));
			fprintf(stdout, "Trying %s...\n",
	}
				inet_ntoa(hisctladdr.sin_addr));
	else
			(void) close(s);
		strncpy(hostnamebuf, host, sizeof(hostnamebuf));
			s = socket(hisctladdr.sin_family, SOCK_STREAM, 0);
	hostnamebuf[sizeof(hostnamebuf) - 1] = '\0';
			if (s < 0) {
	hostname = hostnamebuf;
				perror("ftp: socket");
	
				code = -1;
	s = -1;
				return (0);
	for (res = res0; res; res = res->ai_next) {
			}
		if (!ex_af2prot(res->ai_family)) {
			cause = "ftp: mismatch address family";
			errno = EPROTONOSUPPORT;
			continue;
		}
		if ((size_t)res->ai_addrlen > sizeof(hisctladdr)) {
			cause = "ftp: mismatch struct sockaddr size";
			errno = EPROTO;
			continue;
		}
		if (getnameinfo(res->ai_addr, res->ai_addrlen,
				hbuf, sizeof(hbuf), NULL, 0,
				NI_NUMERICHOST))
			strcpy(hbuf, "???");
		if (res0->ai_next)	/* if we have multiple possibilities */
			fprintf(stdout, "Trying %s...\n", hbuf);
		s = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
		if (s < 0) {
			cause = "ftp: socket";
			continue;
		}
		while ((error = connect(s, res->ai_addr, res->ai_addrlen)) < 0
				&& errno == EINTR) {
			;
		}
		if (error) {
			/* this "if" clause is to prevent print warning twice */
			if (res->ai_next) {
				fprintf(stderr,
					"ftp: connect to address %s\n", hbuf);
				perror("");
			}
			cause = "ftp: connect";
			close(s);
			s = -1;
			continue;
			continue;
		}
		}
		perror("ftp: connect");
		/* finally we got one */
		break;
	}
	if (s < 0) {
		perror(cause);
		code = -1;
		code = -1;
		goto bad;
		freeaddrinfo(res0);
		return NULL;
	}
	}
	len = sizeof (myctladdr);
	len = res->ai_addrlen;
	memcpy(&hisctladdr, res->ai_addr, len);
	freeaddrinfo(res0);
	if (getsockname(s, (struct sockaddr *)&myctladdr, &len) < 0) {
	if (getsockname(s, (struct sockaddr *)&myctladdr, &len) < 0) {
		perror("ftp: getsockname");
		perror("ftp: getsockname");
		code = -1;
		code = -1;
		goto bad;
		goto bad;
	}
	}
#ifdef IP_TOS
#ifdef IP_TOS
	if (hisctladdr.su_family == AF_INET)
	{
	tos = IPTOS_LOWDELAY;
	tos = IPTOS_LOWDELAY;
	if (setsockopt(s, IPPROTO_IP, IP_TOS, (char *)&tos, sizeof(int)) < 0)
	if (setsockopt(s, IPPROTO_IP, IP_TOS, (char *)&tos, sizeof(int)) < 0)
		perror("ftp: setsockopt TOS (ignored)");
		perror("ftp: setsockopt TOS (ignored)");
	}
#endif
#endif
	cin = fdopen(s, "r");
	cin = fdopen(s, "r");
	cout = fdopen(s, "w");
	cout = fdopen(s, "w");
 Lines 205-211    Link Here 
		goto bad;
		goto bad;
	}
	}
	if (verbose)
	if (verbose)
		printf("Connected to %s.\n", hostname);
		printf("Connected to %s (%s).\n", hostname, hbuf);
	if (getreply(0) > 2) { 	/* read startup message from server */
	if (getreply(0) > 2) { 	/* read startup message from server */
		if (cin)
		if (cin)
			(void) fclose(cin);
			(void) fclose(cin);
 Lines 442-449    Link Here 
			}
			}
			if (dig < 4 && isdigit(c))
			if (dig < 4 && isdigit(c))
				code = code * 10 + (c - '0');
				code = code * 10 + (c - '0');
			if (!pflag && code == 227)
			if (!pflag && (code == 227 || code == 228))
				pflag = 1;
				pflag = 1;
			else if (!pflag && code == 229)
				pflag = 100;
			if (dig > 4 && pflag == 1 && isdigit(c))
			if (dig > 4 && pflag == 1 && isdigit(c))
				pflag = 2;
				pflag = 2;
			if (pflag == 2) {
			if (pflag == 2) {
 Lines 455-460    Link Here 
					pflag = 3;
					pflag = 3;
				}
				}
			}
			}
			if (pflag == 100 && c == '(')
				pflag = 2;
			if (dig == 4 && c == '-') {
			if (dig == 4 && c == '-') {
				if (continuation)
				if (continuation)
					code = 0;
					code = 0;
 Lines 1207-1221    Link Here 
static int
static int
initconn(void)
initconn(void)
{
{
	register char *p, *a;
	u_char *p, *a;
	int result, tmpno = 0;
	int result, tmpno = 0;
	socklen_t len;
	socklen_t len;
	int on = 1;
	int on = 1;
	int tos;
	int tos, error = 0;
	u_long a1,a2,a3,a4,p1,p2;
	u_int ad[16], po[2], af, alen, plen;
	char *pasvcmd = NULL;
	char hbuf[MAXHOSTNAMELEN], pbuf[NI_MAXSERV];
#ifdef INET6
	if (myctladdr.su_family == AF_INET6
	 && (IN6_IS_ADDR_LINKLOCAL(&myctladdr.su_sin6.sin6_addr)
	  || IN6_IS_ADDR_SITELOCAL(&myctladdr.su_sin6.sin6_addr))) {
		fprintf(stderr, "use of scoped address can be troublesome\n");
	}
#endif
	if (passivemode) {
	if (passivemode) {
		data = socket(AF_INET, SOCK_STREAM, 0);
		data_addr = hisctladdr;
		data = socket(data_addr.su_family, SOCK_STREAM, 0);
		if (data < 0) {
		if (data < 0) {
			perror("ftp: socket");
			perror("ftp: socket");
			return(1);
			return(1);
 Lines 1224-1254    Link Here 
		    setsockopt(data, SOL_SOCKET, SO_DEBUG, (char *)&on,
		    setsockopt(data, SOL_SOCKET, SO_DEBUG, (char *)&on,
			       sizeof (on)) < 0)
			       sizeof (on)) < 0)
			perror("ftp: setsockopt (ignored)");
			perror("ftp: setsockopt (ignored)");
		if (command("PASV") != COMPLETE) {
		switch (data_addr.su_family) {
		case AF_INET:
#if 0
			if (try_epsv) {
				result = command(pasvcmd = "EPSV 1");
				if (code / 10 == 22 && code != 229) {
					fprintf(stderr,
				  "wrong server: return code must be 229\n");
					result = COMPLETE + 1;
				}
			} else {
#endif
			result = COMPLETE + 1;
			if (result != COMPLETE) {
				try_epsv = 0;
				result = command(pasvcmd = "PASV");
			}
			break;
#ifdef INET6
		case AF_INET6:
			if (try_epsv) {
				result = command(pasvcmd = "EPSV 2");
				if (code / 10 == 22 && code != 229) {
					fprintf(stderr,
				  "wrong server: return code must be 229\n");
					result = COMPLETE + 1;
				}
			} else {
				result = COMPLETE + 1;
			}
			if (result != COMPLETE) {
				try_epsv = 0;
				result = command(pasvcmd = "LPSV");
			}
			break;
#endif
		default:
			result = COMPLETE + 1;
			break;
		}
		if (result != COMPLETE) {
			printf("Passive mode refused.\n");
			printf("Passive mode refused.\n");
			return(1);
			goto bad;
		}
		}
#define pack2(var) \
	(((var[0] & 0xff) << 8) | ((var[1] & 0xff) << 0))
#define pack4(var) \
	((((var)[0] & 0xff) << 24) | (((var)[1] & 0xff) << 16) | \
	 (((var)[2] & 0xff) << 8) | (((var)[3] & 0xff) << 0))
		/*
		/*
		 * What we've got at this point is a string of comma separated
		 * What we've got at this point is a string of comma separated
		 * one-byte unsigned integer values, separated by commas.
		 * one-byte unsigned integer values, separated by commas.
		 * The first four are the an IP address. The fifth is the MSB
		 * of the port number, the sixth is the LSB. From that we'll
		 * prepare a sockaddr_in.
		 */
		 */
		error = 0;
		if (sscanf(pasv,"%ld,%ld,%ld,%ld,%ld,%ld",
		if (strcmp(pasvcmd, "PASV") == 0) {
			   &a1,&a2,&a3,&a4,&p1,&p2)
			if (data_addr.su_family != AF_INET) {
		    != 6) 
				error = 2;
		{
				goto psv_done;
			printf("Passive mode address scan failure. Shouldn't happen!\n");
			}
			return(1);
			if (code / 10 == 22 && code != 227) {
				error = 227;
				goto psv_done;
			}
			if (sscanf(pasv, "%u,%u,%u,%u,%u,%u",
					&ad[0], &ad[1], &ad[2], &ad[3],
					&po[0], &po[1]) != 6) {
				error = 1;
				goto psv_done;
			}
			data_addr.su_sin.sin_addr.s_addr = htonl(pack4(ad));
			data_addr.su_port = htons(pack2(po));
		} else
		    if (strcmp(pasvcmd, "LPSV") == 0) {
			if (code / 10 == 22 && code != 228) {
				error = 228;
				goto psv_done;
			}
			switch (data_addr.su_family) {
			case AF_INET:
				if (sscanf(pasv, "%u,%u,%u,%u,%u,%u,%u,%u,%u",
						&af, &alen,
						&ad[0], &ad[1], &ad[2], &ad[3],
						&plen, &po[0], &po[1]) != 9) {
					error = 1;
					goto psv_done;
				}
				if (af != 4 || alen != 4 || plen != 2) {
					error = 2;
					goto psv_done;
				}
				data_addr.su_sin.sin_addr.s_addr =
							htonl(pack4(ad));
				data_addr.su_port = htons(pack2(po));
				break;
#ifdef INET6
			case AF_INET6:
				if (sscanf(pasv,
	"%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u",
				  &af, &alen,
				  &ad[0], &ad[1], &ad[2], &ad[3],
				  &ad[4], &ad[5], &ad[6], &ad[7],
				  &ad[8], &ad[9], &ad[10], &ad[11],
				  &ad[12], &ad[13], &ad[14], &ad[15],
				  &plen, &po[0], &po[1]) != 21) {
					error = 1;
					goto psv_done;
				}
				if (af != 6 || alen != 16 || plen != 2) {
					error = 2;
					goto psv_done;
				}
				data_addr.su_sin6.sin6_addr.s6_addr32[0] =
							htonl(pack4(ad));
				data_addr.su_sin6.sin6_addr.s6_addr32[1] =
							htonl(pack4(ad+4));
				data_addr.su_sin6.sin6_addr.s6_addr32[2] =
							htonl(pack4(ad+8));
				data_addr.su_sin6.sin6_addr.s6_addr32[3] =
							htonl(pack4(ad+12));
				data_addr.su_port = htons(pack2(po));
				break;
#endif
			default:
				error = 1;
			}
		} else if (strncmp(pasvcmd, "EPSV", 4) == 0) {
			char delim[4];
			u_int epsvpo;
			if (code / 10 == 22 && code != 229) {
				error = 229;
				goto psv_done;
			}
			if (sscanf(pasv, "%c%c%c%u%c", &delim[0], &delim[1],
					&delim[2], &epsvpo, &delim[3]) != 5) {
				error = 1;
				goto psv_done;
			}
			if (delim[0] != delim[1] || delim[0] != delim[2]
			 || delim[0] != delim[3]) {
				error = 1;
				goto psv_done;
			}
			data_addr.su_port = htons(epsvpo);
		} else {
			error = 1;
		}
psv_done:
		switch (error) {
		case 0:
			break;
		case 1:
			fprintf(stderr,
		  "Passive mode address scan failure. Shouldn't happen!\n");
			goto bad;
		case 2:
			fprintf(stderr,
			  "Passive mode AF mismatch. Shouldn't happen!\n");
			goto bad;
		case 227:
		case 228:
		case 229:
			fprintf(stderr,
			  "wrong server: return code must be %d\n", error);
			goto bad;
		default:
			fprintf(stderr, "Bug\n");
		}
		}
		data_addr.sin_family = AF_INET;
		data_addr.sin_addr.s_addr = htonl((a1 << 24) | (a2 << 16) |
						  (a3 << 8) | a4);
		data_addr.sin_port = htons((p1 << 8) | p2);
		if (connect(data, (struct sockaddr *) &data_addr,
		if (connect(data, (struct sockaddr *) &data_addr,
		    sizeof(data_addr))<0) {
		    sizeof(data_addr))<0) {
 Lines 1256-1275    Link Here 
			return(1);
			return(1);
		}
		}
#ifdef IP_TOS
#ifdef IP_TOS
		if (data_addr.su_family == AF_INET)
		{
		tos = IPTOS_THROUGHPUT;
		tos = IPTOS_THROUGHPUT;
		if (setsockopt(data, IPPROTO_IP, IP_TOS, (char *)&tos,
		if (setsockopt(data, IPPROTO_IP, IP_TOS, (char *)&tos,
		    sizeof(tos)) < 0)
		    sizeof(tos)) < 0)
			perror("ftp: setsockopt TOS (ignored)");
			perror("ftp: setsockopt TOS (ignored)");
		}
#endif
#endif
		return(0);
		return(0);
	}
	}
noport:
noport:
	data_addr = myctladdr;
	data_addr = myctladdr;
	if (sendport)
	if (sendport)
		data_addr.sin_port = 0;	/* let system pick one */ 
		data_addr.su_port = 0;	/* let system pick one */ 
	if (data != -1)
	if (data != -1)
		(void) close(data);
		(void) close(data);
	data = socket(AF_INET, SOCK_STREAM, 0);
	data = socket(data_addr.su_family, SOCK_STREAM, 0);
	if (data < 0) {
	if (data < 0) {
		perror("ftp: socket");
		perror("ftp: socket");
		if (tmpno)
		if (tmpno)
 Lines 1296-1308    Link Here 
	if (listen(data, 1) < 0)
	if (listen(data, 1) < 0)
		perror("ftp: listen");
		perror("ftp: listen");
	if (sendport) {
	if (sendport) {
		a = (char *)&data_addr.sin_addr;
		af = ex_af2prot(data_addr.su_family);
		p = (char *)&data_addr.sin_port;
		if (try_eprt && af > 1) {      /* only IPv6 */
#define	UC(b)	(((int)b)&0xff)
			if (getnameinfo((struct sockaddr *)&data_addr, len,
		result =
					hbuf, sizeof(hbuf), pbuf, sizeof(pbuf),
		    command("PORT %d,%d,%d,%d,%d,%d",
					NI_NUMERICHOST | NI_NUMERICSERV) == 0) {
		      UC(a[0]), UC(a[1]), UC(a[2]), UC(a[3]),
				result = command("EPRT |%d|%s|%s|",
		      UC(p[0]), UC(p[1]));
							af, hbuf, pbuf);
				if (result != COMPLETE) {
					try_eprt = 0;
				}
			} else {
				result = ERROR;
			}
		} else {
			result = COMPLETE + 1;
		}
		if (result == COMPLETE)
			goto prt_done;
		p = (u_char *)&data_addr.su_port;
		switch (data_addr.su_family) {
		case AF_INET:
			a = (u_char *)&data_addr.su_sin.sin_addr;
			result = command("PORT %u,%u,%u,%u,%u,%u",
				a[0], a[1], a[2], a[3], p[0], p[1]);
			break;
#ifdef INET6
		case AF_INET6:
			a = (u_char *)&data_addr.su_sin6.sin6_addr;
			result = command(
	"LPRT 6,16,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,2,%d,%d",
				a[0], a[1], a[2], a[3], a[4], a[5], a[6], a[7],
				a[8], a[9],a[10],a[11],a[12],a[13],a[14],a[15],
				p[0], p[1]);
			break;
#endif
		default:
			result = COMPLETE + 1; /* xxx */
		}
	prt_done:
		if (result == ERROR && sendport == -1) {
		if (result == ERROR && sendport == -1) {
			sendport = 0;
			sendport = 0;
			tmpno = 1;
			tmpno = 1;
 Lines 1313-1321    Link Here 
	if (tmpno)
	if (tmpno)
		sendport = 1;
		sendport = 1;
#ifdef IP_TOS
#ifdef IP_TOS
	if (data_addr.su_family == AF_INET)
	{
	on = IPTOS_THROUGHPUT;
	on = IPTOS_THROUGHPUT;
	if (setsockopt(data, IPPROTO_IP, IP_TOS, (char *)&on, sizeof(int)) < 0)
	if (setsockopt(data, IPPROTO_IP, IP_TOS, (char *)&on, sizeof(int)) < 0)
		perror("ftp: setsockopt TOS (ignored)");
		perror("ftp: setsockopt TOS (ignored)");
	}
#endif
#endif
	return (0);
	return (0);
bad:
bad:
 Lines 1328-1334    Link Here 
static FILE *
static FILE *
dataconn(const char *lmode)
dataconn(const char *lmode)
{
{
	struct sockaddr_in from;
	union sockunion from;
	int s, tos;
	int s, tos;
	socklen_t fromlen = sizeof(from);
	socklen_t fromlen = sizeof(from);
	int ret;
	int ret;
 Lines 1345-1353    Link Here 
	(void) close(data);
	(void) close(data);
	data = s;
	data = s;
#ifdef IP_TOS
#ifdef IP_TOS
	if (from.su_family == AF_INET)
	{
	tos = IPTOS_THROUGHPUT;
	tos = IPTOS_THROUGHPUT;
	if (setsockopt(s, IPPROTO_IP, IP_TOS, (char *)&tos, sizeof(int)) < 0)
	if (setsockopt(s, IPPROTO_IP, IP_TOS, (char *)&tos, sizeof(int)) < 0)
		perror("ftp: setsockopt TOS (ignored)");
		perror("ftp: setsockopt TOS (ignored)");
	}
#endif
#endif
#ifdef USE_SSL
#ifdef USE_SSL
 Lines 1470-1477    Link Here 
	static struct comvars {
	static struct comvars {
		int connect;
		int connect;
		char name[MAXHOSTNAMELEN];
		char name[MAXHOSTNAMELEN];
		struct sockaddr_in mctl;
		union sockunion mctl;
		struct sockaddr_in hctl;
		union sockunion hctl;
		FILE *in;
		FILE *in;
		FILE *out;
		FILE *out;
		int tpe;
		int tpe;
 Lines 1509-1515    Link Here 
	connected = op->connect;
	connected = op->connect;
	if (hostname) {
	if (hostname) {
		(void) strncpy(ip->name, hostname, sizeof(ip->name) - 1);
		(void) strncpy(ip->name, hostname, sizeof(ip->name) - 1);
		ip->name[strlen(ip->name)] = '\0';
		ip->name[sizeof(ip->name) - 1] = '\0';
	} 
	} 
	else {
	else {
		ip->name[0] = 0;
		ip->name[0] = 0;
 Lines 1538-1555    Link Here 
	ip->ntflg = ntflag;
	ip->ntflg = ntflag;
	ntflag = op->ntflg;
	ntflag = op->ntflg;
	(void) strncpy(ip->nti, ntin, 16);
	(void) strncpy(ip->nti, ntin, 16);
	(ip->nti)[strlen(ip->nti)] = '\0';
	(ip->nti)[16] = '\0';		/* shouldn't use strlen */
	(void) strcpy(ntin, op->nti);
	(void) strcpy(ntin, op->nti);
	(void) strncpy(ip->nto, ntout, 16);
	(void) strncpy(ip->nto, ntout, 16);
	(ip->nto)[strlen(ip->nto)] = '\0';
	(ip->nto)[16] = '\0';
	(void) strcpy(ntout, op->nto);
	(void) strcpy(ntout, op->nto);
	ip->mapflg = mapflag;
	ip->mapflg = mapflag;
	mapflag = op->mapflg;
	mapflag = op->mapflg;
	(void) strncpy(ip->mi, mapin, MAXPATHLEN - 1);
	(void) strncpy(ip->mi, mapin, MAXPATHLEN - 1);
	(ip->mi)[strlen(ip->mi)] = '\0';
	(ip->mi)[MAXPATHLEN - 1] = '\0';
	(void) strcpy(mapin, op->mi);
	(void) strcpy(mapin, op->mi);
	(void) strncpy(ip->mo, mapout, MAXPATHLEN - 1);
	(void) strncpy(ip->mo, mapout, MAXPATHLEN - 1);
	(ip->mo)[strlen(ip->mo)] = '\0';
	(ip->mo)[MAXPATHLEN - 1] = '\0';
	(void) strcpy(mapout, op->mo);
	(void) strcpy(mapout, op->mo);
	(void) signal(SIGINT, oldintr);
	(void) signal(SIGINT, oldintr);
	if (abrtflag) {
	if (abrtflag) {
(-) netkit-ftp-old/ftp/ftp_var.h (-1 / +5 lines)
 Lines 1-3    Link Here 
/* $USAGI$ */
/*
/*
 * Copyright (c) 1985, 1989 Regents of the University of California.
 * Copyright (c) 1985, 1989 Regents of the University of California.
 * All rights reserved.
 * All rights reserved.
 Lines 112-117    Link Here 
Extern int	mflag;		/* flag: if != 0, then active multi command */
Extern int	mflag;		/* flag: if != 0, then active multi command */
Extern int	options;	/* used during socket creation */
Extern int	options;	/* used during socket creation */
Extern int	try_epsv;	/* try EPSV for this session */
Extern int	try_eprt;	/* try EPRT for this session */
/*
/*
 * Format of command table.
 * Format of command table.
 Lines 140-146    Link Here 
Extern char macbuf[4096];
Extern char macbuf[4096];
#define MACBUF_SIZE 4096
#define MACBUF_SIZE 4096
char *hookup(char *host, int port);
char *hookup(const char *host, const char *port);
struct cmd *getcmd(const char *);
struct cmd *getcmd(const char *);
char **makeargv(int *pargc, char **parg);
char **makeargv(int *pargc, char **parg);
int dologin(const char *host);
int dologin(const char *host);