ftp.c revision 1.126.2.6       1  1.126.2.4       snj /*	$NetBSD: ftp.c,v 1.126.2.6 2005/07/24 10:17:43 tron Exp $	*/
      2       1.77     lukem 
      3       1.77     lukem /*-
      4  1.126.2.1      tron  * Copyright (c) 1996-2005 The NetBSD Foundation, Inc.
      5       1.77     lukem  * All rights reserved.
      6       1.77     lukem  *
      7       1.77     lukem  * This code is derived from software contributed to The NetBSD Foundation
      8       1.77     lukem  * by Luke Mewburn.
      9       1.77     lukem  *
     10       1.77     lukem  * Redistribution and use in source and binary forms, with or without
     11       1.77     lukem  * modification, are permitted provided that the following conditions
     12       1.77     lukem  * are met:
     13       1.77     lukem  * 1. Redistributions of source code must retain the above copyright
     14       1.77     lukem  *    notice, this list of conditions and the following disclaimer.
     15       1.77     lukem  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.77     lukem  *    notice, this list of conditions and the following disclaimer in the
     17       1.77     lukem  *    documentation and/or other materials provided with the distribution.
     18       1.77     lukem  * 3. All advertising materials mentioning features or use of this software
     19       1.77     lukem  *    must display the following acknowledgement:
     20       1.77     lukem  *	This product includes software developed by the NetBSD
     21       1.77     lukem  *	Foundation, Inc. and its contributors.
     22       1.77     lukem  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23       1.77     lukem  *    contributors may be used to endorse or promote products derived
     24       1.77     lukem  *    from this software without specific prior written permission.
     25       1.77     lukem  *
     26       1.77     lukem  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27       1.77     lukem  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28       1.77     lukem  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29       1.77     lukem  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30       1.77     lukem  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31       1.77     lukem  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32       1.77     lukem  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33       1.77     lukem  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34       1.77     lukem  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35       1.77     lukem  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36       1.77     lukem  * POSSIBILITY OF SUCH DAMAGE.
     37       1.77     lukem  */
     38       1.48    itojun 
     39       1.48    itojun /*
     40       1.72     lukem  * Copyright (c) 1985, 1989, 1993, 1994
     41       1.72     lukem  *	The Regents of the University of California.  All rights reserved.
     42       1.72     lukem  *
     43       1.48    itojun  * Redistribution and use in source and binary forms, with or without
     44       1.48    itojun  * modification, are permitted provided that the following conditions
     45       1.48    itojun  * are met:
     46       1.48    itojun  * 1. Redistributions of source code must retain the above copyright
     47       1.48    itojun  *    notice, this list of conditions and the following disclaimer.
     48       1.48    itojun  * 2. Redistributions in binary form must reproduce the above copyright
     49       1.48    itojun  *    notice, this list of conditions and the following disclaimer in the
     50       1.48    itojun  *    documentation and/or other materials provided with the distribution.
     51      1.122       agc  * 3. Neither the name of the University nor the names of its contributors
     52       1.48    itojun  *    may be used to endorse or promote products derived from this software
     53       1.48    itojun  *    without specific prior written permission.
     54       1.72     lukem  *
     55       1.72     lukem  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     56       1.48    itojun  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     57       1.48    itojun  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     58       1.72     lukem  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     59       1.48    itojun  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     60       1.48    itojun  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     61       1.48    itojun  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     62       1.48    itojun  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     63       1.48    itojun  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     64       1.48    itojun  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     65       1.48    itojun  * SUCH DAMAGE.
     66       1.48    itojun  */
     67       1.12       tls 
     68        1.1       cgd /*
     69       1.72     lukem  * Copyright (C) 1997 and 1998 WIDE Project.
     70       1.72     lukem  * All rights reserved.
     71  1.126.2.2      tron  *
     72        1.1       cgd  * Redistribution and use in source and binary forms, with or without
     73        1.1       cgd  * modification, are permitted provided that the following conditions
     74        1.1       cgd  * are met:
     75        1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     76        1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     77        1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     78        1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     79        1.1       cgd  *    documentation and/or other materials provided with the distribution.
     80       1.72     lukem  * 3. Neither the name of the project nor the names of its contributors
     81        1.1       cgd  *    may be used to endorse or promote products derived from this software
     82        1.1       cgd  *    without specific prior written permission.
     83  1.126.2.2      tron  *
     84       1.72     lukem  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
     85        1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     86        1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     87       1.72     lukem  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
     88        1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     89        1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     90        1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     91        1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     92        1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     93        1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     94        1.1       cgd  * SUCH DAMAGE.
     95        1.1       cgd  */
     96        1.1       cgd 
     97       1.26     lukem #include <sys/cdefs.h>
     98        1.1       cgd #ifndef lint
     99       1.12       tls #if 0
    100       1.12       tls static char sccsid[] = "@(#)ftp.c	8.6 (Berkeley) 10/27/94";
    101       1.12       tls #else
    102  1.126.2.4       snj __RCSID("$NetBSD: ftp.c,v 1.126.2.6 2005/07/24 10:17:43 tron Exp $");
    103       1.12       tls #endif
    104        1.1       cgd #endif /* not lint */
    105        1.1       cgd 
    106       1.21     lukem #include <sys/types.h>
    107        1.1       cgd #include <sys/stat.h>
    108        1.1       cgd #include <sys/socket.h>
    109       1.33  christos #include <sys/time.h>
    110        1.1       cgd 
    111        1.1       cgd #include <netinet/in.h>
    112        1.1       cgd #include <netinet/in_systm.h>
    113        1.1       cgd #include <netinet/ip.h>
    114        1.6       cgd #include <arpa/inet.h>
    115        1.1       cgd #include <arpa/ftp.h>
    116        1.1       cgd #include <arpa/telnet.h>
    117        1.1       cgd 
    118        1.6       cgd #include <ctype.h>
    119        1.6       cgd #include <err.h>
    120        1.1       cgd #include <errno.h>
    121  1.126.2.1      tron #include <fcntl.h>
    122        1.1       cgd #include <netdb.h>
    123        1.6       cgd #include <stdio.h>
    124        1.6       cgd #include <stdlib.h>
    125        1.6       cgd #include <string.h>
    126       1.32    kleink #include <time.h>
    127        1.6       cgd #include <unistd.h>
    128       1.23     lukem #include <stdarg.h>
    129        1.1       cgd 
    130        1.1       cgd #include "ftp_var.h"
    131       1.48    itojun 
    132      1.126     lukem volatile sig_atomic_t	abrtflag;
    133      1.126     lukem volatile sig_atomic_t	timeoutflag;
    134      1.126     lukem 
    135       1.83     lukem sigjmp_buf	ptabort;
    136        1.6       cgd int	ptabflg;
    137        1.1       cgd int	ptflag = 0;
    138       1.73     lukem char	pasv[BUFSIZ];	/* passive port for proxy data connection */
    139        1.1       cgd 
    140       1.95     lukem static int empty(FILE *, FILE *, int);
    141       1.45  christos 
    142      1.104     lukem struct sockinet {
    143      1.104     lukem 	union sockunion {
    144      1.104     lukem 		struct sockaddr_in  su_sin;
    145       1.62     lukem #ifdef INET6
    146      1.104     lukem 		struct sockaddr_in6 su_sin6;
    147       1.62     lukem #endif
    148      1.104     lukem 	} si_su;
    149      1.107     lukem #if !HAVE_SOCKADDR_SA_LEN
    150      1.104     lukem 	int	si_len;
    151       1.62     lukem #endif
    152       1.48    itojun };
    153       1.52  christos 
    154      1.107     lukem #if !HAVE_SOCKADDR_SA_LEN
    155      1.104     lukem # define su_len		si_len
    156      1.104     lukem #else
    157      1.104     lukem # define su_len		si_su.su_sin.sin_len
    158      1.104     lukem #endif
    159      1.104     lukem #define su_family	si_su.su_sin.sin_family
    160      1.104     lukem #define su_port		si_su.su_sin.sin_port
    161       1.48    itojun 
    162      1.104     lukem struct sockinet myctladdr, hisctladdr, data_addr;
    163        1.1       cgd 
    164        1.1       cgd char *
    165       1.95     lukem hookup(char *host, char *port)
    166        1.1       cgd {
    167  1.126.2.6      tron 	int s = -1, error, portnum;
    168       1.49    itojun 	struct addrinfo hints, *res, *res0;
    169       1.58  christos 	char hbuf[MAXHOSTNAMELEN];
    170       1.14     lukem 	static char hostnamebuf[MAXHOSTNAMELEN];
    171       1.49    itojun 	char *cause = "unknown";
    172  1.126.2.6      tron 	socklen_t len;
    173  1.126.2.4       snj 	int on = 1;
    174      1.108     lukem 
    175       1.48    itojun 	memset((char *)&hisctladdr, 0, sizeof (hisctladdr));
    176      1.106     lukem 	memset((char *)&myctladdr, 0, sizeof (myctladdr));
    177       1.48    itojun 	memset(&hints, 0, sizeof(hints));
    178      1.108     lukem 	portnum = parseport(port, FTP_PORT);
    179       1.48    itojun 	hints.ai_flags = AI_CANONNAME;
    180      1.116     lukem 	hints.ai_family = family;
    181       1.48    itojun 	hints.ai_socktype = SOCK_STREAM;
    182       1.48    itojun 	hints.ai_protocol = 0;
    183      1.108     lukem 	error = getaddrinfo(host, NULL, &hints, &res0);
    184       1.48    itojun 	if (error) {
    185      1.101    itojun 		warnx("%s", gai_strerror(error));
    186       1.48    itojun 		code = -1;
    187       1.48    itojun 		return (0);
    188       1.48    itojun 	}
    189        1.1       cgd 
    190       1.49    itojun 	if (res0->ai_canonname)
    191       1.68     lukem 		(void)strlcpy(hostnamebuf, res0->ai_canonname,
    192       1.68     lukem 		    sizeof(hostnamebuf));
    193       1.48    itojun 	else
    194       1.68     lukem 		(void)strlcpy(hostnamebuf, host, sizeof(hostnamebuf));
    195        1.1       cgd 	hostname = hostnamebuf;
    196  1.126.2.2      tron 
    197       1.49    itojun 	for (res = res0; res; res = res->ai_next) {
    198       1.96    itojun 		/*
    199       1.96    itojun 		 * make sure that ai_addr is NOT an IPv4 mapped address.
    200       1.96    itojun 		 * IPv4 mapped address complicates too many things in FTP
    201       1.96    itojun 		 * protocol handling, as FTP protocol is defined differently
    202       1.96    itojun 		 * between IPv4 and IPv6.
    203       1.97    itojun 		 *
    204       1.97    itojun 		 * This may not be the best way to handle this situation,
    205       1.97    itojun 		 * since the semantics of IPv4 mapped address is defined in
    206       1.97    itojun 		 * the kernel.  There are configurations where we should use
    207       1.97    itojun 		 * IPv4 mapped address as native IPv6 address, not as
    208       1.97    itojun 		 * "an IPv6 address that embeds IPv4 address" (namely, SIIT).
    209       1.97    itojun 		 *
    210       1.97    itojun 		 * More complete solution would be to have an additional
    211       1.97    itojun 		 * getsockopt to grab "real" peername/sockname.  "real"
    212       1.97    itojun 		 * peername/sockname will be AF_INET if IPv4 mapped address
    213       1.97    itojun 		 * is used to embed IPv4 address, and will be AF_INET6 if
    214       1.97    itojun 		 * we use it as native.  What a mess!
    215       1.96    itojun 		 */
    216       1.96    itojun 		ai_unmapped(res);
    217       1.49    itojun #if 0	/*old behavior*/
    218       1.49    itojun 		if (res != res0)	/* not on the first address */
    219       1.49    itojun #else
    220       1.49    itojun 		if (res0->ai_next)	/* if we have multiple possibilities */
    221       1.49    itojun #endif
    222       1.49    itojun 		{
    223      1.112    itojun 			if (getnameinfo(res->ai_addr, res->ai_addrlen,
    224      1.112    itojun 			    hbuf, sizeof(hbuf), NULL, 0, NI_NUMERICHOST))
    225      1.112    itojun 				strlcpy(hbuf, "?", sizeof(hbuf));
    226       1.49    itojun 			fprintf(ttyout, "Trying %s...\n", hbuf);
    227       1.49    itojun 		}
    228      1.108     lukem 		((struct sockaddr_in *)res->ai_addr)->sin_port = htons(portnum);
    229      1.109     lukem 		s = socket(res->ai_family, SOCK_STREAM, res->ai_protocol);
    230       1.49    itojun 		if (s < 0) {
    231       1.49    itojun 			cause = "socket";
    232       1.49    itojun 			continue;
    233       1.49    itojun 		}
    234      1.125     lukem 		error = xconnect(s, res->ai_addr, res->ai_addrlen);
    235       1.49    itojun 		if (error) {
    236       1.49    itojun 			/* this "if" clause is to prevent print warning twice */
    237       1.49    itojun 			if (res->ai_next) {
    238      1.112    itojun 				if (getnameinfo(res->ai_addr, res->ai_addrlen,
    239      1.106     lukem 				    hbuf, sizeof(hbuf), NULL, 0,
    240      1.112    itojun 				    NI_NUMERICHOST))
    241      1.112    itojun 					strlcpy(hbuf, "?", sizeof(hbuf));
    242       1.49    itojun 				warn("connect to address %s", hbuf);
    243        1.1       cgd 			}
    244       1.49    itojun 			cause = "connect";
    245       1.49    itojun 			close(s);
    246       1.49    itojun 			s = -1;
    247        1.1       cgd 			continue;
    248        1.1       cgd 		}
    249       1.49    itojun 
    250       1.49    itojun 		/* finally we got one */
    251       1.49    itojun 		break;
    252       1.49    itojun 	}
    253       1.49    itojun 	if (s < 0) {
    254      1.101    itojun 		warn("%s", cause);
    255        1.1       cgd 		code = -1;
    256       1.50    itojun 		freeaddrinfo(res0);
    257       1.49    itojun 		return 0;
    258        1.1       cgd 	}
    259      1.104     lukem 	memcpy(&hisctladdr.si_su, res->ai_addr, res->ai_addrlen);
    260      1.104     lukem 	hisctladdr.su_len = res->ai_addrlen;
    261       1.49    itojun 	freeaddrinfo(res0);
    262       1.49    itojun 	res0 = res = NULL;
    263       1.58  christos 
    264      1.105     lukem 	len = hisctladdr.su_len;
    265  1.126.2.6      tron 	if (getsockname(s, (struct sockaddr *)&myctladdr.si_su, &len) == -1) {
    266        1.6       cgd 		warn("getsockname");
    267        1.1       cgd 		code = -1;
    268        1.1       cgd 		goto bad;
    269        1.1       cgd 	}
    270      1.105     lukem 	myctladdr.su_len = len;
    271       1.58  christos 
    272       1.92     lukem #ifdef IPTOS_LOWDELAY
    273      1.104     lukem 	if (hisctladdr.su_family == AF_INET) {
    274       1.53  christos 		int tos = IPTOS_LOWDELAY;
    275  1.126.2.4       snj 		if (setsockopt(s, IPPROTO_IP, IP_TOS,
    276  1.126.2.5       snj 				(void *)&tos, sizeof(tos)) == -1) {
    277      1.123     lukem 			if (debug)
    278  1.126.2.4       snj 				warn("setsockopt %s (ignored)",
    279  1.126.2.4       snj 				    "IPTOS_LOWDELAY");
    280  1.126.2.4       snj 		}
    281       1.48    itojun 	}
    282       1.92     lukem #endif
    283        1.1       cgd 	cin = fdopen(s, "r");
    284        1.1       cgd 	cout = fdopen(s, "w");
    285        1.1       cgd 	if (cin == NULL || cout == NULL) {
    286        1.6       cgd 		warnx("fdopen failed.");
    287        1.1       cgd 		if (cin)
    288       1.23     lukem 			(void)fclose(cin);
    289        1.1       cgd 		if (cout)
    290       1.23     lukem 			(void)fclose(cout);
    291        1.1       cgd 		code = -1;
    292        1.1       cgd 		goto bad;
    293        1.1       cgd 	}
    294        1.1       cgd 	if (verbose)
    295       1.35     lukem 		fprintf(ttyout, "Connected to %s.\n", hostname);
    296       1.87     lukem 	if (getreply(0) > 2) {	/* read startup message from server */
    297        1.1       cgd 		if (cin)
    298       1.23     lukem 			(void)fclose(cin);
    299        1.1       cgd 		if (cout)
    300       1.23     lukem 			(void)fclose(cout);
    301        1.1       cgd 		code = -1;
    302        1.1       cgd 		goto bad;
    303        1.1       cgd 	}
    304        1.1       cgd 
    305  1.126.2.4       snj 	if (setsockopt(s, SOL_SOCKET, SO_OOBINLINE,
    306  1.126.2.4       snj 			(void *)&on, sizeof(on)) == -1) {
    307  1.126.2.4       snj 		if (debug)
    308  1.126.2.4       snj 			warn("setsockopt %s (ignored)", "SO_OOBINLINE");
    309        1.1       cgd 	}
    310        1.1       cgd 
    311        1.1       cgd 	return (hostname);
    312      1.102     lukem  bad:
    313       1.23     lukem 	(void)close(s);
    314       1.31     lukem 	return (NULL);
    315        1.1       cgd }
    316        1.1       cgd 
    317        1.1       cgd void
    318       1.95     lukem cmdabort(int notused)
    319        1.1       cgd {
    320       1.81     lukem 	int oerrno = errno;
    321        1.1       cgd 
    322      1.126     lukem 	sigint_raised = 1;
    323       1.22     lukem 	alarmtimer(0);
    324       1.84     lukem 	if (fromatty)
    325       1.84     lukem 		write(fileno(ttyout), "\n", 1);
    326        1.1       cgd 	abrtflag++;
    327        1.1       cgd 	if (ptflag)
    328       1.81     lukem 		siglongjmp(ptabort, 1);
    329       1.81     lukem 	errno = oerrno;
    330        1.1       cgd }
    331        1.1       cgd 
    332       1.76     lukem void
    333       1.95     lukem cmdtimeout(int notused)
    334       1.76     lukem {
    335       1.81     lukem 	int oerrno = errno;
    336       1.76     lukem 
    337       1.76     lukem 	alarmtimer(0);
    338       1.84     lukem 	if (fromatty)
    339       1.84     lukem 		write(fileno(ttyout), "\n", 1);
    340       1.76     lukem 	timeoutflag++;
    341       1.76     lukem 	if (ptflag)
    342       1.81     lukem 		siglongjmp(ptabort, 1);
    343       1.81     lukem 	errno = oerrno;
    344       1.76     lukem }
    345       1.76     lukem 
    346        1.1       cgd /*VARARGS*/
    347        1.6       cgd int
    348       1.23     lukem command(const char *fmt, ...)
    349        1.1       cgd {
    350        1.1       cgd 	va_list ap;
    351        1.1       cgd 	int r;
    352       1.90     lukem 	sigfunc oldsigint;
    353        1.1       cgd 
    354        1.1       cgd 	if (debug) {
    355       1.35     lukem 		fputs("---> ", ttyout);
    356       1.23     lukem 		va_start(ap, fmt);
    357        1.1       cgd 		if (strncmp("PASS ", fmt, 5) == 0)
    358       1.35     lukem 			fputs("PASS XXXX", ttyout);
    359       1.14     lukem 		else if (strncmp("ACCT ", fmt, 5) == 0)
    360       1.35     lukem 			fputs("ACCT XXXX", ttyout);
    361       1.14     lukem 		else
    362       1.35     lukem 			vfprintf(ttyout, fmt, ap);
    363        1.1       cgd 		va_end(ap);
    364       1.35     lukem 		putc('\n', ttyout);
    365        1.1       cgd 	}
    366        1.1       cgd 	if (cout == NULL) {
    367       1.23     lukem 		warnx("No control connection for command.");
    368        1.1       cgd 		code = -1;
    369        1.1       cgd 		return (0);
    370        1.1       cgd 	}
    371       1.76     lukem 
    372       1.76     lukem 	abrtflag = 0;
    373       1.76     lukem 
    374       1.76     lukem 	oldsigint = xsignal(SIGINT, cmdabort);
    375       1.76     lukem 
    376       1.23     lukem 	va_start(ap, fmt);
    377        1.1       cgd 	vfprintf(cout, fmt, ap);
    378        1.1       cgd 	va_end(ap);
    379       1.23     lukem 	fputs("\r\n", cout);
    380       1.23     lukem 	(void)fflush(cout);
    381        1.1       cgd 	cpend = 1;
    382        1.1       cgd 	r = getreply(!strcmp(fmt, "QUIT"));
    383       1.76     lukem 	if (abrtflag && oldsigint != SIG_IGN)
    384       1.76     lukem 		(*oldsigint)(SIGINT);
    385       1.76     lukem 	(void)xsignal(SIGINT, oldsigint);
    386        1.6       cgd 	return (r);
    387        1.1       cgd }
    388        1.1       cgd 
    389        1.6       cgd int
    390       1.95     lukem getreply(int expecteof)
    391        1.1       cgd {
    392       1.16     lukem 	char current_line[BUFSIZ];	/* last line of previous reply */
    393       1.16     lukem 	int c, n, line;
    394        1.6       cgd 	int dig;
    395        1.1       cgd 	int originalcode = 0, continuation = 0;
    396       1.90     lukem 	sigfunc oldsigint, oldsigalrm;
    397        1.1       cgd 	int pflag = 0;
    398        1.6       cgd 	char *cp, *pt = pasv;
    399        1.1       cgd 
    400       1.76     lukem 	abrtflag = 0;
    401       1.76     lukem 	timeoutflag = 0;
    402       1.76     lukem 
    403       1.76     lukem 	oldsigint = xsignal(SIGINT, cmdabort);
    404       1.76     lukem 	oldsigalrm = xsignal(SIGALRM, cmdtimeout);
    405       1.76     lukem 
    406       1.16     lukem 	for (line = 0 ;; line++) {
    407        1.1       cgd 		dig = n = code = 0;
    408       1.16     lukem 		cp = current_line;
    409       1.76     lukem 		while (alarmtimer(60),((c = getc(cin)) != '\n')) {
    410        1.1       cgd 			if (c == IAC) {     /* handle telnet commands */
    411        1.1       cgd 				switch (c = getc(cin)) {
    412        1.1       cgd 				case WILL:
    413        1.1       cgd 				case WONT:
    414        1.1       cgd 					c = getc(cin);
    415        1.1       cgd 					fprintf(cout, "%c%c%c", IAC, DONT, c);
    416       1.23     lukem 					(void)fflush(cout);
    417        1.1       cgd 					break;
    418        1.1       cgd 				case DO:
    419        1.1       cgd 				case DONT:
    420        1.1       cgd 					c = getc(cin);
    421        1.1       cgd 					fprintf(cout, "%c%c%c", IAC, WONT, c);
    422       1.23     lukem 					(void)fflush(cout);
    423        1.1       cgd 					break;
    424        1.1       cgd 				default:
    425        1.1       cgd 					break;
    426        1.1       cgd 				}
    427        1.1       cgd 				continue;
    428        1.1       cgd 			}
    429        1.1       cgd 			dig++;
    430        1.1       cgd 			if (c == EOF) {
    431       1.76     lukem 				/*
    432       1.76     lukem 				 * these will get trashed by pswitch()
    433       1.76     lukem 				 * in lostpeer()
    434       1.76     lukem 				 */
    435       1.76     lukem 				int reply_timeoutflag = timeoutflag;
    436       1.76     lukem 				int reply_abrtflag = abrtflag;
    437       1.76     lukem 
    438       1.85     lukem 				alarmtimer(0);
    439       1.85     lukem 				if (expecteof && feof(cin)) {
    440       1.76     lukem 					(void)xsignal(SIGINT, oldsigint);
    441       1.76     lukem 					(void)xsignal(SIGALRM, oldsigalrm);
    442        1.1       cgd 					code = 221;
    443        1.1       cgd 					return (0);
    444        1.1       cgd 				}
    445       1.85     lukem 				cpend = 0;
    446       1.85     lukem 				lostpeer(0);
    447        1.1       cgd 				if (verbose) {
    448       1.76     lukem 					if (reply_timeoutflag)
    449       1.76     lukem 						fputs(
    450       1.85     lukem     "421 Service not available, remote server timed out. Connection closed\n",
    451       1.85     lukem 						    ttyout);
    452       1.76     lukem 					else if (reply_abrtflag)
    453       1.76     lukem 						fputs(
    454       1.85     lukem     "421 Service not available, user interrupt. Connection closed.\n",
    455       1.85     lukem 						    ttyout);
    456       1.76     lukem 					else
    457       1.76     lukem 						fputs(
    458       1.76     lukem     "421 Service not available, remote server has closed connection.\n",
    459       1.85     lukem 						    ttyout);
    460       1.76     lukem 					(void)fflush(ttyout);
    461        1.1       cgd 				}
    462        1.1       cgd 				code = 421;
    463       1.76     lukem 				(void)xsignal(SIGINT, oldsigint);
    464       1.76     lukem 				(void)xsignal(SIGALRM, oldsigalrm);
    465        1.6       cgd 				return (4);
    466        1.1       cgd 			}
    467        1.1       cgd 			if (c != '\r' && (verbose > 0 ||
    468       1.35     lukem 			    ((verbose > -1 && n == '5' && dig > 4) &&
    469       1.35     lukem 			    (((!n && c < '5') || (n && n < '5'))
    470       1.35     lukem 			     || !retry_connect)))) {
    471        1.1       cgd 				if (proxflag &&
    472       1.16     lukem 				   (dig == 1 || (dig == 5 && verbose == 0)))
    473       1.35     lukem 					fprintf(ttyout, "%s:", hostname);
    474       1.35     lukem 				(void)putc(c, ttyout);
    475        1.1       cgd 			}
    476        1.1       cgd 			if (dig < 4 && isdigit(c))
    477        1.1       cgd 				code = code * 10 + (c - '0');
    478       1.48    itojun 			if (!pflag && (code == 227 || code == 228))
    479        1.1       cgd 				pflag = 1;
    480       1.48    itojun 			else if (!pflag && code == 229)
    481       1.48    itojun 				pflag = 100;
    482        1.1       cgd 			if (dig > 4 && pflag == 1 && isdigit(c))
    483        1.1       cgd 				pflag = 2;
    484        1.1       cgd 			if (pflag == 2) {
    485      1.118    itojun 				if (c != '\r' && c != ')') {
    486      1.118    itojun 					if (pt < &pasv[sizeof(pasv) - 1])
    487      1.118    itojun 						*pt++ = c;
    488      1.118    itojun 				} else {
    489        1.1       cgd 					*pt = '\0';
    490        1.1       cgd 					pflag = 3;
    491        1.1       cgd 				}
    492        1.1       cgd 			}
    493       1.48    itojun 			if (pflag == 100 && c == '(')
    494       1.48    itojun 				pflag = 2;
    495        1.1       cgd 			if (dig == 4 && c == '-') {
    496        1.1       cgd 				if (continuation)
    497        1.1       cgd 					code = 0;
    498        1.1       cgd 				continuation++;
    499        1.1       cgd 			}
    500        1.1       cgd 			if (n == 0)
    501        1.1       cgd 				n = c;
    502       1.16     lukem 			if (cp < ¤t_line[sizeof(current_line) - 1])
    503        1.1       cgd 				*cp++ = c;
    504        1.1       cgd 		}
    505       1.35     lukem 		if (verbose > 0 || ((verbose > -1 && n == '5') &&
    506       1.35     lukem 		    (n < '5' || !retry_connect))) {
    507       1.35     lukem 			(void)putc(c, ttyout);
    508       1.35     lukem 			(void)fflush (ttyout);
    509        1.1       cgd 		}
    510      1.102     lukem 		if (cp[-1] == '\r')
    511      1.102     lukem 			cp[-1] = '\0';
    512      1.102     lukem 		*cp = '\0';
    513      1.102     lukem 		if (line == 0)
    514      1.102     lukem 			(void)strlcpy(reply_string, current_line,
    515      1.102     lukem 			    sizeof(reply_string));
    516      1.102     lukem 		if (line > 0 && code == 0 && reply_callback != NULL)
    517      1.102     lukem 			(*reply_callback)(current_line);
    518        1.1       cgd 		if (continuation && code != originalcode) {
    519        1.1       cgd 			if (originalcode == 0)
    520        1.1       cgd 				originalcode = code;
    521        1.1       cgd 			continue;
    522        1.1       cgd 		}
    523        1.1       cgd 		if (n != '1')
    524        1.1       cgd 			cpend = 0;
    525       1.85     lukem 		alarmtimer(0);
    526       1.76     lukem 		(void)xsignal(SIGINT, oldsigint);
    527       1.76     lukem 		(void)xsignal(SIGALRM, oldsigalrm);
    528        1.1       cgd 		if (code == 421 || originalcode == 421)
    529       1.85     lukem 			lostpeer(0);
    530       1.76     lukem 		if (abrtflag && oldsigint != cmdabort && oldsigint != SIG_IGN)
    531       1.76     lukem 			(*oldsigint)(SIGINT);
    532       1.76     lukem 		if (timeoutflag && oldsigalrm != cmdtimeout &&
    533       1.76     lukem 		    oldsigalrm != SIG_IGN)
    534       1.76     lukem 			(*oldsigalrm)(SIGINT);
    535        1.1       cgd 		return (n - '0');
    536        1.1       cgd 	}
    537        1.1       cgd }
    538        1.1       cgd 
    539       1.45  christos static int
    540       1.95     lukem empty(FILE *cin, FILE *din, int sec)
    541        1.1       cgd {
    542  1.126.2.1      tron 	int		nr, nfd;
    543  1.126.2.1      tron 	struct pollfd	pfd[2];
    544       1.45  christos 
    545  1.126.2.1      tron 	nfd = 0;
    546       1.45  christos 	if (cin) {
    547      1.124     lukem 		pfd[nfd].fd = fileno(cin);
    548      1.124     lukem 		pfd[nfd++].events = POLLIN;
    549       1.45  christos 	}
    550       1.45  christos 
    551       1.45  christos 	if (din) {
    552      1.124     lukem 		pfd[nfd].fd = fileno(din);
    553      1.124     lukem 		pfd[nfd++].events = POLLIN;
    554       1.45  christos 	}
    555       1.45  christos 
    556  1.126.2.1      tron 	if ((nr = xpoll(pfd, nfd, sec * 1000)) <= 0)
    557       1.45  christos 		return nr;
    558       1.45  christos 
    559       1.45  christos 	nr = 0;
    560       1.45  christos 	nfd = 0;
    561       1.45  christos 	if (cin)
    562       1.45  christos 		nr |= (pfd[nfd++].revents & POLLIN) ? 1 : 0;
    563       1.45  christos 	if (din)
    564       1.45  christos 		nr |= (pfd[nfd++].revents & POLLIN) ? 2 : 0;
    565       1.45  christos 	return nr;
    566        1.1       cgd }
    567        1.1       cgd 
    568       1.83     lukem sigjmp_buf	xferabort;
    569        1.1       cgd 
    570        1.1       cgd void
    571       1.95     lukem abortxfer(int notused)
    572        1.1       cgd {
    573       1.81     lukem 	char msgbuf[100];
    574  1.126.2.6      tron 	size_t len;
    575        1.1       cgd 
    576      1.126     lukem 	sigint_raised = 1;
    577       1.22     lukem 	alarmtimer(0);
    578        1.1       cgd 	mflag = 0;
    579        1.1       cgd 	abrtflag = 0;
    580       1.81     lukem 	switch (direction[0]) {
    581       1.81     lukem 	case 'r':
    582       1.81     lukem 		strlcpy(msgbuf, "\nreceive", sizeof(msgbuf));
    583       1.81     lukem 		break;
    584       1.81     lukem 	case 's':
    585       1.81     lukem 		strlcpy(msgbuf, "\nsend", sizeof(msgbuf));
    586       1.81     lukem 		break;
    587       1.81     lukem 	default:
    588       1.85     lukem 		errx(1, "abortxfer called with unknown direction `%s'",
    589       1.81     lukem 		    direction);
    590       1.81     lukem 	}
    591       1.85     lukem 	len = strlcat(msgbuf, " aborted. Waiting for remote to finish abort.\n",
    592       1.81     lukem 	    sizeof(msgbuf));
    593       1.81     lukem 	write(fileno(ttyout), msgbuf, len);
    594       1.81     lukem 	siglongjmp(xferabort, 1);
    595        1.1       cgd }
    596        1.1       cgd 
    597        1.6       cgd void
    598       1.95     lukem sendrequest(const char *cmd, const char *local, const char *remote,
    599       1.95     lukem 	    int printnames)
    600        1.1       cgd {
    601        1.1       cgd 	struct stat st;
    602        1.6       cgd 	int c, d;
    603       1.26     lukem 	FILE *fin, *dout;
    604       1.95     lukem 	int (*closefunc)(FILE *);
    605       1.90     lukem 	sigfunc oldintr, oldintp;
    606       1.26     lukem 	volatile off_t hashbytes;
    607       1.64     lukem 	char *lmode, *bufp;
    608       1.64     lukem 	static size_t bufsize;
    609       1.64     lukem 	static char *buf;
    610       1.23     lukem 	int oprogress;
    611        1.1       cgd 
    612       1.35     lukem #ifdef __GNUC__			/* to shut up gcc warnings */
    613       1.26     lukem 	(void)&fin;
    614       1.26     lukem 	(void)&dout;
    615       1.26     lukem 	(void)&closefunc;
    616       1.26     lukem 	(void)&oldintr;
    617       1.26     lukem 	(void)&oldintp;
    618       1.26     lukem 	(void)&lmode;
    619       1.26     lukem #endif
    620       1.26     lukem 
    621       1.16     lukem 	hashbytes = mark;
    622       1.14     lukem 	direction = "sent";
    623       1.26     lukem 	dout = NULL;
    624       1.14     lukem 	bytes = 0;
    625       1.16     lukem 	filesize = -1;
    626       1.23     lukem 	oprogress = progress;
    627        1.1       cgd 	if (verbose && printnames) {
    628        1.1       cgd 		if (local && *local != '-')
    629       1.35     lukem 			fprintf(ttyout, "local: %s ", local);
    630        1.1       cgd 		if (remote)
    631       1.35     lukem 			fprintf(ttyout, "remote: %s\n", remote);
    632        1.1       cgd 	}
    633        1.1       cgd 	if (proxy) {
    634        1.1       cgd 		proxtrans(cmd, local, remote);
    635        1.1       cgd 		return;
    636        1.1       cgd 	}
    637        1.1       cgd 	if (curtype != type)
    638        1.1       cgd 		changetype(type, 0);
    639        1.1       cgd 	closefunc = NULL;
    640        1.1       cgd 	oldintr = NULL;
    641        1.1       cgd 	oldintp = NULL;
    642        1.1       cgd 	lmode = "w";
    643       1.81     lukem 	if (sigsetjmp(xferabort, 1)) {
    644       1.85     lukem 		while (cpend)
    645       1.23     lukem 			(void)getreply(0);
    646       1.79     lukem 		code = -1;
    647       1.30     lukem 		goto cleanupsend;
    648        1.1       cgd 	}
    649       1.80     lukem 	(void)xsignal(SIGQUIT, psummary);
    650       1.81     lukem 	oldintr = xsignal(SIGINT, abortxfer);
    651       1.23     lukem 	if (strcmp(local, "-") == 0) {
    652        1.1       cgd 		fin = stdin;
    653       1.23     lukem 		progress = 0;
    654       1.23     lukem 	} else if (*local == '|') {
    655       1.67     lukem 		oldintp = xsignal(SIGPIPE, SIG_IGN);
    656        1.1       cgd 		fin = popen(local + 1, "r");
    657        1.1       cgd 		if (fin == NULL) {
    658        1.6       cgd 			warn("%s", local + 1);
    659       1.79     lukem 			code = -1;
    660       1.30     lukem 			goto cleanupsend;
    661        1.1       cgd 		}
    662       1.23     lukem 		progress = 0;
    663        1.1       cgd 		closefunc = pclose;
    664        1.1       cgd 	} else {
    665        1.1       cgd 		fin = fopen(local, "r");
    666        1.1       cgd 		if (fin == NULL) {
    667        1.6       cgd 			warn("local: %s", local);
    668       1.79     lukem 			code = -1;
    669       1.30     lukem 			goto cleanupsend;
    670        1.1       cgd 		}
    671        1.1       cgd 		closefunc = fclose;
    672       1.29   mycroft 		if (fstat(fileno(fin), &st) < 0 || !S_ISREG(st.st_mode)) {
    673       1.35     lukem 			fprintf(ttyout, "%s: not a plain file.\n", local);
    674       1.79     lukem 			code = -1;
    675       1.30     lukem 			goto cleanupsend;
    676        1.1       cgd 		}
    677       1.16     lukem 		filesize = st.st_size;
    678        1.1       cgd 	}
    679        1.1       cgd 	if (initconn()) {
    680       1.79     lukem 		code = -1;
    681       1.30     lukem 		goto cleanupsend;
    682        1.1       cgd 	}
    683       1.81     lukem 	if (sigsetjmp(xferabort, 1))
    684        1.1       cgd 		goto abort;
    685        1.1       cgd 
    686        1.1       cgd 	if (restart_point &&
    687        1.1       cgd 	    (strcmp(cmd, "STOR") == 0 || strcmp(cmd, "APPE") == 0)) {
    688        1.6       cgd 		int rc;
    689        1.6       cgd 
    690       1.21     lukem 		rc = -1;
    691        1.6       cgd 		switch (curtype) {
    692        1.6       cgd 		case TYPE_A:
    693      1.115     lukem 			rc = fseeko(fin, restart_point, SEEK_SET);
    694        1.6       cgd 			break;
    695        1.6       cgd 		case TYPE_I:
    696        1.6       cgd 		case TYPE_L:
    697        1.6       cgd 			rc = lseek(fileno(fin), restart_point, SEEK_SET);
    698        1.6       cgd 			break;
    699        1.6       cgd 		}
    700        1.6       cgd 		if (rc < 0) {
    701        1.6       cgd 			warn("local: %s", local);
    702       1.30     lukem 			goto cleanupsend;
    703        1.1       cgd 		}
    704      1.107     lukem 		if (command("REST " LLF, (LLT)restart_point) != CONTINUE)
    705       1.30     lukem 			goto cleanupsend;
    706      1.119     lukem 		lmode = "r+";
    707        1.1       cgd 	}
    708        1.1       cgd 	if (remote) {
    709       1.85     lukem 		if (command("%s %s", cmd, remote) != PRELIM)
    710       1.30     lukem 			goto cleanupsend;
    711       1.85     lukem 	} else {
    712       1.85     lukem 		if (command("%s", cmd) != PRELIM)
    713       1.30     lukem 			goto cleanupsend;
    714       1.85     lukem 	}
    715      1.121     lukem 	dirchange = 1;
    716        1.1       cgd 	dout = dataconn(lmode);
    717        1.1       cgd 	if (dout == NULL)
    718        1.1       cgd 		goto abort;
    719       1.64     lukem 
    720       1.64     lukem 	if (sndbuf_size > bufsize) {
    721       1.64     lukem 		if (buf)
    722       1.64     lukem 			(void)free(buf);
    723       1.64     lukem 		bufsize = sndbuf_size;
    724       1.64     lukem 		buf = xmalloc(bufsize);
    725       1.64     lukem 	}
    726       1.64     lukem 
    727       1.16     lukem 	progressmeter(-1);
    728       1.67     lukem 	oldintp = xsignal(SIGPIPE, SIG_IGN);
    729       1.64     lukem 
    730        1.1       cgd 	switch (curtype) {
    731        1.1       cgd 
    732        1.1       cgd 	case TYPE_I:
    733        1.1       cgd 	case TYPE_L:
    734       1.89     lukem 		if (rate_put) {		/* rate limited */
    735       1.89     lukem 			while (1) {
    736       1.89     lukem 				struct timeval then, now, td;
    737       1.89     lukem 				off_t bufrem;
    738       1.46     lukem 
    739       1.62     lukem 				(void)gettimeofday(&then, NULL);
    740       1.89     lukem 				errno = c = d = 0;
    741       1.89     lukem 				bufrem = rate_put;
    742       1.89     lukem 				while (bufrem > 0) {
    743       1.89     lukem 					if ((c = read(fileno(fin), buf,
    744       1.89     lukem 					    MIN(bufsize, bufrem))) <= 0)
    745       1.89     lukem 						goto senddone;
    746       1.89     lukem 					bytes += c;
    747       1.89     lukem 					bufrem -= c;
    748       1.89     lukem 					for (bufp = buf; c > 0;
    749       1.89     lukem 					    c -= d, bufp += d)
    750       1.89     lukem 						if ((d = write(fileno(dout),
    751       1.89     lukem 						    bufp, c)) <= 0)
    752       1.89     lukem 							break;
    753       1.89     lukem 					if (d < 0)
    754       1.89     lukem 						goto senddone;
    755       1.89     lukem 					if (hash &&
    756       1.89     lukem 					    (!progress || filesize < 0) ) {
    757       1.89     lukem 						while (bytes >= hashbytes) {
    758       1.89     lukem 							(void)putc('#', ttyout);
    759       1.89     lukem 							hashbytes += mark;
    760       1.89     lukem 						}
    761       1.89     lukem 						(void)fflush(ttyout);
    762       1.89     lukem 					}
    763       1.89     lukem 				}
    764       1.89     lukem 				while (1) {
    765       1.89     lukem 					(void)gettimeofday(&now, NULL);
    766       1.89     lukem 					timersub(&now, &then, &td);
    767       1.89     lukem 					if (td.tv_sec > 0)
    768       1.89     lukem 						break;
    769       1.89     lukem 					usleep(1000000 - td.tv_usec);
    770       1.89     lukem 				}
    771       1.89     lukem 			}
    772      1.102     lukem 		} else {		/* simpler/faster; no rate limit */
    773       1.89     lukem 			while (1) {
    774       1.89     lukem 				errno = c = d = 0;
    775       1.89     lukem 				if ((c = read(fileno(fin), buf, bufsize)) <= 0)
    776       1.46     lukem 					goto senddone;
    777       1.46     lukem 				bytes += c;
    778       1.46     lukem 				for (bufp = buf; c > 0; c -= d, bufp += d)
    779       1.46     lukem 					if ((d = write(fileno(dout), bufp, c))
    780       1.46     lukem 					    <= 0)
    781       1.46     lukem 						break;
    782       1.46     lukem 				if (d < 0)
    783       1.46     lukem 					goto senddone;
    784       1.46     lukem 				if (hash && (!progress || filesize < 0) ) {
    785       1.46     lukem 					while (bytes >= hashbytes) {
    786       1.46     lukem 						(void)putc('#', ttyout);
    787       1.46     lukem 						hashbytes += mark;
    788       1.46     lukem 					}
    789       1.46     lukem 					(void)fflush(ttyout);
    790       1.46     lukem 				}
    791       1.46     lukem 			}
    792        1.1       cgd 		}
    793       1.46     lukem  senddone:
    794       1.22     lukem 		if (hash && (!progress || filesize < 0) && bytes > 0) {
    795       1.14     lukem 			if (bytes < mark)
    796       1.35     lukem 				(void)putc('#', ttyout);
    797       1.35     lukem 			(void)putc('\n', ttyout);
    798        1.1       cgd 		}
    799        1.1       cgd 		if (c < 0)
    800        1.6       cgd 			warn("local: %s", local);
    801        1.1       cgd 		if (d < 0) {
    802       1.14     lukem 			if (errno != EPIPE)
    803        1.6       cgd 				warn("netout");
    804        1.1       cgd 			bytes = -1;
    805        1.1       cgd 		}
    806        1.1       cgd 		break;
    807        1.1       cgd 
    808        1.1       cgd 	case TYPE_A:
    809        1.1       cgd 		while ((c = getc(fin)) != EOF) {
    810        1.1       cgd 			if (c == '\n') {
    811       1.22     lukem 				while (hash && (!progress || filesize < 0) &&
    812       1.16     lukem 				    (bytes >= hashbytes)) {
    813       1.35     lukem 					(void)putc('#', ttyout);
    814       1.35     lukem 					(void)fflush(ttyout);
    815       1.14     lukem 					hashbytes += mark;
    816        1.1       cgd 				}
    817        1.1       cgd 				if (ferror(dout))
    818        1.1       cgd 					break;
    819       1.23     lukem 				(void)putc('\r', dout);
    820        1.1       cgd 				bytes++;
    821        1.1       cgd 			}
    822       1.23     lukem 			(void)putc(c, dout);
    823        1.1       cgd 			bytes++;
    824       1.16     lukem #if 0	/* this violates RFC */
    825       1.16     lukem 			if (c == '\r') {
    826       1.16     lukem 				(void)putc('\0', dout);
    827       1.16     lukem 				bytes++;
    828       1.16     lukem 			}
    829       1.16     lukem #endif
    830        1.1       cgd 		}
    831       1.22     lukem 		if (hash && (!progress || filesize < 0)) {
    832        1.1       cgd 			if (bytes < hashbytes)
    833       1.35     lukem 				(void)putc('#', ttyout);
    834       1.35     lukem 			(void)putc('\n', ttyout);
    835        1.1       cgd 		}
    836        1.1       cgd 		if (ferror(fin))
    837        1.6       cgd 			warn("local: %s", local);
    838        1.1       cgd 		if (ferror(dout)) {
    839        1.1       cgd 			if (errno != EPIPE)
    840        1.6       cgd 				warn("netout");
    841        1.1       cgd 			bytes = -1;
    842        1.1       cgd 		}
    843        1.1       cgd 		break;
    844        1.1       cgd 	}
    845       1.78     lukem 
    846       1.22     lukem 	progressmeter(1);
    847       1.78     lukem 	if (closefunc != NULL) {
    848        1.1       cgd 		(*closefunc)(fin);
    849       1.78     lukem 		fin = NULL;
    850       1.78     lukem 	}
    851       1.79     lukem 	(void)fclose(dout);
    852       1.79     lukem 	dout = NULL;
    853       1.23     lukem 	(void)getreply(0);
    854        1.1       cgd 	if (bytes > 0)
    855       1.16     lukem 		ptransfer(0);
    856       1.30     lukem 	goto cleanupsend;
    857       1.78     lukem 
    858      1.102     lukem  abort:
    859       1.80     lukem 	(void)xsignal(SIGINT, oldintr);
    860       1.80     lukem 	oldintr = NULL;
    861       1.78     lukem 	if (!cpend) {
    862       1.79     lukem 		code = -1;
    863       1.78     lukem 		goto cleanupsend;
    864       1.78     lukem 	}
    865       1.80     lukem 	if (data >= 0) {
    866       1.80     lukem 		(void)close(data);
    867       1.80     lukem 		data = -1;
    868       1.80     lukem 	}
    869       1.80     lukem 	if (dout) {
    870       1.80     lukem 		(void)fclose(dout);
    871       1.80     lukem 		dout = NULL;
    872       1.80     lukem 	}
    873       1.78     lukem 	(void)getreply(0);
    874       1.79     lukem 	code = -1;
    875       1.78     lukem 	if (bytes > 0)
    876       1.78     lukem 		ptransfer(0);
    877       1.78     lukem 
    878      1.102     lukem  cleanupsend:
    879       1.81     lukem 	if (oldintr)
    880       1.81     lukem 		(void)xsignal(SIGINT, oldintr);
    881       1.81     lukem 	if (oldintp)
    882       1.81     lukem 		(void)xsignal(SIGPIPE, oldintp);
    883       1.80     lukem 	if (data >= 0) {
    884       1.80     lukem 		(void)close(data);
    885       1.80     lukem 		data = -1;
    886       1.80     lukem 	}
    887       1.78     lukem 	if (closefunc != NULL && fin != NULL)
    888       1.78     lukem 		(*closefunc)(fin);
    889       1.78     lukem 	if (dout)
    890       1.78     lukem 		(void)fclose(dout);
    891       1.30     lukem 	progress = oprogress;
    892       1.30     lukem 	restart_point = 0;
    893       1.78     lukem 	bytes = 0;
    894        1.1       cgd }
    895        1.1       cgd 
    896        1.6       cgd void
    897       1.95     lukem recvrequest(const char *cmd, const char *local, const char *remote,
    898       1.95     lukem 	    const char *lmode, int printnames, int ignorespecial)
    899        1.1       cgd {
    900       1.26     lukem 	FILE *fout, *din;
    901       1.95     lukem 	int (*closefunc)(FILE *);
    902       1.90     lukem 	sigfunc oldintr, oldintp;
    903       1.26     lukem 	int c, d;
    904       1.26     lukem 	volatile int is_retr, tcrflag, bare_lfs;
    905       1.47     lukem 	static size_t bufsize;
    906       1.47     lukem 	static char *buf;
    907       1.26     lukem 	volatile off_t hashbytes;
    908        1.1       cgd 	struct stat st;
    909       1.15     lukem 	time_t mtime;
    910       1.16     lukem 	struct timeval tval[2];
    911       1.23     lukem 	int oprogress;
    912       1.24     lukem 	int opreserve;
    913        1.1       cgd 
    914       1.35     lukem #ifdef __GNUC__			/* to shut up gcc warnings */
    915       1.26     lukem 	(void)&local;
    916       1.26     lukem 	(void)&fout;
    917       1.26     lukem 	(void)&din;
    918       1.26     lukem 	(void)&closefunc;
    919       1.26     lukem 	(void)&oldintr;
    920       1.26     lukem 	(void)&oldintp;
    921       1.26     lukem #endif
    922       1.26     lukem 
    923       1.26     lukem 	fout = NULL;
    924       1.26     lukem 	din = NULL;
    925       1.16     lukem 	hashbytes = mark;
    926       1.14     lukem 	direction = "received";
    927       1.14     lukem 	bytes = 0;
    928       1.26     lukem 	bare_lfs = 0;
    929       1.16     lukem 	filesize = -1;
    930       1.23     lukem 	oprogress = progress;
    931       1.24     lukem 	opreserve = preserve;
    932       1.30     lukem 	is_retr = (strcmp(cmd, "RETR") == 0);
    933        1.1       cgd 	if (is_retr && verbose && printnames) {
    934       1.27     lukem 		if (local && (ignorespecial || *local != '-'))
    935       1.35     lukem 			fprintf(ttyout, "local: %s ", local);
    936        1.1       cgd 		if (remote)
    937       1.35     lukem 			fprintf(ttyout, "remote: %s\n", remote);
    938        1.1       cgd 	}
    939        1.1       cgd 	if (proxy && is_retr) {
    940        1.1       cgd 		proxtrans(cmd, local, remote);
    941        1.1       cgd 		return;
    942        1.1       cgd 	}
    943        1.1       cgd 	closefunc = NULL;
    944        1.1       cgd 	oldintr = NULL;
    945        1.1       cgd 	oldintp = NULL;
    946        1.1       cgd 	tcrflag = !crflag && is_retr;
    947       1.81     lukem 	if (sigsetjmp(xferabort, 1)) {
    948       1.85     lukem 		while (cpend)
    949       1.23     lukem 			(void)getreply(0);
    950       1.79     lukem 		code = -1;
    951       1.78     lukem 		goto cleanuprecv;
    952        1.1       cgd 	}
    953       1.80     lukem 	(void)xsignal(SIGQUIT, psummary);
    954       1.81     lukem 	oldintr = xsignal(SIGINT, abortxfer);
    955       1.27     lukem 	if (ignorespecial || (strcmp(local, "-") && *local != '|')) {
    956       1.28     lukem 		if (access(local, W_OK) < 0) {
    957        1.6       cgd 			char *dir = strrchr(local, '/');
    958        1.1       cgd 
    959        1.1       cgd 			if (errno != ENOENT && errno != EACCES) {
    960        1.6       cgd 				warn("local: %s", local);
    961       1.79     lukem 				code = -1;
    962       1.78     lukem 				goto cleanuprecv;
    963        1.1       cgd 			}
    964        1.1       cgd 			if (dir != NULL)
    965        1.1       cgd 				*dir = 0;
    966       1.46     lukem 			d = access(dir == local ? "/" :
    967       1.46     lukem 			    dir ? local : ".", W_OK);
    968        1.1       cgd 			if (dir != NULL)
    969        1.1       cgd 				*dir = '/';
    970        1.1       cgd 			if (d < 0) {
    971        1.6       cgd 				warn("local: %s", local);
    972       1.79     lukem 				code = -1;
    973       1.78     lukem 				goto cleanuprecv;
    974        1.1       cgd 			}
    975        1.1       cgd 			if (!runique && errno == EACCES &&
    976       1.35     lukem 			    chmod(local, (S_IRUSR|S_IWUSR)) < 0) {
    977        1.6       cgd 				warn("local: %s", local);
    978       1.79     lukem 				code = -1;
    979       1.78     lukem 				goto cleanuprecv;
    980        1.1       cgd 			}
    981        1.1       cgd 			if (runique && errno == EACCES &&
    982        1.1       cgd 			   (local = gunique(local)) == NULL) {
    983       1.79     lukem 				code = -1;
    984       1.78     lukem 				goto cleanuprecv;
    985        1.1       cgd 			}
    986        1.1       cgd 		}
    987        1.1       cgd 		else if (runique && (local = gunique(local)) == NULL) {
    988       1.79     lukem 			code = -1;
    989       1.78     lukem 			goto cleanuprecv;
    990        1.1       cgd 		}
    991        1.1       cgd 	}
    992        1.1       cgd 	if (!is_retr) {
    993        1.1       cgd 		if (curtype != TYPE_A)
    994        1.1       cgd 			changetype(TYPE_A, 0);
    995       1.16     lukem 	} else {
    996       1.16     lukem 		if (curtype != type)
    997       1.16     lukem 			changetype(type, 0);
    998       1.19     lukem 		filesize = remotesize(remote, 0);
    999       1.85     lukem 		if (code == 421 || code == -1)
   1000       1.85     lukem 			goto cleanuprecv;
   1001       1.16     lukem 	}
   1002        1.1       cgd 	if (initconn()) {
   1003       1.79     lukem 		code = -1;
   1004       1.78     lukem 		goto cleanuprecv;
   1005        1.1       cgd 	}
   1006       1.81     lukem 	if (sigsetjmp(xferabort, 1))
   1007        1.1       cgd 		goto abort;
   1008        1.1       cgd 	if (is_retr && restart_point &&
   1009      1.107     lukem 	    command("REST " LLF, (LLT) restart_point) != CONTINUE)
   1010       1.78     lukem 		goto cleanuprecv;
   1011       1.88     lukem 	if (! EMPTYSTRING(remote)) {
   1012       1.85     lukem 		if (command("%s %s", cmd, remote) != PRELIM)
   1013       1.78     lukem 			goto cleanuprecv;
   1014        1.1       cgd 	} else {
   1015       1.85     lukem 		if (command("%s", cmd) != PRELIM)
   1016       1.78     lukem 			goto cleanuprecv;
   1017        1.1       cgd 	}
   1018        1.1       cgd 	din = dataconn("r");
   1019        1.1       cgd 	if (din == NULL)
   1020        1.1       cgd 		goto abort;
   1021       1.27     lukem 	if (!ignorespecial && strcmp(local, "-") == 0) {
   1022        1.1       cgd 		fout = stdout;
   1023       1.23     lukem 		progress = 0;
   1024       1.24     lukem 		preserve = 0;
   1025       1.27     lukem 	} else if (!ignorespecial && *local == '|') {
   1026       1.67     lukem 		oldintp = xsignal(SIGPIPE, SIG_IGN);
   1027        1.1       cgd 		fout = popen(local + 1, "w");
   1028        1.1       cgd 		if (fout == NULL) {
   1029        1.6       cgd 			warn("%s", local+1);
   1030        1.1       cgd 			goto abort;
   1031        1.1       cgd 		}
   1032       1.23     lukem 		progress = 0;
   1033       1.24     lukem 		preserve = 0;
   1034        1.1       cgd 		closefunc = pclose;
   1035        1.1       cgd 	} else {
   1036        1.1       cgd 		fout = fopen(local, lmode);
   1037        1.1       cgd 		if (fout == NULL) {
   1038        1.6       cgd 			warn("local: %s", local);
   1039        1.1       cgd 			goto abort;
   1040        1.1       cgd 		}
   1041        1.1       cgd 		closefunc = fclose;
   1042        1.1       cgd 	}
   1043       1.46     lukem 
   1044       1.64     lukem 	if (fstat(fileno(fout), &st) != -1 && !S_ISREG(st.st_mode)) {
   1045       1.64     lukem 		progress = 0;
   1046       1.64     lukem 		preserve = 0;
   1047       1.64     lukem 	}
   1048       1.64     lukem 	if (rcvbuf_size > bufsize) {
   1049        1.1       cgd 		if (buf)
   1050       1.23     lukem 			(void)free(buf);
   1051       1.64     lukem 		bufsize = rcvbuf_size;
   1052       1.37     lukem 		buf = xmalloc(bufsize);
   1053        1.1       cgd 	}
   1054       1.64     lukem 
   1055       1.16     lukem 	progressmeter(-1);
   1056       1.64     lukem 
   1057        1.1       cgd 	switch (curtype) {
   1058        1.1       cgd 
   1059        1.1       cgd 	case TYPE_I:
   1060        1.1       cgd 	case TYPE_L:
   1061       1.30     lukem 		if (is_retr && restart_point &&
   1062        1.6       cgd 		    lseek(fileno(fout), restart_point, SEEK_SET) < 0) {
   1063        1.6       cgd 			warn("local: %s", local);
   1064       1.78     lukem 			goto cleanuprecv;
   1065        1.1       cgd 		}
   1066       1.89     lukem 		if (rate_get) {		/* rate limiting */
   1067       1.89     lukem 			while (1) {
   1068       1.89     lukem 				struct timeval then, now, td;
   1069       1.89     lukem 				off_t bufrem;
   1070       1.46     lukem 
   1071       1.62     lukem 				(void)gettimeofday(&then, NULL);
   1072       1.89     lukem 				errno = c = d = 0;
   1073       1.89     lukem 				for (bufrem = rate_get; bufrem > 0; ) {
   1074       1.89     lukem 					if ((c = read(fileno(din), buf,
   1075       1.89     lukem 					    MIN(bufsize, bufrem))) <= 0)
   1076       1.89     lukem 						goto recvdone;
   1077       1.89     lukem 					bytes += c;
   1078       1.89     lukem 					bufrem -=c;
   1079       1.89     lukem 					if ((d = write(fileno(fout), buf, c))
   1080       1.89     lukem 					    != c)
   1081       1.89     lukem 						goto recvdone;
   1082       1.89     lukem 					if (hash &&
   1083       1.89     lukem 					    (!progress || filesize < 0)) {
   1084       1.89     lukem 						while (bytes >= hashbytes) {
   1085       1.89     lukem 							(void)putc('#', ttyout);
   1086       1.89     lukem 							hashbytes += mark;
   1087       1.89     lukem 						}
   1088       1.89     lukem 						(void)fflush(ttyout);
   1089       1.89     lukem 					}
   1090       1.89     lukem 				}
   1091       1.89     lukem 					/* sleep until time is up */
   1092       1.89     lukem 				while (1) {
   1093       1.89     lukem 					(void)gettimeofday(&now, NULL);
   1094       1.89     lukem 					timersub(&now, &then, &td);
   1095       1.89     lukem 					if (td.tv_sec > 0)
   1096       1.89     lukem 						break;
   1097       1.89     lukem 					usleep(1000000 - td.tv_usec);
   1098       1.89     lukem 				}
   1099       1.89     lukem 			}
   1100       1.89     lukem 		} else {		/* faster code (no limiting) */
   1101       1.89     lukem 			while (1) {
   1102       1.89     lukem 				errno = c = d = 0;
   1103       1.89     lukem 				if ((c = read(fileno(din), buf, bufsize)) <= 0)
   1104       1.46     lukem 					goto recvdone;
   1105       1.46     lukem 				bytes += c;
   1106       1.46     lukem 				if ((d = write(fileno(fout), buf, c)) != c)
   1107       1.46     lukem 					goto recvdone;
   1108       1.46     lukem 				if (hash && (!progress || filesize < 0)) {
   1109       1.46     lukem 					while (bytes >= hashbytes) {
   1110       1.46     lukem 						(void)putc('#', ttyout);
   1111       1.46     lukem 						hashbytes += mark;
   1112       1.46     lukem 					}
   1113       1.46     lukem 					(void)fflush(ttyout);
   1114        1.1       cgd 				}
   1115        1.1       cgd 			}
   1116        1.1       cgd 		}
   1117       1.46     lukem  recvdone:
   1118       1.22     lukem 		if (hash && (!progress || filesize < 0) && bytes > 0) {
   1119       1.14     lukem 			if (bytes < mark)
   1120       1.35     lukem 				(void)putc('#', ttyout);
   1121       1.35     lukem 			(void)putc('\n', ttyout);
   1122        1.1       cgd 		}
   1123        1.1       cgd 		if (c < 0) {
   1124        1.1       cgd 			if (errno != EPIPE)
   1125        1.6       cgd 				warn("netin");
   1126        1.1       cgd 			bytes = -1;
   1127        1.1       cgd 		}
   1128        1.1       cgd 		if (d < c) {
   1129        1.1       cgd 			if (d < 0)
   1130        1.6       cgd 				warn("local: %s", local);
   1131        1.1       cgd 			else
   1132        1.6       cgd 				warnx("%s: short write", local);
   1133        1.1       cgd 		}
   1134        1.1       cgd 		break;
   1135        1.1       cgd 
   1136        1.1       cgd 	case TYPE_A:
   1137       1.30     lukem 		if (is_retr && restart_point) {
   1138       1.30     lukem 			int ch;
   1139      1.115     lukem 			off_t i;
   1140        1.1       cgd 
   1141      1.115     lukem 			if (fseeko(fout, (off_t)0, SEEK_SET) < 0)
   1142        1.1       cgd 				goto done;
   1143      1.115     lukem 			for (i = 0; i++ < restart_point;) {
   1144        1.1       cgd 				if ((ch = getc(fout)) == EOF)
   1145        1.1       cgd 					goto done;
   1146        1.1       cgd 				if (ch == '\n')
   1147        1.1       cgd 					i++;
   1148        1.1       cgd 			}
   1149      1.115     lukem 			if (fseeko(fout, (off_t)0, SEEK_CUR) < 0) {
   1150      1.102     lukem  done:
   1151        1.6       cgd 				warn("local: %s", local);
   1152       1.78     lukem 				goto cleanuprecv;
   1153        1.1       cgd 			}
   1154        1.1       cgd 		}
   1155        1.1       cgd 		while ((c = getc(din)) != EOF) {
   1156        1.1       cgd 			if (c == '\n')
   1157        1.1       cgd 				bare_lfs++;
   1158        1.1       cgd 			while (c == '\r') {
   1159       1.22     lukem 				while (hash && (!progress || filesize < 0) &&
   1160       1.16     lukem 				    (bytes >= hashbytes)) {
   1161       1.35     lukem 					(void)putc('#', ttyout);
   1162       1.35     lukem 					(void)fflush(ttyout);
   1163       1.14     lukem 					hashbytes += mark;
   1164        1.1       cgd 				}
   1165        1.1       cgd 				bytes++;
   1166        1.1       cgd 				if ((c = getc(din)) != '\n' || tcrflag) {
   1167        1.1       cgd 					if (ferror(fout))
   1168        1.1       cgd 						goto break2;
   1169       1.23     lukem 					(void)putc('\r', fout);
   1170        1.1       cgd 					if (c == '\0') {
   1171        1.1       cgd 						bytes++;
   1172        1.1       cgd 						goto contin2;
   1173        1.1       cgd 					}
   1174        1.1       cgd 					if (c == EOF)
   1175        1.1       cgd 						goto contin2;
   1176        1.1       cgd 				}
   1177        1.1       cgd 			}
   1178       1.23     lukem 			(void)putc(c, fout);
   1179        1.1       cgd 			bytes++;
   1180        1.1       cgd 	contin2:	;
   1181        1.1       cgd 		}
   1182      1.114     lukem  break2:
   1183       1.22     lukem 		if (hash && (!progress || filesize < 0)) {
   1184        1.1       cgd 			if (bytes < hashbytes)
   1185       1.35     lukem 				(void)putc('#', ttyout);
   1186       1.35     lukem 			(void)putc('\n', ttyout);
   1187        1.1       cgd 		}
   1188        1.1       cgd 		if (ferror(din)) {
   1189        1.1       cgd 			if (errno != EPIPE)
   1190        1.6       cgd 				warn("netin");
   1191        1.1       cgd 			bytes = -1;
   1192        1.1       cgd 		}
   1193        1.1       cgd 		if (ferror(fout))
   1194        1.6       cgd 			warn("local: %s", local);
   1195        1.1       cgd 		break;
   1196        1.1       cgd 	}
   1197       1.78     lukem 
   1198       1.22     lukem 	progressmeter(1);
   1199       1.78     lukem 	if (closefunc != NULL) {
   1200        1.1       cgd 		(*closefunc)(fout);
   1201       1.78     lukem 		fout = NULL;
   1202       1.78     lukem 	}
   1203       1.79     lukem 	(void)fclose(din);
   1204       1.79     lukem 	din = NULL;
   1205       1.23     lukem 	(void)getreply(0);
   1206       1.43     lukem 	if (bare_lfs) {
   1207       1.43     lukem 		fprintf(ttyout,
   1208       1.43     lukem 		    "WARNING! %d bare linefeeds received in ASCII mode.\n",
   1209       1.43     lukem 		    bare_lfs);
   1210       1.43     lukem 		fputs("File may not have transferred correctly.\n", ttyout);
   1211       1.43     lukem 	}
   1212       1.19     lukem 	if (bytes >= 0 && is_retr) {
   1213       1.19     lukem 		if (bytes > 0)
   1214       1.19     lukem 			ptransfer(0);
   1215       1.15     lukem 		if (preserve && (closefunc == fclose)) {
   1216       1.19     lukem 			mtime = remotemodtime(remote, 0);
   1217       1.15     lukem 			if (mtime != -1) {
   1218       1.31     lukem 				(void)gettimeofday(&tval[0], NULL);
   1219       1.16     lukem 				tval[1].tv_sec = mtime;
   1220       1.16     lukem 				tval[1].tv_usec = 0;
   1221       1.16     lukem 				if (utimes(local, tval) == -1) {
   1222       1.35     lukem 					fprintf(ttyout,
   1223       1.23     lukem 				"Can't change modification time on %s to %s",
   1224       1.23     lukem 					    local, asctime(localtime(&mtime)));
   1225       1.15     lukem 				}
   1226       1.15     lukem 			}
   1227       1.15     lukem 		}
   1228       1.15     lukem 	}
   1229       1.78     lukem 	goto cleanuprecv;
   1230       1.23     lukem 
   1231      1.102     lukem  abort:
   1232       1.78     lukem 			/*
   1233       1.78     lukem 			 * abort using RFC 959 recommended IP,SYNC sequence
   1234       1.78     lukem 			 */
   1235       1.82     lukem 	if (! sigsetjmp(xferabort, 1)) {
   1236       1.82     lukem 			/* this is the first call */
   1237       1.82     lukem 		(void)xsignal(SIGINT, abort_squared);
   1238       1.82     lukem 		if (!cpend) {
   1239       1.82     lukem 			code = -1;
   1240       1.82     lukem 			goto cleanuprecv;
   1241       1.82     lukem 		}
   1242       1.82     lukem 		abort_remote(din);
   1243       1.78     lukem 	}
   1244       1.80     lukem 	code = -1;
   1245       1.78     lukem 	if (bytes > 0)
   1246       1.78     lukem 		ptransfer(0);
   1247        1.1       cgd 
   1248      1.102     lukem  cleanuprecv:
   1249       1.81     lukem 	if (oldintr)
   1250       1.81     lukem 		(void)xsignal(SIGINT, oldintr);
   1251       1.81     lukem 	if (oldintp)
   1252       1.81     lukem 		(void)xsignal(SIGPIPE, oldintp);
   1253       1.80     lukem 	if (data >= 0) {
   1254       1.80     lukem 		(void)close(data);
   1255       1.80     lukem 		data = -1;
   1256       1.80     lukem 	}
   1257       1.78     lukem 	if (closefunc != NULL && fout != NULL)
   1258       1.78     lukem 		(*closefunc)(fout);
   1259       1.78     lukem 	if (din)
   1260       1.78     lukem 		(void)fclose(din);
   1261       1.78     lukem 	progress = oprogress;
   1262       1.78     lukem 	preserve = opreserve;
   1263       1.78     lukem 	bytes = 0;
   1264        1.1       cgd }
   1265        1.1       cgd 
   1266        1.1       cgd /*
   1267        1.1       cgd  * Need to start a listen on the data channel before we send the command,
   1268        1.1       cgd  * otherwise the server's connect may fail.
   1269        1.1       cgd  */
   1270        1.6       cgd int
   1271       1.95     lukem initconn(void)
   1272        1.1       cgd {
   1273        1.6       cgd 	char *p, *a;
   1274  1.126.2.6      tron 	int result, tmpno = 0;
   1275        1.1       cgd 	int on = 1;
   1276       1.48    itojun 	int error;
   1277       1.48    itojun 	u_int addr[16], port[2];
   1278       1.48    itojun 	u_int af, hal, pal;
   1279  1.126.2.6      tron 	socklen_t len;
   1280       1.48    itojun 	char *pasvcmd = NULL;
   1281        1.8       cgd 
   1282       1.62     lukem #ifdef INET6
   1283       1.93    itojun 	if (myctladdr.su_family == AF_INET6 && debug &&
   1284      1.104     lukem 	    (IN6_IS_ADDR_LINKLOCAL(&myctladdr.si_su.su_sin6.sin6_addr) ||
   1285      1.104     lukem 	     IN6_IS_ADDR_SITELOCAL(&myctladdr.si_su.su_sin6.sin6_addr))) {
   1286       1.59    itojun 		warnx("use of scoped address can be troublesome");
   1287       1.59    itojun 	}
   1288       1.62     lukem #endif
   1289      1.102     lukem  reinit:
   1290        1.8       cgd 	if (passivemode) {
   1291       1.48    itojun 		data_addr = myctladdr;
   1292       1.48    itojun 		data = socket(data_addr.su_family, SOCK_STREAM, 0);
   1293        1.8       cgd 		if (data < 0) {
   1294       1.19     lukem 			warn("socket");
   1295       1.21     lukem 			return (1);
   1296        1.8       cgd 		}
   1297        1.8       cgd 		if ((options & SO_DEBUG) &&
   1298  1.126.2.4       snj 		    setsockopt(data, SOL_SOCKET, SO_DEBUG,
   1299  1.126.2.4       snj 				(void *)&on, sizeof(on)) == -1) {
   1300      1.123     lukem 			if (debug)
   1301  1.126.2.4       snj 				warn("setsockopt %s (ignored)", "SO_DEBUG");
   1302  1.126.2.4       snj 		}
   1303       1.54    itojun 		result = COMPLETE + 1;
   1304       1.48    itojun 		switch (data_addr.su_family) {
   1305       1.48    itojun 		case AF_INET:
   1306       1.74     lukem 			if (epsv4 && !epsv4bad) {
   1307  1.126.2.2      tron 				pasvcmd = "EPSV";
   1308      1.110        is 				result = command("EPSV");
   1309       1.85     lukem 				if (!connected)
   1310       1.85     lukem 					return (1);
   1311       1.55    itojun 				/*
   1312       1.55    itojun 				 * this code is to be friendly with broken
   1313       1.55    itojun 				 * BSDI ftpd
   1314       1.55    itojun 				 */
   1315       1.56    itojun 				if (code / 10 == 22 && code != 229) {
   1316       1.55    itojun 					fputs(
   1317       1.55    itojun "wrong server: return code must be 229\n",
   1318       1.55    itojun 						ttyout);
   1319       1.55    itojun 					result = COMPLETE + 1;
   1320       1.55    itojun 				}
   1321       1.74     lukem 				if (result != COMPLETE) {
   1322       1.74     lukem 					epsv4bad = 1;
   1323       1.74     lukem 					if (debug)
   1324       1.74     lukem 						fputs(
   1325       1.74     lukem 					"disabling epsv4 for this connection\n",
   1326       1.74     lukem 						    ttyout);
   1327       1.74     lukem 				}
   1328       1.55    itojun 			}
   1329       1.85     lukem 			if (result != COMPLETE) {
   1330  1.126.2.2      tron 				pasvcmd = "PASV";
   1331      1.110        is 				result = command("PASV");
   1332       1.85     lukem 				if (!connected)
   1333       1.85     lukem 					return (1);
   1334       1.85     lukem 			}
   1335       1.48    itojun 			break;
   1336       1.62     lukem #ifdef INET6
   1337       1.48    itojun 		case AF_INET6:
   1338  1.126.2.2      tron 			pasvcmd = "EPSV";
   1339      1.110        is 			result = command("EPSV");
   1340       1.85     lukem 			if (!connected)
   1341       1.85     lukem 				return (1);
   1342       1.55    itojun 			/* this code is to be friendly with broken BSDI ftpd */
   1343       1.56    itojun 			if (code / 10 == 22 && code != 229) {
   1344       1.55    itojun 				fputs(
   1345       1.55    itojun "wrong server: return code must be 229\n",
   1346       1.55    itojun 					ttyout);
   1347       1.55    itojun 				result = COMPLETE + 1;
   1348       1.55    itojun 			}
   1349      1.110        is 			if (result != COMPLETE) {
   1350      1.110        is 				pasvcmd = "LPSV";
   1351      1.110        is 				result = command("LPSV");
   1352      1.110        is 			}
   1353       1.85     lukem 			if (!connected)
   1354       1.85     lukem 				return (1);
   1355       1.48    itojun 			break;
   1356       1.62     lukem #endif
   1357       1.48    itojun 		default:
   1358       1.57    itojun 			result = COMPLETE + 1;
   1359       1.54    itojun 			break;
   1360       1.48    itojun 		}
   1361       1.48    itojun 		if (result != COMPLETE) {
   1362       1.35     lukem 			if (activefallback) {
   1363       1.35     lukem 				(void)close(data);
   1364       1.35     lukem 				data = -1;
   1365       1.35     lukem 				passivemode = 0;
   1366       1.85     lukem #if 0
   1367       1.35     lukem 				activefallback = 0;
   1368       1.85     lukem #endif
   1369       1.35     lukem 				goto reinit;
   1370       1.35     lukem 			}
   1371       1.35     lukem 			fputs("Passive mode refused.\n", ttyout);
   1372        1.8       cgd 			goto bad;
   1373        1.8       cgd 		}
   1374        1.8       cgd 
   1375       1.85     lukem #define	pack2(var, off) \
   1376       1.48    itojun 	(((var[(off) + 0] & 0xff) << 8) | ((var[(off) + 1] & 0xff) << 0))
   1377       1.85     lukem #define	pack4(var, off) \
   1378       1.48    itojun 	(((var[(off) + 0] & 0xff) << 24) | ((var[(off) + 1] & 0xff) << 16) | \
   1379       1.48    itojun 	 ((var[(off) + 2] & 0xff) << 8) | ((var[(off) + 3] & 0xff) << 0))
   1380      1.100     lukem #define	UC(b)	(((int)b)&0xff)
   1381       1.48    itojun 
   1382        1.8       cgd 		/*
   1383       1.48    itojun 		 * What we've got at this point is a string of comma separated
   1384       1.48    itojun 		 * one-byte unsigned integer values, separated by commas.
   1385        1.8       cgd 		 */
   1386       1.55    itojun 		if (strcmp(pasvcmd, "PASV") == 0) {
   1387       1.55    itojun 			if (data_addr.su_family != AF_INET) {
   1388       1.55    itojun 				fputs(
   1389      1.105     lukem     "Passive mode AF mismatch. Shouldn't happen!\n", ttyout);
   1390       1.55    itojun 				error = 1;
   1391       1.55    itojun 				goto bad;
   1392       1.55    itojun 			}
   1393       1.56    itojun 			if (code / 10 == 22 && code != 227) {
   1394       1.55    itojun 				fputs("wrong server: return code must be 227\n",
   1395       1.55    itojun 					ttyout);
   1396       1.55    itojun 				error = 1;
   1397       1.55    itojun 				goto bad;
   1398       1.55    itojun 			}
   1399       1.55    itojun 			error = sscanf(pasv, "%u,%u,%u,%u,%u,%u",
   1400       1.55    itojun 					&addr[0], &addr[1], &addr[2], &addr[3],
   1401       1.55    itojun 					&port[0], &port[1]);
   1402       1.55    itojun 			if (error != 6) {
   1403       1.55    itojun 				fputs(
   1404       1.55    itojun "Passive mode address scan failure. Shouldn't happen!\n", ttyout);
   1405       1.55    itojun 				error = 1;
   1406       1.55    itojun 				goto bad;
   1407       1.55    itojun 			}
   1408       1.55    itojun 			error = 0;
   1409       1.55    itojun 			memset(&data_addr, 0, sizeof(data_addr));
   1410       1.55    itojun 			data_addr.su_family = AF_INET;
   1411       1.55    itojun 			data_addr.su_len = sizeof(struct sockaddr_in);
   1412      1.104     lukem 			data_addr.si_su.su_sin.sin_addr.s_addr =
   1413      1.104     lukem 			    htonl(pack4(addr, 0));
   1414       1.55    itojun 			data_addr.su_port = htons(pack2(port, 0));
   1415       1.55    itojun 		} else if (strcmp(pasvcmd, "LPSV") == 0) {
   1416       1.56    itojun 			if (code / 10 == 22 && code != 228) {
   1417       1.55    itojun 				fputs("wrong server: return code must be 228\n",
   1418       1.55    itojun 					ttyout);
   1419       1.55    itojun 				error = 1;
   1420       1.55    itojun 				goto bad;
   1421       1.55    itojun 			}
   1422       1.48    itojun 			switch (data_addr.su_family) {
   1423       1.48    itojun 			case AF_INET:
   1424       1.55    itojun 				error = sscanf(pasv,
   1425       1.55    itojun "%u,%u,%u,%u,%u,%u,%u,%u,%u",
   1426       1.57    itojun 					&af, &hal,
   1427       1.55    itojun 					&addr[0], &addr[1], &addr[2], &addr[3],
   1428       1.55    itojun 					&pal, &port[0], &port[1]);
   1429       1.57    itojun 				if (error != 9) {
   1430       1.55    itojun 					fputs(
   1431       1.57    itojun "Passive mode address scan failure. Shouldn't happen!\n", ttyout);
   1432       1.55    itojun 					error = 1;
   1433       1.55    itojun 					goto bad;
   1434       1.55    itojun 				}
   1435       1.57    itojun 				if (af != 4 || hal != 4 || pal != 2) {
   1436       1.48    itojun 					fputs(
   1437       1.57    itojun "Passive mode AF mismatch. Shouldn't happen!\n", ttyout);
   1438       1.48    itojun 					error = 1;
   1439       1.48    itojun 					goto bad;
   1440       1.48    itojun 				}
   1441       1.57    itojun 
   1442       1.48    itojun 				error = 0;
   1443       1.48    itojun 				memset(&data_addr, 0, sizeof(data_addr));
   1444       1.48    itojun 				data_addr.su_family = AF_INET;
   1445       1.48    itojun 				data_addr.su_len = sizeof(struct sockaddr_in);
   1446      1.104     lukem 				data_addr.si_su.su_sin.sin_addr.s_addr =
   1447      1.104     lukem 				    htonl(pack4(addr, 0));
   1448       1.48    itojun 				data_addr.su_port = htons(pack2(port, 0));
   1449       1.48    itojun 				break;
   1450       1.62     lukem #ifdef INET6
   1451       1.48    itojun 			case AF_INET6:
   1452       1.48    itojun 				error = sscanf(pasv,
   1453       1.48    itojun "%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u",
   1454       1.48    itojun 					&af, &hal,
   1455       1.48    itojun 					&addr[0], &addr[1], &addr[2], &addr[3],
   1456       1.48    itojun 					&addr[4], &addr[5], &addr[6], &addr[7],
   1457       1.48    itojun 					&addr[8], &addr[9], &addr[10],
   1458       1.48    itojun 					&addr[11], &addr[12], &addr[13],
   1459       1.48    itojun 					&addr[14], &addr[15],
   1460       1.48    itojun 					&pal, &port[0], &port[1]);
   1461       1.57    itojun 				if (error != 21) {
   1462       1.48    itojun 					fputs(
   1463       1.57    itojun "Passive mode address scan failure. Shouldn't happen!\n", ttyout);
   1464       1.48    itojun 					error = 1;
   1465       1.48    itojun 					goto bad;
   1466       1.48    itojun 				}
   1467       1.57    itojun 				if (af != 6 || hal != 16 || pal != 2) {
   1468       1.48    itojun 					fputs(
   1469       1.57    itojun "Passive mode AF mismatch. Shouldn't happen!\n", ttyout);
   1470       1.48    itojun 					error = 1;
   1471       1.48    itojun 					goto bad;
   1472       1.48    itojun 				}
   1473        1.8       cgd 
   1474       1.48    itojun 				error = 0;
   1475       1.48    itojun 				memset(&data_addr, 0, sizeof(data_addr));
   1476       1.48    itojun 				data_addr.su_family = AF_INET6;
   1477       1.48    itojun 				data_addr.su_len = sizeof(struct sockaddr_in6);
   1478       1.60    itojun 			    {
   1479      1.100     lukem 				int i;
   1480      1.100     lukem 				for (i = 0; i < sizeof(struct in6_addr); i++) {
   1481      1.104     lukem 					data_addr.si_su.su_sin6.sin6_addr.s6_addr[i] =
   1482      1.100     lukem 					    UC(addr[i]);
   1483      1.100     lukem 				}
   1484       1.60    itojun 			    }
   1485       1.48    itojun 				data_addr.su_port = htons(pack2(port, 0));
   1486       1.48    itojun 				break;
   1487       1.62     lukem #endif
   1488       1.48    itojun 			default:
   1489       1.48    itojun 				error = 1;
   1490       1.48    itojun 			}
   1491       1.48    itojun 		} else if (strcmp(pasvcmd, "EPSV") == 0) {
   1492       1.48    itojun 			char delim[4];
   1493       1.48    itojun 
   1494       1.48    itojun 			port[0] = 0;
   1495       1.56    itojun 			if (code / 10 == 22 && code != 229) {
   1496       1.55    itojun 				fputs("wrong server: return code must be 229\n",
   1497       1.55    itojun 					ttyout);
   1498       1.55    itojun 				error = 1;
   1499       1.55    itojun 				goto bad;
   1500       1.55    itojun 			}
   1501       1.48    itojun 			if (sscanf(pasv, "%c%c%c%d%c", &delim[0],
   1502       1.48    itojun 					&delim[1], &delim[2], &port[1],
   1503       1.48    itojun 					&delim[3]) != 5) {
   1504       1.57    itojun 				fputs("parse error!\n", ttyout);
   1505       1.57    itojun 				error = 1;
   1506       1.48    itojun 				goto bad;
   1507       1.48    itojun 			}
   1508       1.48    itojun 			if (delim[0] != delim[1] || delim[0] != delim[2]
   1509       1.48    itojun 			 || delim[0] != delim[3]) {
   1510       1.57    itojun 				fputs("parse error!\n", ttyout);
   1511       1.57    itojun 				error = 1;
   1512       1.48    itojun 				goto bad;
   1513       1.48    itojun 			}
   1514       1.48    itojun 			data_addr = hisctladdr;
   1515       1.48    itojun 			data_addr.su_port = htons(port[1]);
   1516       1.48    itojun 		} else
   1517        1.8       cgd 			goto bad;
   1518        1.8       cgd 
   1519      1.104     lukem 		while (xconnect(data, (struct sockaddr *)&data_addr.si_su,
   1520       1.48    itojun 			    data_addr.su_len) < 0) {
   1521       1.39     lukem 			if (activefallback) {
   1522       1.39     lukem 				(void)close(data);
   1523       1.39     lukem 				data = -1;
   1524       1.39     lukem 				passivemode = 0;
   1525       1.85     lukem #if 0
   1526       1.39     lukem 				activefallback = 0;
   1527       1.85     lukem #endif
   1528       1.39     lukem 				goto reinit;
   1529       1.39     lukem 			}
   1530  1.126.2.5       snj 			warn("connect for data channel");
   1531        1.8       cgd 			goto bad;
   1532        1.8       cgd 		}
   1533       1.92     lukem #ifdef IPTOS_THROUGHPUT
   1534       1.48    itojun 		if (data_addr.su_family == AF_INET) {
   1535       1.48    itojun 			on = IPTOS_THROUGHPUT;
   1536  1.126.2.4       snj 			if (setsockopt(data, IPPROTO_IP, IP_TOS,
   1537  1.126.2.5       snj 					(void *)&on, sizeof(on)) == -1) {
   1538      1.123     lukem 				if (debug)
   1539  1.126.2.4       snj 					warn("setsockopt %s (ignored)",
   1540  1.126.2.4       snj 				    	    "IPTOS_THROUGHPUT");
   1541  1.126.2.4       snj 			}
   1542       1.48    itojun 		}
   1543       1.92     lukem #endif
   1544       1.21     lukem 		return (0);
   1545        1.8       cgd 	}
   1546        1.1       cgd 
   1547      1.102     lukem  noport:
   1548        1.1       cgd 	data_addr = myctladdr;
   1549        1.1       cgd 	if (sendport)
   1550       1.48    itojun 		data_addr.su_port = 0;	/* let system pick one */
   1551        1.1       cgd 	if (data != -1)
   1552       1.23     lukem 		(void)close(data);
   1553       1.48    itojun 	data = socket(data_addr.su_family, SOCK_STREAM, 0);
   1554        1.1       cgd 	if (data < 0) {
   1555        1.6       cgd 		warn("socket");
   1556        1.1       cgd 		if (tmpno)
   1557        1.1       cgd 			sendport = 1;
   1558        1.1       cgd 		return (1);
   1559        1.1       cgd 	}
   1560        1.1       cgd 	if (!sendport)
   1561  1.126.2.4       snj 		if (setsockopt(data, SOL_SOCKET, SO_REUSEADDR,
   1562  1.126.2.4       snj 				(void *)&on, sizeof(on)) == -1) {
   1563  1.126.2.4       snj 			warn("setsockopt %s", "SO_REUSEADDR");
   1564        1.1       cgd 			goto bad;
   1565        1.1       cgd 		}
   1566      1.104     lukem 	if (bind(data, (struct sockaddr *)&data_addr.si_su,
   1567      1.104     lukem 	    data_addr.su_len) < 0) {
   1568        1.6       cgd 		warn("bind");
   1569        1.1       cgd 		goto bad;
   1570        1.1       cgd 	}
   1571  1.126.2.4       snj 	if ((options & SO_DEBUG) &&
   1572  1.126.2.4       snj 	    setsockopt(data, SOL_SOCKET, SO_DEBUG,
   1573  1.126.2.4       snj 			(void *)&on, sizeof(on)) == -1) {
   1574      1.123     lukem 		if (debug)
   1575  1.126.2.4       snj 			warn("setsockopt %s (ignored)", "SO_DEBUG");
   1576  1.126.2.4       snj 	}
   1577      1.105     lukem 	len = sizeof(data_addr.si_su);
   1578      1.105     lukem 	memset((char *)&data_addr, 0, sizeof (data_addr));
   1579  1.126.2.6      tron 	if (getsockname(data, (struct sockaddr *)&data_addr.si_su, &len) == -1) {
   1580        1.6       cgd 		warn("getsockname");
   1581        1.1       cgd 		goto bad;
   1582        1.1       cgd 	}
   1583      1.105     lukem 	data_addr.su_len = len;
   1584       1.36   thorpej 	if (xlisten(data, 1) < 0)
   1585        1.6       cgd 		warn("listen");
   1586       1.48    itojun 
   1587        1.1       cgd 	if (sendport) {
   1588      1.112    itojun 		char hname[NI_MAXHOST], sname[NI_MAXSERV];
   1589       1.48    itojun 		int af;
   1590      1.112    itojun 		struct sockinet tmp;
   1591       1.48    itojun 
   1592       1.48    itojun 		switch (data_addr.su_family) {
   1593       1.48    itojun 		case AF_INET:
   1594       1.74     lukem 			if (!epsv4 || epsv4bad) {
   1595       1.54    itojun 				result = COMPLETE + 1;
   1596       1.54    itojun 				break;
   1597       1.54    itojun 			}
   1598       1.54    itojun 			/* FALLTHROUGH */
   1599       1.58  christos #ifdef INET6
   1600       1.48    itojun 		case AF_INET6:
   1601      1.111    itojun #endif
   1602       1.48    itojun 			af = (data_addr.su_family == AF_INET) ? 1 : 2;
   1603      1.112    itojun 			tmp = data_addr;
   1604      1.113    itojun #ifdef INET6
   1605      1.112    itojun 			if (tmp.su_family == AF_INET6)
   1606      1.112    itojun 				tmp.si_su.su_sin6.sin6_scope_id = 0;
   1607      1.113    itojun #endif
   1608      1.112    itojun 			if (getnameinfo((struct sockaddr *)&tmp.si_su,
   1609      1.112    itojun 			    tmp.su_len, hname, sizeof(hname), sname,
   1610      1.112    itojun 			    sizeof(sname), NI_NUMERICHOST | NI_NUMERICSERV)) {
   1611       1.48    itojun 				result = ERROR;
   1612       1.48    itojun 			} else {
   1613      1.112    itojun 				result = command("EPRT |%d|%s|%s|", af, hname,
   1614      1.112    itojun 				    sname);
   1615       1.85     lukem 				if (!connected)
   1616       1.85     lukem 					return (1);
   1617       1.74     lukem 				if (result != COMPLETE) {
   1618       1.74     lukem 					epsv4bad = 1;
   1619       1.74     lukem 					if (debug)
   1620       1.74     lukem 						fputs(
   1621       1.74     lukem 					"disabling epsv4 for this connection\n",
   1622       1.74     lukem 						    ttyout);
   1623       1.74     lukem 				}
   1624       1.48    itojun 			}
   1625       1.48    itojun 			break;
   1626       1.48    itojun 		default:
   1627       1.48    itojun 			result = COMPLETE + 1;
   1628       1.48    itojun 			break;
   1629       1.48    itojun 		}
   1630       1.48    itojun 		if (result == COMPLETE)
   1631       1.48    itojun 			goto skip_port;
   1632       1.48    itojun 
   1633       1.48    itojun 		switch (data_addr.su_family) {
   1634       1.48    itojun 		case AF_INET:
   1635      1.104     lukem 			a = (char *)&data_addr.si_su.su_sin.sin_addr;
   1636       1.48    itojun 			p = (char *)&data_addr.su_port;
   1637       1.48    itojun 			result = command("PORT %d,%d,%d,%d,%d,%d",
   1638       1.48    itojun 				 UC(a[0]), UC(a[1]), UC(a[2]), UC(a[3]),
   1639       1.48    itojun 				 UC(p[0]), UC(p[1]));
   1640       1.48    itojun 			break;
   1641       1.58  christos #ifdef INET6
   1642       1.48    itojun 		case AF_INET6:
   1643      1.104     lukem 			a = (char *)&data_addr.si_su.su_sin6.sin6_addr;
   1644       1.48    itojun 			p = (char *)&data_addr.su_port;
   1645       1.48    itojun 			result = command(
   1646       1.85     lukem 	"LPRT %d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d",
   1647       1.48    itojun 				 6, 16,
   1648       1.48    itojun 				 UC(a[0]),UC(a[1]),UC(a[2]),UC(a[3]),
   1649       1.48    itojun 				 UC(a[4]),UC(a[5]),UC(a[6]),UC(a[7]),
   1650       1.48    itojun 				 UC(a[8]),UC(a[9]),UC(a[10]),UC(a[11]),
   1651       1.48    itojun 				 UC(a[12]),UC(a[13]),UC(a[14]),UC(a[15]),
   1652       1.48    itojun 				 2, UC(p[0]), UC(p[1]));
   1653       1.48    itojun 			break;
   1654       1.58  christos #endif
   1655       1.48    itojun 		default:
   1656       1.48    itojun 			result = COMPLETE + 1; /* xxx */
   1657       1.48    itojun 		}
   1658       1.85     lukem 		if (!connected)
   1659       1.85     lukem 			return (1);
   1660       1.48    itojun 	skip_port:
   1661  1.126.2.2      tron 
   1662        1.1       cgd 		if (result == ERROR && sendport == -1) {
   1663        1.1       cgd 			sendport = 0;
   1664        1.1       cgd 			tmpno = 1;
   1665        1.1       cgd 			goto noport;
   1666        1.1       cgd 		}
   1667        1.1       cgd 		return (result != COMPLETE);
   1668        1.1       cgd 	}
   1669        1.1       cgd 	if (tmpno)
   1670        1.1       cgd 		sendport = 1;
   1671       1.92     lukem #ifdef IPTOS_THROUGHPUT
   1672       1.48    itojun 	if (data_addr.su_family == AF_INET) {
   1673       1.48    itojun 		on = IPTOS_THROUGHPUT;
   1674  1.126.2.4       snj 		if (setsockopt(data, IPPROTO_IP, IP_TOS,
   1675  1.126.2.5       snj 				(void *)&on, sizeof(on)) == -1)
   1676      1.123     lukem 			if (debug)
   1677  1.126.2.4       snj 				warn("setsockopt %s (ignored)",
   1678  1.126.2.4       snj 				    "IPTOS_THROUGHPUT");
   1679       1.48    itojun 	}
   1680       1.92     lukem #endif
   1681        1.1       cgd 	return (0);
   1682      1.102     lukem  bad:
   1683  1.126.2.1      tron 	(void)close(data);
   1684  1.126.2.1      tron 	data = -1;
   1685        1.1       cgd 	if (tmpno)
   1686        1.1       cgd 		sendport = 1;
   1687        1.1       cgd 	return (1);
   1688        1.1       cgd }
   1689        1.1       cgd 
   1690        1.1       cgd FILE *
   1691       1.95     lukem dataconn(const char *lmode)
   1692        1.1       cgd {
   1693  1.126.2.1      tron 	struct sockinet	from;
   1694  1.126.2.6      tron 	int		s, flags, rv, timeout;
   1695  1.126.2.1      tron 	struct timeval	endtime, now, td;
   1696  1.126.2.1      tron 	struct pollfd	pfd[1];
   1697  1.126.2.6      tron 	socklen_t	fromlen;
   1698        1.8       cgd 
   1699  1.126.2.1      tron 	if (passivemode)	/* passive data connection */
   1700        1.8       cgd 		return (fdopen(data, lmode));
   1701        1.1       cgd 
   1702  1.126.2.1      tron 				/* active mode data connection */
   1703  1.126.2.1      tron 
   1704  1.126.2.1      tron 	if ((flags = fcntl(data, F_GETFL, 0)) == -1)
   1705  1.126.2.1      tron 		goto dataconn_failed;		/* get current socket flags  */
   1706  1.126.2.1      tron 	if (fcntl(data, F_SETFL, flags | O_NONBLOCK) == -1)
   1707  1.126.2.1      tron 		goto dataconn_failed;		/* set non-blocking connect */
   1708  1.126.2.1      tron 
   1709  1.126.2.1      tron 		/* NOTE: we now must restore socket flags on successful exit */
   1710  1.126.2.1      tron 
   1711  1.126.2.1      tron 				/* limit time waiting on listening socket */
   1712  1.126.2.1      tron 	pfd[0].fd = data;
   1713  1.126.2.1      tron 	pfd[0].events = POLLIN;
   1714  1.126.2.1      tron 	(void)gettimeofday(&endtime, NULL);	/* determine end time */
   1715  1.126.2.1      tron 	endtime.tv_sec += (quit_time > 0) ? quit_time: 60;
   1716  1.126.2.1      tron 						/* without -q, default to 60s */
   1717  1.126.2.1      tron 	do {
   1718  1.126.2.1      tron 		(void)gettimeofday(&now, NULL);
   1719  1.126.2.1      tron 		timersub(&endtime, &now, &td);
   1720  1.126.2.1      tron 		timeout = td.tv_sec * 1000 + td.tv_usec/1000;
   1721  1.126.2.1      tron 		if (timeout < 0)
   1722  1.126.2.1      tron 			timeout = 0;
   1723  1.126.2.1      tron 		rv = xpoll(pfd, 1, timeout);
   1724  1.126.2.1      tron 	} while (rv == -1 && errno == EINTR);	/* loop until poll ! EINTR */
   1725  1.126.2.1      tron 	if (rv == -1) {
   1726  1.126.2.1      tron 		warn("poll waiting before accept");
   1727  1.126.2.1      tron 		goto dataconn_failed;
   1728  1.126.2.1      tron 	}
   1729  1.126.2.1      tron 	if (rv == 0) {
   1730  1.126.2.3      tron 		warn("poll timeout waiting before accept");
   1731  1.126.2.1      tron 		goto dataconn_failed;
   1732  1.126.2.1      tron 	}
   1733  1.126.2.1      tron 
   1734  1.126.2.1      tron 				/* (non-blocking) accept the connection */
   1735  1.126.2.1      tron 	fromlen = myctladdr.su_len;
   1736  1.126.2.1      tron 	do {
   1737  1.126.2.1      tron 		s = accept(data, (struct sockaddr *) &from.si_su, &fromlen);
   1738  1.126.2.1      tron 	} while (s == -1 && errno == EINTR);	/* loop until accept ! EINTR */
   1739  1.126.2.1      tron 	if (s == -1) {
   1740        1.6       cgd 		warn("accept");
   1741  1.126.2.1      tron 		goto dataconn_failed;
   1742        1.1       cgd 	}
   1743  1.126.2.1      tron 
   1744       1.23     lukem 	(void)close(data);
   1745        1.1       cgd 	data = s;
   1746  1.126.2.1      tron 	if (fcntl(data, F_SETFL, flags) == -1)	/* restore socket flags */
   1747  1.126.2.1      tron 		goto dataconn_failed;
   1748  1.126.2.1      tron 
   1749       1.92     lukem #ifdef IPTOS_THROUGHPUT
   1750       1.48    itojun 	if (from.su_family == AF_INET) {
   1751       1.48    itojun 		int tos = IPTOS_THROUGHPUT;
   1752  1.126.2.4       snj 		if (setsockopt(s, IPPROTO_IP, IP_TOS,
   1753  1.126.2.5       snj 				(void *)&tos, sizeof(tos)) == -1) {
   1754      1.123     lukem 			if (debug)
   1755  1.126.2.4       snj 				warn("setsockopt %s (ignored)",
   1756  1.126.2.4       snj 				    "IPTOS_THROUGHPUT");
   1757       1.48    itojun 		}
   1758       1.48    itojun 	}
   1759       1.92     lukem #endif
   1760        1.1       cgd 	return (fdopen(data, lmode));
   1761  1.126.2.2      tron 
   1762  1.126.2.1      tron  dataconn_failed:
   1763  1.126.2.1      tron 	(void)close(data);
   1764  1.126.2.1      tron 	data = -1;
   1765  1.126.2.1      tron 	return (NULL);
   1766       1.14     lukem }
   1767       1.14     lukem 
   1768       1.14     lukem void
   1769       1.95     lukem psabort(int notused)
   1770        1.1       cgd {
   1771       1.81     lukem 	int oerrno = errno;
   1772        1.1       cgd 
   1773      1.126     lukem 	sigint_raised = 1;
   1774       1.22     lukem 	alarmtimer(0);
   1775        1.1       cgd 	abrtflag++;
   1776       1.81     lukem 	errno = oerrno;
   1777        1.1       cgd }
   1778        1.1       cgd 
   1779        1.6       cgd void
   1780       1.95     lukem pswitch(int flag)
   1781        1.1       cgd {
   1782       1.90     lukem 	sigfunc oldintr;
   1783        1.1       cgd 	static struct comvars {
   1784        1.1       cgd 		int connect;
   1785        1.1       cgd 		char name[MAXHOSTNAMELEN];
   1786      1.104     lukem 		struct sockinet mctl;
   1787      1.104     lukem 		struct sockinet hctl;
   1788        1.1       cgd 		FILE *in;
   1789        1.1       cgd 		FILE *out;
   1790        1.1       cgd 		int tpe;
   1791        1.1       cgd 		int curtpe;
   1792        1.1       cgd 		int cpnd;
   1793        1.1       cgd 		int sunqe;
   1794        1.1       cgd 		int runqe;
   1795        1.1       cgd 		int mcse;
   1796        1.1       cgd 		int ntflg;
   1797        1.1       cgd 		char nti[17];
   1798        1.1       cgd 		char nto[17];
   1799        1.1       cgd 		int mapflg;
   1800        1.1       cgd 		char mi[MAXPATHLEN];
   1801        1.1       cgd 		char mo[MAXPATHLEN];
   1802        1.1       cgd 	} proxstruct, tmpstruct;
   1803        1.1       cgd 	struct comvars *ip, *op;
   1804        1.1       cgd 
   1805        1.1       cgd 	abrtflag = 0;
   1806       1.67     lukem 	oldintr = xsignal(SIGINT, psabort);
   1807        1.1       cgd 	if (flag) {
   1808        1.1       cgd 		if (proxy)
   1809        1.1       cgd 			return;
   1810        1.1       cgd 		ip = &tmpstruct;
   1811        1.1       cgd 		op = &proxstruct;
   1812        1.1       cgd 		proxy++;
   1813        1.1       cgd 	} else {
   1814        1.1       cgd 		if (!proxy)
   1815        1.1       cgd 			return;
   1816        1.1       cgd 		ip = &proxstruct;
   1817        1.1       cgd 		op = &tmpstruct;
   1818        1.1       cgd 		proxy = 0;
   1819        1.1       cgd 	}
   1820        1.1       cgd 	ip->connect = connected;
   1821        1.1       cgd 	connected = op->connect;
   1822       1.68     lukem 	if (hostname)
   1823       1.68     lukem 		(void)strlcpy(ip->name, hostname, sizeof(ip->name));
   1824       1.68     lukem 	else
   1825       1.23     lukem 		ip->name[0] = '\0';
   1826        1.1       cgd 	hostname = op->name;
   1827        1.1       cgd 	ip->hctl = hisctladdr;
   1828        1.1       cgd 	hisctladdr = op->hctl;
   1829        1.1       cgd 	ip->mctl = myctladdr;
   1830        1.1       cgd 	myctladdr = op->mctl;
   1831        1.1       cgd 	ip->in = cin;
   1832        1.1       cgd 	cin = op->in;
   1833        1.1       cgd 	ip->out = cout;
   1834        1.1       cgd 	cout = op->out;
   1835        1.1       cgd 	ip->tpe = type;
   1836        1.1       cgd 	type = op->tpe;
   1837        1.1       cgd 	ip->curtpe = curtype;
   1838        1.1       cgd 	curtype = op->curtpe;
   1839        1.1       cgd 	ip->cpnd = cpend;
   1840        1.1       cgd 	cpend = op->cpnd;
   1841        1.1       cgd 	ip->sunqe = sunique;
   1842        1.1       cgd 	sunique = op->sunqe;
   1843        1.1       cgd 	ip->runqe = runique;
   1844        1.1       cgd 	runique = op->runqe;
   1845        1.1       cgd 	ip->mcse = mcase;
   1846        1.1       cgd 	mcase = op->mcse;
   1847        1.1       cgd 	ip->ntflg = ntflag;
   1848        1.1       cgd 	ntflag = op->ntflg;
   1849       1.68     lukem 	(void)strlcpy(ip->nti, ntin, sizeof(ip->nti));
   1850       1.68     lukem 	(void)strlcpy(ntin, op->nti, sizeof(ntin));
   1851       1.68     lukem 	(void)strlcpy(ip->nto, ntout, sizeof(ip->nto));
   1852       1.68     lukem 	(void)strlcpy(ntout, op->nto, sizeof(ntout));
   1853        1.1       cgd 	ip->mapflg = mapflag;
   1854        1.1       cgd 	mapflag = op->mapflg;
   1855       1.68     lukem 	(void)strlcpy(ip->mi, mapin, sizeof(ip->mi));
   1856       1.68     lukem 	(void)strlcpy(mapin, op->mi, sizeof(mapin));
   1857       1.68     lukem 	(void)strlcpy(ip->mo, mapout, sizeof(ip->mo));
   1858       1.68     lukem 	(void)strlcpy(mapout, op->mo, sizeof(mapout));
   1859       1.67     lukem 	(void)xsignal(SIGINT, oldintr);
   1860        1.1       cgd 	if (abrtflag) {
   1861        1.1       cgd 		abrtflag = 0;
   1862        1.1       cgd 		(*oldintr)(SIGINT);
   1863        1.1       cgd 	}
   1864        1.1       cgd }
   1865        1.1       cgd 
   1866        1.1       cgd void
   1867       1.95     lukem abortpt(int notused)
   1868        1.1       cgd {
   1869        1.6       cgd 
   1870      1.126     lukem 	sigint_raised = 1;
   1871       1.22     lukem 	alarmtimer(0);
   1872       1.84     lukem 	if (fromatty)
   1873       1.84     lukem 		write(fileno(ttyout), "\n", 1);
   1874        1.1       cgd 	ptabflg++;
   1875        1.1       cgd 	mflag = 0;
   1876        1.1       cgd 	abrtflag = 0;
   1877       1.81     lukem 	siglongjmp(ptabort, 1);
   1878        1.1       cgd }
   1879        1.1       cgd 
   1880        1.6       cgd void
   1881       1.95     lukem proxtrans(const char *cmd, const char *local, const char *remote)
   1882        1.1       cgd {
   1883       1.90     lukem 	sigfunc oldintr;
   1884       1.26     lukem 	int prox_type, nfnd;
   1885       1.26     lukem 	volatile int secndflag;
   1886        1.1       cgd 	char *cmd2;
   1887        1.1       cgd 
   1888       1.35     lukem #ifdef __GNUC__			/* to shut up gcc warnings */
   1889       1.26     lukem 	(void)&oldintr;
   1890       1.26     lukem 	(void)&cmd2;
   1891       1.26     lukem #endif
   1892       1.26     lukem 
   1893       1.26     lukem 	oldintr = NULL;
   1894       1.26     lukem 	secndflag = 0;
   1895        1.1       cgd 	if (strcmp(cmd, "RETR"))
   1896        1.1       cgd 		cmd2 = "RETR";
   1897        1.1       cgd 	else
   1898        1.1       cgd 		cmd2 = runique ? "STOU" : "STOR";
   1899        1.1       cgd 	if ((prox_type = type) == 0) {
   1900        1.1       cgd 		if (unix_server && unix_proxy)
   1901        1.1       cgd 			prox_type = TYPE_I;
   1902        1.1       cgd 		else
   1903        1.1       cgd 			prox_type = TYPE_A;
   1904        1.1       cgd 	}
   1905        1.1       cgd 	if (curtype != prox_type)
   1906        1.1       cgd 		changetype(prox_type, 1);
   1907        1.1       cgd 	if (command("PASV") != COMPLETE) {
   1908       1.35     lukem 		fputs("proxy server does not support third party transfers.\n",
   1909       1.35     lukem 		    ttyout);
   1910        1.1       cgd 		return;
   1911        1.1       cgd 	}
   1912        1.1       cgd 	pswitch(0);
   1913        1.1       cgd 	if (!connected) {
   1914       1.35     lukem 		fputs("No primary connection.\n", ttyout);
   1915        1.1       cgd 		pswitch(1);
   1916        1.1       cgd 		code = -1;
   1917        1.1       cgd 		return;
   1918        1.1       cgd 	}
   1919        1.1       cgd 	if (curtype != prox_type)
   1920        1.1       cgd 		changetype(prox_type, 1);
   1921        1.1       cgd 	if (command("PORT %s", pasv) != COMPLETE) {
   1922        1.1       cgd 		pswitch(1);
   1923        1.1       cgd 		return;
   1924        1.1       cgd 	}
   1925       1.81     lukem 	if (sigsetjmp(ptabort, 1))
   1926        1.1       cgd 		goto abort;
   1927       1.67     lukem 	oldintr = xsignal(SIGINT, abortpt);
   1928       1.41     lukem 	if ((restart_point &&
   1929      1.107     lukem 	    (command("REST " LLF, (LLT) restart_point) != CONTINUE))
   1930      1.103     lukem 	    || (command("%s %s", cmd, remote) != PRELIM)) {
   1931       1.67     lukem 		(void)xsignal(SIGINT, oldintr);
   1932        1.1       cgd 		pswitch(1);
   1933        1.1       cgd 		return;
   1934        1.1       cgd 	}
   1935        1.1       cgd 	sleep(2);
   1936        1.1       cgd 	pswitch(1);
   1937        1.1       cgd 	secndflag++;
   1938       1.41     lukem 	if ((restart_point &&
   1939      1.107     lukem 	    (command("REST " LLF, (LLT) restart_point) != CONTINUE))
   1940      1.103     lukem 	    || (command("%s %s", cmd2, local) != PRELIM))
   1941        1.1       cgd 		goto abort;
   1942        1.1       cgd 	ptflag++;
   1943       1.23     lukem 	(void)getreply(0);
   1944        1.1       cgd 	pswitch(0);
   1945       1.23     lukem 	(void)getreply(0);
   1946       1.67     lukem 	(void)xsignal(SIGINT, oldintr);
   1947        1.1       cgd 	pswitch(1);
   1948        1.1       cgd 	ptflag = 0;
   1949       1.35     lukem 	fprintf(ttyout, "local: %s remote: %s\n", local, remote);
   1950        1.1       cgd 	return;
   1951      1.102     lukem  abort:
   1952       1.82     lukem 	if (sigsetjmp(xferabort, 1)) {
   1953       1.82     lukem 		(void)xsignal(SIGINT, oldintr);
   1954       1.82     lukem 		return;
   1955       1.82     lukem 	}
   1956       1.82     lukem 	(void)xsignal(SIGINT, abort_squared);
   1957        1.1       cgd 	ptflag = 0;
   1958        1.1       cgd 	if (strcmp(cmd, "RETR") && !proxy)
   1959        1.1       cgd 		pswitch(1);
   1960        1.1       cgd 	else if (!strcmp(cmd, "RETR") && proxy)
   1961        1.1       cgd 		pswitch(0);
   1962        1.1       cgd 	if (!cpend && !secndflag) {  /* only here if cmd = "STOR" (proxy=1) */
   1963        1.1       cgd 		if (command("%s %s", cmd2, local) != PRELIM) {
   1964        1.1       cgd 			pswitch(0);
   1965        1.1       cgd 			if (cpend)
   1966       1.31     lukem 				abort_remote(NULL);
   1967        1.1       cgd 		}
   1968        1.1       cgd 		pswitch(1);
   1969        1.1       cgd 		if (ptabflg)
   1970        1.1       cgd 			code = -1;
   1971       1.67     lukem 		(void)xsignal(SIGINT, oldintr);
   1972        1.1       cgd 		return;
   1973        1.1       cgd 	}
   1974        1.1       cgd 	if (cpend)
   1975       1.31     lukem 		abort_remote(NULL);
   1976        1.1       cgd 	pswitch(!proxy);
   1977        1.1       cgd 	if (!cpend && !secndflag) {  /* only if cmd = "RETR" (proxy=1) */
   1978        1.1       cgd 		if (command("%s %s", cmd2, local) != PRELIM) {
   1979        1.1       cgd 			pswitch(0);
   1980        1.1       cgd 			if (cpend)
   1981       1.31     lukem 				abort_remote(NULL);
   1982        1.1       cgd 			pswitch(1);
   1983        1.1       cgd 			if (ptabflg)
   1984        1.1       cgd 				code = -1;
   1985       1.67     lukem 			(void)xsignal(SIGINT, oldintr);
   1986        1.1       cgd 			return;
   1987        1.1       cgd 		}
   1988        1.1       cgd 	}
   1989        1.1       cgd 	if (cpend)
   1990       1.31     lukem 		abort_remote(NULL);
   1991        1.1       cgd 	pswitch(!proxy);
   1992        1.1       cgd 	if (cpend) {
   1993       1.45  christos 		if ((nfnd = empty(cin, NULL, 10)) <= 0) {
   1994       1.85     lukem 			if (nfnd < 0)
   1995        1.6       cgd 				warn("abort");
   1996        1.1       cgd 			if (ptabflg)
   1997        1.1       cgd 				code = -1;
   1998       1.85     lukem 			lostpeer(0);
   1999        1.1       cgd 		}
   2000       1.23     lukem 		(void)getreply(0);
   2001       1.23     lukem 		(void)getreply(0);
   2002        1.1       cgd 	}
   2003        1.1       cgd 	if (proxy)
   2004        1.1       cgd 		pswitch(0);
   2005        1.1       cgd 	pswitch(1);
   2006        1.1       cgd 	if (ptabflg)
   2007        1.1       cgd 		code = -1;
   2008       1.67     lukem 	(void)xsignal(SIGINT, oldintr);
   2009        1.1       cgd }
   2010        1.1       cgd 
   2011        1.6       cgd void
   2012       1.95     lukem reset(int argc, char *argv[])
   2013        1.1       cgd {
   2014        1.1       cgd 	int nfnd = 1;
   2015        1.1       cgd 
   2016       1.85     lukem 	if (argc == 0 && argv != NULL) {
   2017       1.85     lukem 		fprintf(ttyout, "usage: %s\n", argv[0]);
   2018       1.85     lukem 		code = -1;
   2019       1.85     lukem 		return;
   2020       1.85     lukem 	}
   2021        1.1       cgd 	while (nfnd > 0) {
   2022       1.45  christos 		if ((nfnd = empty(cin, NULL, 0)) < 0) {
   2023        1.6       cgd 			warn("reset");
   2024        1.1       cgd 			code = -1;
   2025       1.85     lukem 			lostpeer(0);
   2026       1.85     lukem 		} else if (nfnd)
   2027       1.23     lukem 			(void)getreply(0);
   2028        1.1       cgd 	}
   2029        1.1       cgd }
   2030        1.1       cgd 
   2031        1.1       cgd char *
   2032       1.95     lukem gunique(const char *local)
   2033        1.1       cgd {
   2034        1.1       cgd 	static char new[MAXPATHLEN];
   2035        1.6       cgd 	char *cp = strrchr(local, '/');
   2036       1.68     lukem 	int d, count=0, len;
   2037        1.1       cgd 	char ext = '1';
   2038        1.1       cgd 
   2039        1.1       cgd 	if (cp)
   2040        1.1       cgd 		*cp = '\0';
   2041       1.28     lukem 	d = access(cp == local ? "/" : cp ? local : ".", W_OK);
   2042        1.1       cgd 	if (cp)
   2043        1.1       cgd 		*cp = '/';
   2044        1.1       cgd 	if (d < 0) {
   2045        1.6       cgd 		warn("local: %s", local);
   2046       1.31     lukem 		return (NULL);
   2047        1.1       cgd 	}
   2048       1.68     lukem 	len = strlcpy(new, local, sizeof(new));
   2049       1.68     lukem 	cp = &new[len];
   2050  1.126.2.2      tron 	*cp++ = '.';
   2051        1.1       cgd 	while (!d) {
   2052        1.1       cgd 		if (++count == 100) {
   2053       1.35     lukem 			fputs("runique: can't find unique file name.\n",
   2054       1.35     lukem 			    ttyout);
   2055       1.31     lukem 			return (NULL);
   2056        1.1       cgd 		}
   2057        1.1       cgd 		*cp++ = ext;
   2058        1.1       cgd 		*cp = '\0';
   2059        1.1       cgd 		if (ext == '9')
   2060        1.1       cgd 			ext = '0';
   2061        1.1       cgd 		else
   2062        1.1       cgd 			ext++;
   2063       1.28     lukem 		if ((d = access(new, F_OK)) < 0)
   2064        1.1       cgd 			break;
   2065        1.1       cgd 		if (ext != '0')
   2066        1.1       cgd 			cp--;
   2067        1.1       cgd 		else if (*(cp - 2) == '.')
   2068        1.1       cgd 			*(cp - 1) = '1';
   2069        1.1       cgd 		else {
   2070        1.1       cgd 			*(cp - 2) = *(cp - 2) + 1;
   2071        1.1       cgd 			cp--;
   2072        1.1       cgd 		}
   2073        1.1       cgd 	}
   2074        1.6       cgd 	return (new);
   2075       1.82     lukem }
   2076       1.82     lukem 
   2077       1.82     lukem /*
   2078       1.82     lukem  * abort_squared --
   2079       1.82     lukem  *	aborts abort_remote(). lostpeer() is called because if the user is
   2080       1.82     lukem  *	too impatient to wait or there's another problem then ftp really
   2081       1.82     lukem  *	needs to get back to a known state.
   2082       1.82     lukem  */
   2083       1.82     lukem void
   2084       1.95     lukem abort_squared(int dummy)
   2085       1.82     lukem {
   2086       1.82     lukem 	char msgbuf[100];
   2087  1.126.2.6      tron 	size_t len;
   2088       1.82     lukem 
   2089      1.126     lukem 	sigint_raised = 1;
   2090       1.82     lukem 	alarmtimer(0);
   2091       1.82     lukem 	len = strlcpy(msgbuf, "\nremote abort aborted; closing connection.\n",
   2092       1.82     lukem 	    sizeof(msgbuf));
   2093       1.82     lukem 	write(fileno(ttyout), msgbuf, len);
   2094       1.85     lukem 	lostpeer(0);
   2095       1.82     lukem 	siglongjmp(xferabort, 1);
   2096        1.1       cgd }
   2097        1.1       cgd 
   2098        1.6       cgd void
   2099       1.95     lukem abort_remote(FILE *din)
   2100        1.1       cgd {
   2101       1.65     lukem 	char buf[BUFSIZ];
   2102        1.1       cgd 	int nfnd;
   2103        1.1       cgd 
   2104       1.23     lukem 	if (cout == NULL) {
   2105       1.23     lukem 		warnx("Lost control connection for abort.");
   2106       1.23     lukem 		if (ptabflg)
   2107       1.23     lukem 			code = -1;
   2108       1.85     lukem 		lostpeer(0);
   2109       1.23     lukem 		return;
   2110       1.23     lukem 	}
   2111        1.1       cgd 	/*
   2112        1.1       cgd 	 * send IAC in urgent mode instead of DM because 4.3BSD places oob mark
   2113        1.1       cgd 	 * after urgent byte rather than before as is protocol now
   2114        1.1       cgd 	 */
   2115       1.63     lukem 	buf[0] = IAC;
   2116       1.63     lukem 	buf[1] = IP;
   2117       1.63     lukem 	buf[2] = IAC;
   2118        1.1       cgd 	if (send(fileno(cout), buf, 3, MSG_OOB) != 3)
   2119        1.6       cgd 		warn("abort");
   2120       1.15     lukem 	fprintf(cout, "%cABOR\r\n", DM);
   2121       1.23     lukem 	(void)fflush(cout);
   2122       1.45  christos 	if ((nfnd = empty(cin, din, 10)) <= 0) {
   2123       1.85     lukem 		if (nfnd < 0)
   2124        1.6       cgd 			warn("abort");
   2125        1.1       cgd 		if (ptabflg)
   2126        1.1       cgd 			code = -1;
   2127       1.85     lukem 		lostpeer(0);
   2128        1.1       cgd 	}
   2129       1.45  christos 	if (din && (nfnd & 2)) {
   2130        1.1       cgd 		while (read(fileno(din), buf, BUFSIZ) > 0)
   2131       1.45  christos 			continue;
   2132        1.1       cgd 	}
   2133        1.1       cgd 	if (getreply(0) == ERROR && code == 552) {
   2134        1.1       cgd 		/* 552 needed for nic style abort */
   2135       1.23     lukem 		(void)getreply(0);
   2136        1.1       cgd 	}
   2137       1.23     lukem 	(void)getreply(0);
   2138       1.96    itojun }
   2139       1.96    itojun 
   2140       1.96    itojun void
   2141       1.96    itojun ai_unmapped(struct addrinfo *ai)
   2142       1.96    itojun {
   2143       1.98     lukem #ifdef INET6
   2144       1.96    itojun 	struct sockaddr_in6 *sin6;
   2145       1.96    itojun 	struct sockaddr_in sin;
   2146  1.126.2.6      tron 	socklen_t len;
   2147       1.96    itojun 
   2148       1.96    itojun 	if (ai->ai_family != AF_INET6)
   2149       1.96    itojun 		return;
   2150       1.96    itojun 	if (ai->ai_addrlen != sizeof(struct sockaddr_in6) ||
   2151       1.96    itojun 	    sizeof(sin) > ai->ai_addrlen)
   2152       1.96    itojun 		return;
   2153       1.96    itojun 	sin6 = (struct sockaddr_in6 *)ai->ai_addr;
   2154       1.96    itojun 	if (!IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr))
   2155       1.96    itojun 		return;
   2156       1.96    itojun 
   2157       1.96    itojun 	memset(&sin, 0, sizeof(sin));
   2158       1.96    itojun 	sin.sin_family = AF_INET;
   2159       1.99     lukem 	len = sizeof(struct sockaddr_in);
   2160       1.96    itojun 	memcpy(&sin.sin_addr, &sin6->sin6_addr.s6_addr[12],
   2161       1.96    itojun 	    sizeof(sin.sin_addr));
   2162       1.96    itojun 	sin.sin_port = sin6->sin6_port;
   2163       1.96    itojun 
   2164       1.96    itojun 	ai->ai_family = AF_INET;
   2165      1.107     lukem #if HAVE_SOCKADDR_SA_LEN
   2166       1.99     lukem 	sin.sin_len = len;
   2167       1.99     lukem #endif
   2168       1.99     lukem 	memcpy(ai->ai_addr, &sin, len);
   2169       1.99     lukem 	ai->ai_addrlen = len;
   2170       1.98     lukem #endif
   2171        1.1       cgd }
   2172