Home | History | Annotate | Line # | Download | only in ftp
fetch.c revision 1.188
      1  1.188       roy /*	$NetBSD: fetch.c,v 1.188 2009/07/13 19:05:41 roy Exp $	*/
      2    1.1     lukem 
      3    1.1     lukem /*-
      4  1.187     lukem  * Copyright (c) 1997-2009 The NetBSD Foundation, Inc.
      5    1.1     lukem  * All rights reserved.
      6    1.1     lukem  *
      7    1.1     lukem  * This code is derived from software contributed to The NetBSD Foundation
      8   1.54     lukem  * by Luke Mewburn.
      9    1.1     lukem  *
     10  1.114     lukem  * This code is derived from software contributed to The NetBSD Foundation
     11  1.114     lukem  * by Scott Aaron Bamford.
     12  1.114     lukem  *
     13    1.1     lukem  * Redistribution and use in source and binary forms, with or without
     14    1.1     lukem  * modification, are permitted provided that the following conditions
     15    1.1     lukem  * are met:
     16    1.1     lukem  * 1. Redistributions of source code must retain the above copyright
     17    1.1     lukem  *    notice, this list of conditions and the following disclaimer.
     18    1.1     lukem  * 2. Redistributions in binary form must reproduce the above copyright
     19    1.1     lukem  *    notice, this list of conditions and the following disclaimer in the
     20    1.1     lukem  *    documentation and/or other materials provided with the distribution.
     21    1.1     lukem  *
     22    1.1     lukem  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     23    1.1     lukem  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     24    1.1     lukem  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     25   1.14     lukem  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     26   1.14     lukem  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     27    1.1     lukem  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     28    1.1     lukem  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     29    1.1     lukem  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     30    1.1     lukem  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     31    1.1     lukem  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     32    1.1     lukem  * POSSIBILITY OF SUCH DAMAGE.
     33    1.1     lukem  */
     34    1.1     lukem 
     35   1.12     lukem #include <sys/cdefs.h>
     36    1.1     lukem #ifndef lint
     37  1.188       roy __RCSID("$NetBSD: fetch.c,v 1.188 2009/07/13 19:05:41 roy Exp $");
     38    1.1     lukem #endif /* not lint */
     39    1.1     lukem 
     40    1.1     lukem /*
     41    1.1     lukem  * FTP User Program -- Command line file retrieval
     42    1.1     lukem  */
     43    1.1     lukem 
     44    1.1     lukem #include <sys/types.h>
     45    1.1     lukem #include <sys/param.h>
     46    1.1     lukem #include <sys/socket.h>
     47   1.30     lukem #include <sys/stat.h>
     48   1.32     lukem #include <sys/time.h>
     49    1.1     lukem 
     50    1.1     lukem #include <netinet/in.h>
     51    1.1     lukem 
     52    1.2     lukem #include <arpa/ftp.h>
     53    1.1     lukem #include <arpa/inet.h>
     54    1.1     lukem 
     55    1.1     lukem #include <ctype.h>
     56    1.1     lukem #include <err.h>
     57   1.22     lukem #include <errno.h>
     58    1.1     lukem #include <netdb.h>
     59    1.1     lukem #include <fcntl.h>
     60    1.1     lukem #include <stdio.h>
     61    1.1     lukem #include <stdlib.h>
     62    1.1     lukem #include <string.h>
     63    1.1     lukem #include <unistd.h>
     64   1.57  christos #include <time.h>
     65    1.1     lukem 
     66    1.1     lukem #include "ftp_var.h"
     67  1.100     lukem #include "version.h"
     68    1.1     lukem 
     69   1.27     lukem typedef enum {
     70   1.27     lukem 	UNKNOWN_URL_T=-1,
     71   1.27     lukem 	HTTP_URL_T,
     72   1.27     lukem 	FTP_URL_T,
     73   1.53     lukem 	FILE_URL_T,
     74   1.53     lukem 	CLASSIC_URL_T
     75   1.27     lukem } url_t;
     76   1.27     lukem 
     77  1.111     lukem void		aborthttp(int);
     78  1.147  christos #ifndef NO_AUTH
     79  1.111     lukem static int	auth_url(const char *, char **, const char *, const char *);
     80  1.154     lukem static void	base64_encode(const unsigned char *, size_t, unsigned char *);
     81  1.147  christos #endif
     82  1.111     lukem static int	go_fetch(const char *);
     83  1.111     lukem static int	fetch_ftp(const char *);
     84  1.111     lukem static int	fetch_url(const char *, const char *, char *, char *);
     85  1.154     lukem static const char *match_token(const char **, const char *);
     86  1.111     lukem static int	parse_url(const char *, const char *, url_t *, char **,
     87  1.111     lukem 			    char **, char **, char **, in_port_t *, char **);
     88  1.111     lukem static void	url_decode(char *);
     89   1.12     lukem 
     90   1.42     lukem static int	redirect_loop;
     91   1.42     lukem 
     92   1.12     lukem 
     93  1.150     lukem #define	STRNEQUAL(a,b)	(strncasecmp((a), (b), sizeof((b))-1) == 0)
     94  1.150     lukem #define	ISLWS(x)	((x)=='\r' || (x)=='\n' || (x)==' ' || (x)=='\t')
     95  1.150     lukem #define	SKIPLWS(x)	do { while (ISLWS((*x))) x++; } while (0)
     96  1.150     lukem 
     97  1.150     lukem 
     98   1.25     lukem #define	ABOUT_URL	"about:"	/* propaganda */
     99   1.25     lukem #define	FILE_URL	"file://"	/* file URL prefix */
    100    1.1     lukem #define	FTP_URL		"ftp://"	/* ftp URL prefix */
    101    1.1     lukem #define	HTTP_URL	"http://"	/* http URL prefix */
    102    1.1     lukem 
    103    1.1     lukem 
    104  1.154     lukem /*
    105  1.154     lukem  * Determine if token is the next word in buf (case insensitive).
    106  1.154     lukem  * If so, advance buf past the token and any trailing LWS, and
    107  1.154     lukem  * return a pointer to the token (in buf).  Otherwise, return NULL.
    108  1.172  christos  * token may be preceded by LWS.
    109  1.154     lukem  * token must be followed by LWS or NUL.  (I.e, don't partial match).
    110  1.154     lukem  */
    111  1.154     lukem static const char *
    112  1.154     lukem match_token(const char **buf, const char *token)
    113  1.154     lukem {
    114  1.154     lukem 	const char	*p, *orig;
    115  1.154     lukem 	size_t		tlen;
    116  1.154     lukem 
    117  1.154     lukem 	tlen = strlen(token);
    118  1.154     lukem 	p = *buf;
    119  1.154     lukem 	SKIPLWS(p);
    120  1.154     lukem 	orig = p;
    121  1.154     lukem 	if (strncasecmp(p, token, tlen) != 0)
    122  1.154     lukem 		return NULL;
    123  1.154     lukem 	p += tlen;
    124  1.154     lukem 	if (*p != '\0' && !ISLWS(*p))
    125  1.154     lukem 		return NULL;
    126  1.154     lukem 	SKIPLWS(p);
    127  1.154     lukem 	orig = *buf;
    128  1.154     lukem 	*buf = p;
    129  1.154     lukem 	return orig;
    130  1.154     lukem }
    131  1.154     lukem 
    132  1.147  christos #ifndef NO_AUTH
    133   1.27     lukem /*
    134   1.44     lukem  * Generate authorization response based on given authentication challenge.
    135   1.44     lukem  * Returns -1 if an error occurred, otherwise 0.
    136   1.44     lukem  * Sets response to a malloc(3)ed string; caller should free.
    137   1.44     lukem  */
    138   1.44     lukem static int
    139  1.111     lukem auth_url(const char *challenge, char **response, const char *guser,
    140  1.111     lukem 	const char *gpass)
    141   1.44     lukem {
    142  1.162     lukem 	const char	*cp, *scheme, *errormsg;
    143  1.154     lukem 	char		*ep, *clear, *realm;
    144  1.187     lukem 	char		 uuser[BUFSIZ], *gotpass;
    145  1.187     lukem 	const char	*upass;
    146   1.82     lukem 	int		 rval;
    147   1.82     lukem 	size_t		 len, clen, rlen;
    148   1.44     lukem 
    149   1.44     lukem 	*response = NULL;
    150  1.154     lukem 	clear = realm = NULL;
    151   1.44     lukem 	rval = -1;
    152  1.154     lukem 	cp = challenge;
    153  1.154     lukem 	scheme = "Basic";	/* only support Basic authentication */
    154  1.187     lukem 	gotpass = NULL;
    155   1.44     lukem 
    156  1.163  christos 	DPRINTF("auth_url: challenge `%s'\n", challenge);
    157   1.44     lukem 
    158  1.154     lukem 	if (! match_token(&cp, scheme)) {
    159  1.175     lukem 		warnx("Unsupported authentication challenge `%s'",
    160   1.44     lukem 		    challenge);
    161   1.44     lukem 		goto cleanup_auth_url;
    162   1.44     lukem 	}
    163   1.44     lukem 
    164   1.91     lukem #define	REALM "realm=\""
    165  1.150     lukem 	if (STRNEQUAL(cp, REALM))
    166   1.44     lukem 		cp += sizeof(REALM) - 1;
    167   1.44     lukem 	else {
    168  1.175     lukem 		warnx("Unsupported authentication challenge `%s'",
    169   1.44     lukem 		    challenge);
    170   1.44     lukem 		goto cleanup_auth_url;
    171   1.44     lukem 	}
    172  1.154     lukem /* XXX: need to improve quoted-string parsing to support \ quoting, etc. */
    173   1.44     lukem 	if ((ep = strchr(cp, '\"')) != NULL) {
    174  1.186     lukem 		len = ep - cp;
    175  1.166  christos 		realm = (char *)ftp_malloc(len + 1);
    176   1.78     lukem 		(void)strlcpy(realm, cp, len + 1);
    177   1.44     lukem 	} else {
    178  1.175     lukem 		warnx("Unsupported authentication challenge `%s'",
    179   1.44     lukem 		    challenge);
    180   1.44     lukem 		goto cleanup_auth_url;
    181   1.44     lukem 	}
    182   1.44     lukem 
    183  1.154     lukem 	fprintf(ttyout, "Username for `%s': ", realm);
    184  1.154     lukem 	if (guser != NULL) {
    185  1.186     lukem 		(void)strlcpy(uuser, guser, sizeof(uuser));
    186  1.186     lukem 		fprintf(ttyout, "%s\n", uuser);
    187  1.154     lukem 	} else {
    188   1.54     lukem 		(void)fflush(ttyout);
    189  1.188       roy 		if (get_line(stdin, uuser, sizeof(uuser), &errormsg) < 0) {
    190  1.162     lukem 			warnx("%s; can't authenticate", errormsg);
    191   1.54     lukem 			goto cleanup_auth_url;
    192   1.90     lukem 		}
    193   1.54     lukem 	}
    194   1.54     lukem 	if (gpass != NULL)
    195  1.187     lukem 		upass = gpass;
    196  1.174     lukem 	else {
    197  1.187     lukem 		gotpass = getpass("Password: ");
    198  1.187     lukem 		if (gotpass == NULL) {
    199  1.174     lukem 			warnx("Can't read password");
    200  1.174     lukem 			goto cleanup_auth_url;
    201  1.174     lukem 		}
    202  1.187     lukem 		upass = gotpass;
    203  1.174     lukem 	}
    204   1.44     lukem 
    205  1.187     lukem 	clen = strlen(uuser) + strlen(upass) + 2;	/* user + ":" + pass + "\0" */
    206  1.166  christos 	clear = (char *)ftp_malloc(clen);
    207  1.186     lukem 	(void)strlcpy(clear, uuser, clen);
    208   1.78     lukem 	(void)strlcat(clear, ":", clen);
    209  1.187     lukem 	(void)strlcat(clear, upass, clen);
    210  1.187     lukem 	if (gotpass)
    211  1.187     lukem 		memset(gotpass, 0, strlen(gotpass));
    212   1.44     lukem 
    213   1.64     lukem 						/* scheme + " " + enc + "\0" */
    214   1.74     lukem 	rlen = strlen(scheme) + 1 + (clen + 2) * 4 / 3 + 1;
    215  1.166  christos 	*response = (char *)ftp_malloc(rlen);
    216   1.78     lukem 	(void)strlcpy(*response, scheme, rlen);
    217   1.72     lukem 	len = strlcat(*response, " ", rlen);
    218  1.152     lukem 			/* use  `clen - 1'  to not encode the trailing NUL */
    219  1.158     lukem 	base64_encode((unsigned char *)clear, clen - 1,
    220  1.158     lukem 	    (unsigned char *)*response + len);
    221   1.80     lukem 	memset(clear, 0, clen);
    222   1.44     lukem 	rval = 0;
    223   1.44     lukem 
    224  1.118     lukem  cleanup_auth_url:
    225   1.44     lukem 	FREEPTR(clear);
    226   1.44     lukem 	FREEPTR(realm);
    227   1.44     lukem 	return (rval);
    228   1.44     lukem }
    229   1.44     lukem 
    230   1.44     lukem /*
    231   1.44     lukem  * Encode len bytes starting at clear using base64 encoding into encoded,
    232   1.44     lukem  * which should be at least ((len + 2) * 4 / 3 + 1) in size.
    233   1.44     lukem  */
    234  1.124     lukem static void
    235  1.154     lukem base64_encode(const unsigned char *clear, size_t len, unsigned char *encoded)
    236   1.44     lukem {
    237  1.154     lukem 	static const unsigned char enc[] =
    238   1.44     lukem 	    "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
    239  1.154     lukem 	unsigned char	*cp;
    240  1.187     lukem 	size_t	 i;
    241   1.44     lukem 
    242   1.44     lukem 	cp = encoded;
    243   1.44     lukem 	for (i = 0; i < len; i += 3) {
    244   1.44     lukem 		*(cp++) = enc[((clear[i + 0] >> 2))];
    245   1.44     lukem 		*(cp++) = enc[((clear[i + 0] << 4) & 0x30)
    246   1.44     lukem 			    | ((clear[i + 1] >> 4) & 0x0f)];
    247   1.44     lukem 		*(cp++) = enc[((clear[i + 1] << 2) & 0x3c)
    248   1.44     lukem 			    | ((clear[i + 2] >> 6) & 0x03)];
    249   1.44     lukem 		*(cp++) = enc[((clear[i + 2]     ) & 0x3f)];
    250   1.44     lukem 	}
    251   1.44     lukem 	*cp = '\0';
    252   1.44     lukem 	while (i-- > len)
    253   1.44     lukem 		*(--cp) = '=';
    254   1.44     lukem }
    255  1.147  christos #endif
    256   1.44     lukem 
    257   1.50     lukem /*
    258   1.50     lukem  * Decode %xx escapes in given string, `in-place'.
    259   1.50     lukem  */
    260   1.50     lukem static void
    261  1.111     lukem url_decode(char *url)
    262   1.50     lukem {
    263   1.50     lukem 	unsigned char *p, *q;
    264   1.50     lukem 
    265   1.50     lukem 	if (EMPTYSTRING(url))
    266   1.50     lukem 		return;
    267   1.75     lukem 	p = q = (unsigned char *)url;
    268   1.50     lukem 
    269   1.91     lukem #define	HEXTOINT(x) (x - (isdigit(x) ? '0' : (islower(x) ? 'a' : 'A') - 10))
    270   1.50     lukem 	while (*p) {
    271   1.50     lukem 		if (p[0] == '%'
    272   1.50     lukem 		    && p[1] && isxdigit((unsigned char)p[1])
    273   1.50     lukem 		    && p[2] && isxdigit((unsigned char)p[2])) {
    274   1.50     lukem 			*q++ = HEXTOINT(p[1]) * 16 + HEXTOINT(p[2]);
    275   1.50     lukem 			p+=3;
    276   1.50     lukem 		} else
    277   1.50     lukem 			*q++ = *p++;
    278   1.50     lukem 	}
    279   1.50     lukem 	*q = '\0';
    280   1.50     lukem }
    281   1.50     lukem 
    282   1.44     lukem 
    283   1.44     lukem /*
    284  1.177     lukem  * Parse URL of form (per RFC3986):
    285  1.145     lukem  *	<type>://[<user>[:<password>]@]<host>[:<port>][/<path>]
    286   1.27     lukem  * Returns -1 if a parse error occurred, otherwise 0.
    287   1.50     lukem  * It's the caller's responsibility to url_decode() the returned
    288   1.50     lukem  * user, pass and path.
    289   1.63     lukem  *
    290   1.27     lukem  * Sets type to url_t, each of the given char ** pointers to a
    291   1.27     lukem  * malloc(3)ed strings of the relevant section, and port to
    292   1.41     lukem  * the number given, or ftpport if ftp://, or httpport if http://.
    293   1.52     lukem  *
    294  1.177     lukem  * XXX: this is not totally RFC3986 compliant; <path> will have the
    295   1.53     lukem  * leading `/' unless it's an ftp:// URL, as this makes things easier
    296  1.177     lukem  * for file:// and http:// URLs.  ftp:// URLs have the `/' between the
    297  1.141       wiz  * host and the URL-path removed, but any additional leading slashes
    298  1.141       wiz  * in the URL-path are retained (because they imply that we should
    299   1.53     lukem  * later do "CWD" with a null argument).
    300   1.53     lukem  *
    301   1.53     lukem  * Examples:
    302  1.141       wiz  *	 input URL			 output path
    303   1.53     lukem  *	 ---------			 -----------
    304  1.177     lukem  *	"http://host"			"/"
    305  1.177     lukem  *	"http://host/"			"/"
    306  1.177     lukem  *	"http://host/path"		"/path"
    307   1.63     lukem  *	"file://host/dir/file"		"dir/file"
    308  1.177     lukem  *	"ftp://host"			""
    309   1.63     lukem  *	"ftp://host/"			""
    310  1.177     lukem  *	"ftp://host//"			"/"
    311  1.177     lukem  *	"ftp://host/dir/file"		"dir/file"
    312   1.53     lukem  *	"ftp://host//dir/file"		"/dir/file"
    313   1.27     lukem  */
    314   1.27     lukem static int
    315  1.186     lukem parse_url(const char *url, const char *desc, url_t *utype,
    316  1.186     lukem 		char **uuser, char **pass, char **host, char **port,
    317  1.111     lukem 		in_port_t *portnum, char **path)
    318   1.27     lukem {
    319  1.187     lukem 	const char	*origurl, *tport;
    320  1.187     lukem 	char		*cp, *ep, *thost;
    321   1.82     lukem 	size_t		 len;
    322   1.27     lukem 
    323  1.186     lukem 	if (url == NULL || desc == NULL || utype == NULL || uuser == NULL
    324   1.82     lukem 	    || pass == NULL || host == NULL || port == NULL || portnum == NULL
    325   1.82     lukem 	    || path == NULL)
    326   1.27     lukem 		errx(1, "parse_url: invoked with NULL argument!");
    327  1.183     lukem 	DPRINTF("parse_url: %s `%s'\n", desc, url);
    328   1.27     lukem 
    329   1.82     lukem 	origurl = url;
    330  1.186     lukem 	*utype = UNKNOWN_URL_T;
    331  1.186     lukem 	*uuser = *pass = *host = *port = *path = NULL;
    332   1.82     lukem 	*portnum = 0;
    333   1.63     lukem 	tport = NULL;
    334   1.27     lukem 
    335  1.150     lukem 	if (STRNEQUAL(url, HTTP_URL)) {
    336   1.27     lukem 		url += sizeof(HTTP_URL) - 1;
    337  1.186     lukem 		*utype = HTTP_URL_T;
    338   1.82     lukem 		*portnum = HTTP_PORT;
    339   1.63     lukem 		tport = httpport;
    340  1.150     lukem 	} else if (STRNEQUAL(url, FTP_URL)) {
    341   1.27     lukem 		url += sizeof(FTP_URL) - 1;
    342  1.186     lukem 		*utype = FTP_URL_T;
    343   1.82     lukem 		*portnum = FTP_PORT;
    344   1.63     lukem 		tport = ftpport;
    345  1.150     lukem 	} else if (STRNEQUAL(url, FILE_URL)) {
    346   1.27     lukem 		url += sizeof(FILE_URL) - 1;
    347  1.186     lukem 		*utype = FILE_URL_T;
    348   1.27     lukem 	} else {
    349   1.27     lukem 		warnx("Invalid %s `%s'", desc, url);
    350  1.118     lukem  cleanup_parse_url:
    351  1.186     lukem 		FREEPTR(*uuser);
    352  1.162     lukem 		if (*pass != NULL)
    353  1.162     lukem 			memset(*pass, 0, strlen(*pass));
    354   1.27     lukem 		FREEPTR(*pass);
    355   1.27     lukem 		FREEPTR(*host);
    356   1.60    itojun 		FREEPTR(*port);
    357   1.27     lukem 		FREEPTR(*path);
    358   1.27     lukem 		return (-1);
    359   1.27     lukem 	}
    360   1.27     lukem 
    361   1.27     lukem 	if (*url == '\0')
    362   1.27     lukem 		return (0);
    363   1.27     lukem 
    364   1.27     lukem 			/* find [user[:pass]@]host[:port] */
    365   1.27     lukem 	ep = strchr(url, '/');
    366   1.27     lukem 	if (ep == NULL)
    367  1.166  christos 		thost = ftp_strdup(url);
    368   1.27     lukem 	else {
    369   1.50     lukem 		len = ep - url;
    370  1.166  christos 		thost = (char *)ftp_malloc(len + 1);
    371   1.78     lukem 		(void)strlcpy(thost, url, len + 1);
    372  1.186     lukem 		if (*utype == FTP_URL_T)	/* skip first / for ftp URLs */
    373   1.53     lukem 			ep++;
    374  1.166  christos 		*path = ftp_strdup(ep);
    375   1.27     lukem 	}
    376   1.27     lukem 
    377   1.63     lukem 	cp = strchr(thost, '@');	/* look for user[:pass]@ in URLs */
    378   1.54     lukem 	if (cp != NULL) {
    379  1.186     lukem 		if (*utype == FTP_URL_T)
    380   1.54     lukem 			anonftp = 0;	/* disable anonftp */
    381  1.186     lukem 		*uuser = thost;
    382   1.27     lukem 		*cp = '\0';
    383  1.166  christos 		thost = ftp_strdup(cp + 1);
    384  1.186     lukem 		cp = strchr(*uuser, ':');
    385   1.27     lukem 		if (cp != NULL) {
    386   1.27     lukem 			*cp = '\0';
    387  1.166  christos 			*pass = ftp_strdup(cp + 1);
    388   1.27     lukem 		}
    389  1.186     lukem 		url_decode(*uuser);
    390  1.154     lukem 		if (*pass)
    391  1.154     lukem 			url_decode(*pass);
    392   1.63     lukem 	}
    393   1.63     lukem 
    394   1.63     lukem #ifdef INET6
    395   1.63     lukem 			/*
    396   1.63     lukem 			 * Check if thost is an encoded IPv6 address, as per
    397  1.177     lukem 			 * RFC3986:
    398   1.63     lukem 			 *	`[' ipv6-address ']'
    399   1.63     lukem 			 */
    400   1.63     lukem 	if (*thost == '[') {
    401   1.63     lukem 		cp = thost + 1;
    402   1.63     lukem 		if ((ep = strchr(cp, ']')) == NULL ||
    403  1.106    itojun 		    (ep[1] != '\0' && ep[1] != ':')) {
    404   1.63     lukem 			warnx("Invalid address `%s' in %s `%s'",
    405   1.82     lukem 			    thost, desc, origurl);
    406   1.63     lukem 			goto cleanup_parse_url;
    407   1.63     lukem 		}
    408  1.103     lukem 		len = ep - cp;		/* change `[xyz]' -> `xyz' */
    409   1.63     lukem 		memmove(thost, thost + 1, len);
    410   1.63     lukem 		thost[len] = '\0';
    411   1.63     lukem 		if (! isipv6addr(thost)) {
    412   1.63     lukem 			warnx("Invalid IPv6 address `%s' in %s `%s'",
    413   1.82     lukem 			    thost, desc, origurl);
    414   1.63     lukem 			goto cleanup_parse_url;
    415   1.63     lukem 		}
    416   1.63     lukem 		cp = ep + 1;
    417   1.63     lukem 		if (*cp == ':')
    418   1.63     lukem 			cp++;
    419   1.63     lukem 		else
    420   1.63     lukem 			cp = NULL;
    421   1.27     lukem 	} else
    422   1.63     lukem #endif /* INET6 */
    423  1.177     lukem 		if ((cp = strchr(thost, ':')) != NULL)
    424  1.184     lukem 			*cp++ = '\0';
    425   1.63     lukem 	*host = thost;
    426   1.60    itojun 
    427   1.27     lukem 			/* look for [:port] */
    428   1.27     lukem 	if (cp != NULL) {
    429  1.184     lukem 		unsigned long	nport;
    430   1.27     lukem 
    431  1.184     lukem 		nport = strtoul(cp, &ep, 10);
    432  1.184     lukem 		if (*cp == '\0' || *ep != '\0' ||
    433  1.184     lukem 		    nport < 1 || nport > MAX_IN_PORT_T) {
    434  1.122     lukem 			warnx("Unknown port `%s' in %s `%s'",
    435  1.122     lukem 			    cp, desc, origurl);
    436   1.27     lukem 			goto cleanup_parse_url;
    437   1.27     lukem 		}
    438   1.82     lukem 		*portnum = nport;
    439   1.63     lukem 		tport = cp;
    440   1.27     lukem 	}
    441   1.82     lukem 
    442   1.95     lukem 	if (tport != NULL)
    443  1.166  christos 		*port = ftp_strdup(tport);
    444  1.177     lukem 	if (*path == NULL) {
    445  1.177     lukem 		const char *emptypath = "/";
    446  1.186     lukem 		if (*utype == FTP_URL_T)	/* skip first / for ftp URLs */
    447  1.177     lukem 			emptypath++;
    448  1.177     lukem 		*path = ftp_strdup(emptypath);
    449  1.177     lukem 	}
    450   1.27     lukem 
    451  1.163  christos 	DPRINTF("parse_url: user `%s' pass `%s' host %s port %s(%d) "
    452  1.163  christos 	    "path `%s'\n",
    453  1.186     lukem 	    STRorNULL(*uuser), STRorNULL(*pass),
    454  1.183     lukem 	    STRorNULL(*host), STRorNULL(*port),
    455  1.183     lukem 	    *portnum ? *portnum : -1, STRorNULL(*path));
    456   1.27     lukem 
    457   1.27     lukem 	return (0);
    458   1.27     lukem }
    459   1.27     lukem 
    460   1.89     lukem sigjmp_buf	httpabort;
    461    1.2     lukem 
    462    1.1     lukem /*
    463   1.50     lukem  * Retrieve URL, via a proxy if necessary, using HTTP.
    464   1.50     lukem  * If proxyenv is set, use that for the proxy, otherwise try ftp_proxy or
    465   1.50     lukem  * http_proxy as appropriate.
    466   1.50     lukem  * Supports HTTP redirects.
    467  1.127     tacha  * Returns 1 on failure, 0 on completed xfer, -1 if ftp connection
    468   1.41     lukem  * is still open (e.g, ftp xfer with trailing /)
    469    1.1     lukem  */
    470   1.12     lukem static int
    471  1.111     lukem fetch_url(const char *url, const char *proxyenv, char *proxyauth, char *wwwauth)
    472    1.1     lukem {
    473   1.98    itojun 	struct addrinfo		hints, *res, *res0 = NULL;
    474   1.66  christos 	int			error;
    475  1.173  christos 	sigfunc volatile	oldintr;
    476  1.173  christos 	sigfunc volatile	oldintp;
    477  1.173  christos 	int volatile		s;
    478   1.95     lukem 	struct stat		sb;
    479  1.173  christos 	int volatile		ischunked;
    480  1.173  christos 	int volatile		isproxy;
    481  1.173  christos 	int volatile		rval;
    482  1.173  christos 	int volatile		hcode;
    483  1.187     lukem 	int			len;
    484  1.187     lukem 	size_t			flen;
    485   1.73     lukem 	static size_t		bufsize;
    486   1.73     lukem 	static char		*xferbuf;
    487  1.154     lukem 	const char		*cp, *token;
    488  1.173  christos 	char			*ep;
    489  1.176     lukem 	char			buf[FTPBUFLEN];
    490  1.176     lukem 	const char		*errormsg;
    491  1.173  christos 	char			*volatile savefile;
    492  1.173  christos 	char			*volatile auth;
    493  1.173  christos 	char			*volatile location;
    494  1.173  christos 	char			*volatile message;
    495  1.186     lukem 	char			*uuser, *pass, *host, *port, *path;
    496  1.173  christos 	char			*volatile decodedpath;
    497  1.144     lukem 	char			*puser, *ppass, *useragent;
    498   1.95     lukem 	off_t			hashbytes, rangestart, rangeend, entitylen;
    499  1.173  christos 	int			(*volatile closefunc)(FILE *);
    500  1.173  christos 	FILE			*volatile fin;
    501  1.173  christos 	FILE			*volatile fout;
    502   1.42     lukem 	time_t			mtime;
    503   1.42     lukem 	url_t			urltype;
    504   1.60    itojun 	in_port_t		portnum;
    505    1.1     lukem 
    506  1.183     lukem 	DPRINTF("fetch_url: `%s' proxyenv `%s'\n", url, STRorNULL(proxyenv));
    507  1.183     lukem 
    508   1.86     lukem 	oldintr = oldintp = NULL;
    509   1.22     lukem 	closefunc = NULL;
    510   1.24     lukem 	fin = fout = NULL;
    511    1.1     lukem 	s = -1;
    512  1.176     lukem 	savefile = NULL;
    513   1.44     lukem 	auth = location = message = NULL;
    514   1.52     lukem 	ischunked = isproxy = hcode = 0;
    515   1.42     lukem 	rval = 1;
    516  1.186     lukem 	uuser = pass = host = path = decodedpath = puser = ppass = NULL;
    517    1.1     lukem 
    518  1.186     lukem 	if (parse_url(url, "URL", &urltype, &uuser, &pass, &host, &port,
    519   1.82     lukem 	    &portnum, &path) == -1)
    520   1.42     lukem 		goto cleanup_fetch_url;
    521    1.5     lukem 
    522   1.27     lukem 	if (urltype == FILE_URL_T && ! EMPTYSTRING(host)
    523   1.27     lukem 	    && strcasecmp(host, "localhost") != 0) {
    524   1.27     lukem 		warnx("No support for non local file URL `%s'", url);
    525   1.42     lukem 		goto cleanup_fetch_url;
    526    1.9     lukem 	}
    527   1.27     lukem 
    528    1.9     lukem 	if (EMPTYSTRING(path)) {
    529   1.42     lukem 		if (urltype == FTP_URL_T) {
    530   1.52     lukem 			rval = fetch_ftp(url);
    531   1.42     lukem 			goto cleanup_fetch_url;
    532   1.42     lukem 		}
    533   1.27     lukem 		if (urltype != HTTP_URL_T || outfile == NULL)  {
    534   1.27     lukem 			warnx("Invalid URL (no file after host) `%s'", url);
    535   1.42     lukem 			goto cleanup_fetch_url;
    536   1.27     lukem 		}
    537    1.9     lukem 	}
    538    1.1     lukem 
    539  1.166  christos 	decodedpath = ftp_strdup(path);
    540   1.50     lukem 	url_decode(decodedpath);
    541   1.50     lukem 
    542   1.22     lukem 	if (outfile)
    543  1.166  christos 		savefile = ftp_strdup(outfile);
    544   1.22     lukem 	else {
    545   1.50     lukem 		cp = strrchr(decodedpath, '/');		/* find savefile */
    546   1.29     lukem 		if (cp != NULL)
    547  1.166  christos 			savefile = ftp_strdup(cp + 1);
    548   1.22     lukem 		else
    549  1.166  christos 			savefile = ftp_strdup(decodedpath);
    550   1.22     lukem 	}
    551  1.183     lukem 	DPRINTF("fetch_url: savefile `%s'\n", savefile);
    552    1.9     lukem 	if (EMPTYSTRING(savefile)) {
    553   1.42     lukem 		if (urltype == FTP_URL_T) {
    554   1.52     lukem 			rval = fetch_ftp(url);
    555   1.42     lukem 			goto cleanup_fetch_url;
    556   1.42     lukem 		}
    557  1.175     lukem 		warnx("No file after directory (you must specify an "
    558  1.140     grant 		    "output file) `%s'", url);
    559   1.42     lukem 		goto cleanup_fetch_url;
    560    1.9     lukem 	}
    561    1.1     lukem 
    562   1.95     lukem 	restart_point = 0;
    563   1.25     lukem 	filesize = -1;
    564   1.95     lukem 	rangestart = rangeend = entitylen = -1;
    565   1.25     lukem 	mtime = -1;
    566   1.95     lukem 	if (restartautofetch) {
    567   1.95     lukem 		if (strcmp(savefile, "-") != 0 && *savefile != '|' &&
    568   1.95     lukem 		    stat(savefile, &sb) == 0)
    569   1.95     lukem 			restart_point = sb.st_size;
    570   1.95     lukem 	}
    571   1.25     lukem 	if (urltype == FILE_URL_T) {		/* file:// URLs */
    572   1.25     lukem 		direction = "copied";
    573   1.50     lukem 		fin = fopen(decodedpath, "r");
    574   1.25     lukem 		if (fin == NULL) {
    575  1.175     lukem 			warn("Can't open `%s'", decodedpath);
    576   1.42     lukem 			goto cleanup_fetch_url;
    577    1.5     lukem 		}
    578   1.25     lukem 		if (fstat(fileno(fin), &sb) == 0) {
    579   1.25     lukem 			mtime = sb.st_mtime;
    580   1.25     lukem 			filesize = sb.st_size;
    581   1.25     lukem 		}
    582   1.95     lukem 		if (restart_point) {
    583   1.95     lukem 			if (lseek(fileno(fin), restart_point, SEEK_SET) < 0) {
    584  1.175     lukem 				warn("Can't seek to restart `%s'",
    585   1.95     lukem 				    decodedpath);
    586   1.95     lukem 				goto cleanup_fetch_url;
    587   1.95     lukem 			}
    588   1.95     lukem 		}
    589   1.95     lukem 		if (verbose) {
    590   1.95     lukem 			fprintf(ttyout, "Copying %s", decodedpath);
    591   1.95     lukem 			if (restart_point)
    592  1.121     lukem 				fprintf(ttyout, " (restarting at " LLF ")",
    593  1.121     lukem 				    (LLT)restart_point);
    594   1.95     lukem 			fputs("\n", ttyout);
    595   1.95     lukem 		}
    596   1.25     lukem 	} else {				/* ftp:// or http:// URLs */
    597  1.187     lukem 		const char *leading;
    598   1.65     lukem 		int hasleading;
    599   1.65     lukem 
    600   1.42     lukem 		if (proxyenv == NULL) {
    601   1.42     lukem 			if (urltype == HTTP_URL_T)
    602   1.91     lukem 				proxyenv = getoptionvalue("http_proxy");
    603   1.42     lukem 			else if (urltype == FTP_URL_T)
    604   1.91     lukem 				proxyenv = getoptionvalue("ftp_proxy");
    605   1.42     lukem 		}
    606   1.25     lukem 		direction = "retrieved";
    607   1.91     lukem 		if (! EMPTYSTRING(proxyenv)) {			/* use proxy */
    608   1.27     lukem 			url_t purltype;
    609   1.54     lukem 			char *phost, *ppath;
    610   1.91     lukem 			char *pport, *no_proxy;
    611  1.184     lukem 			in_port_t pportnum;
    612   1.27     lukem 
    613   1.27     lukem 			isproxy = 1;
    614   1.27     lukem 
    615   1.27     lukem 				/* check URL against list of no_proxied sites */
    616   1.91     lukem 			no_proxy = getoptionvalue("no_proxy");
    617   1.91     lukem 			if (! EMPTYSTRING(no_proxy)) {
    618  1.171      elad 				char *np, *np_copy, *np_iter;
    619  1.184     lukem 				unsigned long np_port;
    620   1.27     lukem 				size_t hlen, plen;
    621   1.27     lukem 
    622  1.171      elad 				np_iter = np_copy = ftp_strdup(no_proxy);
    623   1.27     lukem 				hlen = strlen(host);
    624  1.171      elad 				while ((cp = strsep(&np_iter, " ,")) != NULL) {
    625   1.27     lukem 					if (*cp == '\0')
    626   1.27     lukem 						continue;
    627   1.60    itojun 					if ((np = strrchr(cp, ':')) != NULL) {
    628  1.184     lukem 						*np++ =  '\0';
    629  1.184     lukem 						np_port = strtoul(np, &ep, 10);
    630  1.184     lukem 						if (*np == '\0' || *ep != '\0')
    631   1.27     lukem 							continue;
    632   1.82     lukem 						if (np_port != portnum)
    633   1.27     lukem 							continue;
    634   1.27     lukem 					}
    635   1.27     lukem 					plen = strlen(cp);
    636  1.109     lukem 					if (hlen < plen)
    637  1.109     lukem 						continue;
    638   1.27     lukem 					if (strncasecmp(host + hlen - plen,
    639   1.27     lukem 					    cp, plen) == 0) {
    640   1.27     lukem 						isproxy = 0;
    641   1.27     lukem 						break;
    642   1.27     lukem 					}
    643   1.27     lukem 				}
    644   1.27     lukem 				FREEPTR(np_copy);
    645  1.127     tacha 				if (isproxy == 0 && urltype == FTP_URL_T) {
    646  1.127     tacha 					rval = fetch_ftp(url);
    647  1.127     tacha 					goto cleanup_fetch_url;
    648  1.127     tacha 				}
    649   1.25     lukem 			}
    650    1.1     lukem 
    651   1.27     lukem 			if (isproxy) {
    652  1.180     lukem 				if (restart_point) {
    653  1.180     lukem 					warnx("Can't restart via proxy URL `%s'",
    654  1.180     lukem 					    proxyenv);
    655  1.180     lukem 					goto cleanup_fetch_url;
    656  1.180     lukem 				}
    657   1.27     lukem 				if (parse_url(proxyenv, "proxy URL", &purltype,
    658  1.184     lukem 				    &puser, &ppass, &phost, &pport, &pportnum,
    659   1.82     lukem 				    &ppath) == -1)
    660   1.42     lukem 					goto cleanup_fetch_url;
    661   1.27     lukem 
    662   1.27     lukem 				if ((purltype != HTTP_URL_T
    663   1.27     lukem 				     && purltype != FTP_URL_T) ||
    664   1.27     lukem 				    EMPTYSTRING(phost) ||
    665   1.27     lukem 				    (! EMPTYSTRING(ppath)
    666   1.27     lukem 				     && strcmp(ppath, "/") != 0)) {
    667   1.27     lukem 					warnx("Malformed proxy URL `%s'",
    668   1.27     lukem 					    proxyenv);
    669   1.27     lukem 					FREEPTR(phost);
    670   1.60    itojun 					FREEPTR(pport);
    671   1.27     lukem 					FREEPTR(ppath);
    672   1.42     lukem 					goto cleanup_fetch_url;
    673   1.27     lukem 				}
    674  1.112    itojun 				if (isipv6addr(host) &&
    675  1.112    itojun 				    strchr(host, '%') != NULL) {
    676  1.112    itojun 					warnx(
    677  1.112    itojun "Scoped address notation `%s' disallowed via web proxy",
    678  1.112    itojun 					    host);
    679  1.112    itojun 					FREEPTR(phost);
    680  1.112    itojun 					FREEPTR(pport);
    681  1.112    itojun 					FREEPTR(ppath);
    682  1.112    itojun 					goto cleanup_fetch_url;
    683  1.112    itojun 				}
    684   1.12     lukem 
    685   1.27     lukem 				FREEPTR(host);
    686   1.27     lukem 				host = phost;
    687   1.62      tron 				FREEPTR(port);
    688   1.62      tron 				port = pport;
    689   1.27     lukem 				FREEPTR(path);
    690  1.166  christos 				path = ftp_strdup(url);
    691   1.27     lukem 				FREEPTR(ppath);
    692   1.27     lukem 			}
    693   1.91     lukem 		} /* ! EMPTYSTRING(proxyenv) */
    694   1.25     lukem 
    695   1.60    itojun 		memset(&hints, 0, sizeof(hints));
    696   1.65     lukem 		hints.ai_flags = 0;
    697  1.131     lukem 		hints.ai_family = family;
    698   1.60    itojun 		hints.ai_socktype = SOCK_STREAM;
    699   1.60    itojun 		hints.ai_protocol = 0;
    700  1.184     lukem 		error = getaddrinfo(host, port, &hints, &res0);
    701   1.60    itojun 		if (error) {
    702  1.184     lukem 			warnx("Can't lookup `%s:%s': %s", host, port,
    703  1.175     lukem 			    (error == EAI_SYSTEM) ? strerror(errno)
    704  1.175     lukem 						  : gai_strerror(error));
    705   1.60    itojun 			goto cleanup_fetch_url;
    706   1.60    itojun 		}
    707   1.98    itojun 		if (res0->ai_canonname)
    708   1.98    itojun 			host = res0->ai_canonname;
    709   1.60    itojun 
    710   1.98    itojun 		s = -1;
    711   1.98    itojun 		for (res = res0; res; res = res->ai_next) {
    712  1.184     lukem 			char	hname[NI_MAXHOST], sname[NI_MAXSERV];
    713  1.184     lukem 
    714  1.113    itojun 			ai_unmapped(res);
    715   1.98    itojun 			if (getnameinfo(res->ai_addr, res->ai_addrlen,
    716  1.184     lukem 			    hname, sizeof(hname), sname, sizeof(sname),
    717  1.184     lukem 			    NI_NUMERICHOST | NI_NUMERICSERV) != 0) {
    718  1.184     lukem 				strlcpy(hname, "?", sizeof(hname));
    719  1.184     lukem 				strlcpy(sname, "?", sizeof(sname));
    720  1.184     lukem 			}
    721   1.98    itojun 
    722  1.161     lukem 			if (verbose && res0->ai_next) {
    723  1.184     lukem 				fprintf(ttyout, "Trying %s:%s ...\n",
    724  1.184     lukem 				    hname, sname);
    725  1.161     lukem 			}
    726   1.98    itojun 
    727  1.125     lukem 			s = socket(res->ai_family, SOCK_STREAM,
    728  1.125     lukem 			    res->ai_protocol);
    729   1.60    itojun 			if (s < 0) {
    730  1.175     lukem 				warn(
    731  1.184     lukem 				    "Can't create socket for connection to "
    732  1.184     lukem 				    "`%s:%s'", hname, sname);
    733   1.98    itojun 				continue;
    734   1.60    itojun 			}
    735   1.60    itojun 
    736  1.166  christos 			if (ftp_connect(s, res->ai_addr, res->ai_addrlen) < 0) {
    737   1.60    itojun 				close(s);
    738   1.98    itojun 				s = -1;
    739   1.98    itojun 				continue;
    740   1.60    itojun 			}
    741   1.98    itojun 
    742   1.98    itojun 			/* success */
    743   1.60    itojun 			break;
    744   1.60    itojun 		}
    745   1.98    itojun 
    746   1.98    itojun 		if (s < 0) {
    747  1.184     lukem 			warnx("Can't connect to `%s:%s'", host, port);
    748   1.98    itojun 			goto cleanup_fetch_url;
    749   1.98    itojun 		}
    750   1.24     lukem 
    751   1.25     lukem 		fin = fdopen(s, "r+");
    752   1.25     lukem 		/*
    753   1.27     lukem 		 * Construct and send the request.
    754   1.25     lukem 		 */
    755   1.65     lukem 		if (verbose)
    756   1.65     lukem 			fprintf(ttyout, "Requesting %s\n", url);
    757   1.65     lukem 		leading = "  (";
    758   1.65     lukem 		hasleading = 0;
    759   1.27     lukem 		if (isproxy) {
    760   1.65     lukem 			if (verbose) {
    761   1.65     lukem 				fprintf(ttyout, "%svia %s:%s", leading,
    762   1.65     lukem 				    host, port);
    763   1.65     lukem 				leading = ", ";
    764   1.65     lukem 				hasleading++;
    765   1.65     lukem 			}
    766   1.44     lukem 			fprintf(fin, "GET %s HTTP/1.0\r\n", path);
    767   1.47     lukem 			if (flushcache)
    768   1.47     lukem 				fprintf(fin, "Pragma: no-cache\r\n");
    769   1.27     lukem 		} else {
    770   1.27     lukem 			fprintf(fin, "GET %s HTTP/1.1\r\n", path);
    771  1.106    itojun 			if (strchr(host, ':')) {
    772  1.112    itojun 				char *h, *p;
    773  1.112    itojun 
    774  1.112    itojun 				/*
    775  1.112    itojun 				 * strip off IPv6 scope identifier, since it is
    776  1.112    itojun 				 * local to the node
    777  1.112    itojun 				 */
    778  1.166  christos 				h = ftp_strdup(host);
    779  1.112    itojun 				if (isipv6addr(h) &&
    780  1.112    itojun 				    (p = strchr(h, '%')) != NULL) {
    781  1.112    itojun 					*p = '\0';
    782  1.112    itojun 				}
    783  1.134     lukem 				fprintf(fin, "Host: [%s]", h);
    784  1.112    itojun 				free(h);
    785  1.106    itojun 			} else
    786  1.134     lukem 				fprintf(fin, "Host: %s", host);
    787  1.134     lukem 			if (portnum != HTTP_PORT)
    788  1.134     lukem 				fprintf(fin, ":%u", portnum);
    789  1.134     lukem 			fprintf(fin, "\r\n");
    790   1.40  explorer 			fprintf(fin, "Accept: */*\r\n");
    791   1.42     lukem 			fprintf(fin, "Connection: close\r\n");
    792   1.95     lukem 			if (restart_point) {
    793   1.95     lukem 				fputs(leading, ttyout);
    794  1.121     lukem 				fprintf(fin, "Range: bytes=" LLF "-\r\n",
    795  1.121     lukem 				    (LLT)restart_point);
    796  1.121     lukem 				fprintf(ttyout, "restarting at " LLF,
    797  1.121     lukem 				    (LLT)restart_point);
    798   1.95     lukem 				leading = ", ";
    799   1.95     lukem 				hasleading++;
    800   1.95     lukem 			}
    801   1.47     lukem 			if (flushcache)
    802   1.47     lukem 				fprintf(fin, "Cache-Control: no-cache\r\n");
    803   1.25     lukem 		}
    804  1.144     lukem 		if ((useragent=getenv("FTPUSERAGENT")) != NULL) {
    805  1.144     lukem 			fprintf(fin, "User-Agent: %s\r\n", useragent);
    806  1.144     lukem 		} else {
    807  1.144     lukem 			fprintf(fin, "User-Agent: %s/%s\r\n",
    808  1.144     lukem 			    FTP_PRODUCT, FTP_VERSION);
    809  1.144     lukem 		}
    810   1.44     lukem 		if (wwwauth) {
    811   1.65     lukem 			if (verbose) {
    812   1.65     lukem 				fprintf(ttyout, "%swith authorization",
    813   1.65     lukem 				    leading);
    814   1.65     lukem 				leading = ", ";
    815   1.65     lukem 				hasleading++;
    816   1.65     lukem 			}
    817   1.44     lukem 			fprintf(fin, "Authorization: %s\r\n", wwwauth);
    818   1.44     lukem 		}
    819   1.46     lukem 		if (proxyauth) {
    820   1.65     lukem 			if (verbose) {
    821   1.49     lukem 				fprintf(ttyout,
    822   1.65     lukem 				    "%swith proxy authorization", leading);
    823   1.65     lukem 				leading = ", ";
    824   1.65     lukem 				hasleading++;
    825   1.65     lukem 			}
    826   1.44     lukem 			fprintf(fin, "Proxy-Authorization: %s\r\n", proxyauth);
    827   1.46     lukem 		}
    828   1.65     lukem 		if (verbose && hasleading)
    829   1.65     lukem 			fputs(")\n", ttyout);
    830   1.44     lukem 		fprintf(fin, "\r\n");
    831   1.25     lukem 		if (fflush(fin) == EOF) {
    832   1.25     lukem 			warn("Writing HTTP request");
    833   1.42     lukem 			goto cleanup_fetch_url;
    834   1.25     lukem 		}
    835    1.1     lukem 
    836   1.25     lukem 				/* Read the response */
    837  1.188       roy 		len = get_line(fin, buf, sizeof(buf), &errormsg);
    838  1.176     lukem 		if (len < 0) {
    839  1.176     lukem 			if (*errormsg == '\n')
    840  1.176     lukem 				errormsg++;
    841  1.176     lukem 			warnx("Receiving HTTP reply: %s", errormsg);
    842   1.42     lukem 			goto cleanup_fetch_url;
    843   1.24     lukem 		}
    844  1.150     lukem 		while (len > 0 && (ISLWS(buf[len-1])))
    845   1.24     lukem 			buf[--len] = '\0';
    846  1.183     lukem 		DPRINTF("fetch_url: received `%s'\n", buf);
    847    1.1     lukem 
    848   1.42     lukem 				/* Determine HTTP response code */
    849   1.25     lukem 		cp = strchr(buf, ' ');
    850   1.25     lukem 		if (cp == NULL)
    851   1.25     lukem 			goto improper;
    852   1.25     lukem 		else
    853   1.25     lukem 			cp++;
    854   1.42     lukem 		hcode = strtol(cp, &ep, 10);
    855   1.42     lukem 		if (*ep != '\0' && !isspace((unsigned char)*ep))
    856   1.42     lukem 			goto improper;
    857  1.166  christos 		message = ftp_strdup(cp);
    858   1.25     lukem 
    859   1.25     lukem 				/* Read the rest of the header. */
    860   1.25     lukem 		while (1) {
    861  1.188       roy 			len = get_line(fin, buf, sizeof(buf), &errormsg);
    862  1.176     lukem 			if (len < 0) {
    863  1.176     lukem 				if (*errormsg == '\n')
    864  1.176     lukem 					errormsg++;
    865  1.176     lukem 				warnx("Receiving HTTP reply: %s", errormsg);
    866   1.42     lukem 				goto cleanup_fetch_url;
    867   1.25     lukem 			}
    868  1.150     lukem 			while (len > 0 && (ISLWS(buf[len-1])))
    869   1.25     lukem 				buf[--len] = '\0';
    870   1.25     lukem 			if (len == 0)
    871   1.25     lukem 				break;
    872  1.183     lukem 			DPRINTF("fetch_url: received `%s'\n", buf);
    873   1.25     lukem 
    874  1.154     lukem 		/*
    875  1.154     lukem 		 * Look for some headers
    876  1.154     lukem 		 */
    877  1.154     lukem 
    878   1.25     lukem 			cp = buf;
    879   1.42     lukem 
    880  1.154     lukem 			if (match_token(&cp, "Content-Length:")) {
    881  1.119     lukem 				filesize = STRTOLL(cp, &ep, 10);
    882   1.95     lukem 				if (filesize < 0 || *ep != '\0')
    883   1.25     lukem 					goto improper;
    884  1.183     lukem 				DPRINTF("fetch_url: parsed len as: " LLF "\n",
    885  1.163  christos 				    (LLT)filesize);
    886   1.42     lukem 
    887  1.154     lukem 			} else if (match_token(&cp, "Content-Range:")) {
    888  1.154     lukem 				if (! match_token(&cp, "bytes"))
    889  1.150     lukem 					goto improper;
    890  1.154     lukem 
    891  1.154     lukem 				if (*cp == '*')
    892  1.154     lukem 					cp++;
    893  1.128      yamt 				else {
    894  1.128      yamt 					rangestart = STRTOLL(cp, &ep, 10);
    895  1.128      yamt 					if (rangestart < 0 || *ep != '-')
    896  1.128      yamt 						goto improper;
    897  1.128      yamt 					cp = ep + 1;
    898  1.128      yamt 					rangeend = STRTOLL(cp, &ep, 10);
    899  1.128      yamt 					if (rangeend < 0 || rangeend < rangestart)
    900  1.128      yamt 						goto improper;
    901  1.154     lukem 					cp = ep;
    902  1.128      yamt 				}
    903  1.154     lukem 				if (*cp != '/')
    904   1.95     lukem 					goto improper;
    905  1.154     lukem 				cp++;
    906  1.154     lukem 				if (*cp == '*')
    907  1.154     lukem 					cp++;
    908  1.128      yamt 				else {
    909  1.128      yamt 					entitylen = STRTOLL(cp, &ep, 10);
    910  1.128      yamt 					if (entitylen < 0)
    911  1.128      yamt 						goto improper;
    912  1.154     lukem 					cp = ep;
    913  1.128      yamt 				}
    914  1.154     lukem 				if (*cp != '\0')
    915   1.95     lukem 					goto improper;
    916   1.95     lukem 
    917  1.163  christos #ifndef NO_DEBUG
    918  1.167  christos 				if (ftp_debug) {
    919  1.128      yamt 					fprintf(ttyout, "parsed range as: ");
    920  1.128      yamt 					if (rangestart == -1)
    921  1.128      yamt 						fprintf(ttyout, "*");
    922  1.128      yamt 					else
    923  1.128      yamt 						fprintf(ttyout, LLF "-" LLF,
    924  1.128      yamt 						    (LLT)rangestart,
    925  1.128      yamt 						    (LLT)rangeend);
    926  1.128      yamt 					fprintf(ttyout, "/" LLF "\n", (LLT)entitylen);
    927  1.128      yamt 				}
    928  1.163  christos #endif
    929   1.95     lukem 				if (! restart_point) {
    930   1.95     lukem 					warnx(
    931   1.95     lukem 				    "Received unexpected Content-Range header");
    932   1.95     lukem 					goto cleanup_fetch_url;
    933   1.95     lukem 				}
    934   1.95     lukem 
    935  1.154     lukem 			} else if (match_token(&cp, "Last-Modified:")) {
    936   1.25     lukem 				struct tm parsed;
    937   1.25     lukem 				char *t;
    938   1.25     lukem 
    939  1.178     lukem 				memset(&parsed, 0, sizeof(parsed));
    940  1.177     lukem 							/* RFC1123 */
    941   1.25     lukem 				if ((t = strptime(cp,
    942   1.25     lukem 						"%a, %d %b %Y %H:%M:%S GMT",
    943   1.25     lukem 						&parsed))
    944  1.177     lukem 							/* RFC0850 */
    945   1.25     lukem 				    || (t = strptime(cp,
    946   1.25     lukem 						"%a, %d-%b-%y %H:%M:%S GMT",
    947   1.25     lukem 						&parsed))
    948   1.25     lukem 							/* asctime */
    949   1.25     lukem 				    || (t = strptime(cp,
    950   1.25     lukem 						"%a, %b %d %H:%M:%S %Y",
    951   1.25     lukem 						&parsed))) {
    952   1.38     lukem 					parsed.tm_isdst = -1;
    953   1.25     lukem 					if (*t == '\0')
    954   1.76     lukem 						mtime = timegm(&parsed);
    955  1.163  christos #ifndef NO_DEBUG
    956  1.167  christos 					if (ftp_debug && mtime != -1) {
    957   1.25     lukem 						fprintf(ttyout,
    958   1.25     lukem 						    "parsed date as: %s",
    959  1.179     lukem 						rfc2822time(localtime(&mtime)));
    960   1.38     lukem 					}
    961  1.163  christos #endif
    962   1.25     lukem 				}
    963   1.42     lukem 
    964  1.154     lukem 			} else if (match_token(&cp, "Location:")) {
    965  1.166  christos 				location = ftp_strdup(cp);
    966  1.183     lukem 				DPRINTF("fetch_url: parsed location as `%s'\n",
    967  1.183     lukem 				    cp);
    968   1.44     lukem 
    969  1.154     lukem 			} else if (match_token(&cp, "Transfer-Encoding:")) {
    970  1.154     lukem 				if (match_token(&cp, "binary")) {
    971  1.109     lukem 					warnx(
    972  1.175     lukem 			"Bogus transfer encoding `binary' (fetching anyway)");
    973  1.109     lukem 					continue;
    974  1.109     lukem 				}
    975  1.154     lukem 				if (! (token = match_token(&cp, "chunked"))) {
    976   1.45     lukem 					warnx(
    977  1.175     lukem 				    "Unsupported transfer encoding `%s'",
    978  1.154     lukem 					    token);
    979   1.45     lukem 					goto cleanup_fetch_url;
    980   1.45     lukem 				}
    981   1.45     lukem 				ischunked++;
    982  1.183     lukem 				DPRINTF("fetch_url: using chunked encoding\n");
    983   1.45     lukem 
    984  1.154     lukem 			} else if (match_token(&cp, "Proxy-Authenticate:")
    985  1.154     lukem 				|| match_token(&cp, "WWW-Authenticate:")) {
    986  1.154     lukem 				if (! (token = match_token(&cp, "Basic"))) {
    987  1.163  christos 					DPRINTF(
    988  1.183     lukem 			"fetch_url: skipping unknown auth scheme `%s'\n",
    989  1.154     lukem 						    token);
    990  1.154     lukem 					continue;
    991  1.154     lukem 				}
    992   1.44     lukem 				FREEPTR(auth);
    993  1.166  christos 				auth = ftp_strdup(token);
    994  1.183     lukem 				DPRINTF("fetch_url: parsed auth as `%s'\n", cp);
    995   1.25     lukem 			}
    996   1.44     lukem 
    997   1.24     lukem 		}
    998   1.54     lukem 				/* finished parsing header */
    999    1.1     lukem 
   1000   1.52     lukem 		switch (hcode) {
   1001   1.52     lukem 		case 200:
   1002   1.52     lukem 			break;
   1003   1.95     lukem 		case 206:
   1004   1.95     lukem 			if (! restart_point) {
   1005   1.95     lukem 				warnx("Not expecting partial content header");
   1006   1.95     lukem 				goto cleanup_fetch_url;
   1007   1.95     lukem 			}
   1008   1.95     lukem 			break;
   1009   1.52     lukem 		case 300:
   1010   1.52     lukem 		case 301:
   1011   1.52     lukem 		case 302:
   1012   1.52     lukem 		case 303:
   1013   1.52     lukem 		case 305:
   1014  1.165  christos 		case 307:
   1015   1.52     lukem 			if (EMPTYSTRING(location)) {
   1016   1.52     lukem 				warnx(
   1017   1.52     lukem 				"No redirection Location provided by server");
   1018   1.52     lukem 				goto cleanup_fetch_url;
   1019   1.52     lukem 			}
   1020   1.52     lukem 			if (redirect_loop++ > 5) {
   1021   1.52     lukem 				warnx("Too many redirections requested");
   1022   1.52     lukem 				goto cleanup_fetch_url;
   1023   1.52     lukem 			}
   1024   1.52     lukem 			if (hcode == 305) {
   1025   1.52     lukem 				if (verbose)
   1026   1.52     lukem 					fprintf(ttyout, "Redirected via %s\n",
   1027   1.52     lukem 					    location);
   1028   1.52     lukem 				rval = fetch_url(url, location,
   1029   1.52     lukem 				    proxyauth, wwwauth);
   1030   1.52     lukem 			} else {
   1031   1.52     lukem 				if (verbose)
   1032   1.52     lukem 					fprintf(ttyout, "Redirected to %s\n",
   1033   1.52     lukem 					    location);
   1034   1.52     lukem 				rval = go_fetch(location);
   1035   1.52     lukem 			}
   1036   1.42     lukem 			goto cleanup_fetch_url;
   1037  1.147  christos #ifndef NO_AUTH
   1038   1.52     lukem 		case 401:
   1039   1.52     lukem 		case 407:
   1040   1.52     lukem 		    {
   1041   1.52     lukem 			char **authp;
   1042   1.54     lukem 			char *auser, *apass;
   1043   1.52     lukem 
   1044   1.54     lukem 			if (hcode == 401) {
   1045   1.54     lukem 				authp = &wwwauth;
   1046  1.186     lukem 				auser = uuser;
   1047   1.54     lukem 				apass = pass;
   1048   1.54     lukem 			} else {
   1049   1.54     lukem 				authp = &proxyauth;
   1050   1.54     lukem 				auser = puser;
   1051   1.54     lukem 				apass = ppass;
   1052   1.54     lukem 			}
   1053  1.149     lukem 			if (verbose || *authp == NULL ||
   1054  1.149     lukem 			    auser == NULL || apass == NULL)
   1055  1.149     lukem 				fprintf(ttyout, "%s\n", message);
   1056  1.149     lukem 			if (EMPTYSTRING(auth)) {
   1057  1.149     lukem 				warnx(
   1058  1.149     lukem 			    "No authentication challenge provided by server");
   1059  1.149     lukem 				goto cleanup_fetch_url;
   1060  1.149     lukem 			}
   1061   1.52     lukem 			if (*authp != NULL) {
   1062   1.52     lukem 				char reply[10];
   1063   1.52     lukem 
   1064   1.52     lukem 				fprintf(ttyout,
   1065   1.52     lukem 				    "Authorization failed. Retry (y/n)? ");
   1066  1.188       roy 				if (get_line(stdin, reply, sizeof(reply), NULL)
   1067  1.162     lukem 				    < 0) {
   1068   1.52     lukem 					goto cleanup_fetch_url;
   1069   1.90     lukem 				}
   1070  1.153       dsl 				if (tolower((unsigned char)reply[0]) != 'y')
   1071  1.153       dsl 					goto cleanup_fetch_url;
   1072   1.54     lukem 				auser = NULL;
   1073   1.54     lukem 				apass = NULL;
   1074   1.52     lukem 			}
   1075   1.54     lukem 			if (auth_url(auth, authp, auser, apass) == 0) {
   1076   1.52     lukem 				rval = fetch_url(url, proxyenv,
   1077   1.52     lukem 				    proxyauth, wwwauth);
   1078   1.80     lukem 				memset(*authp, 0, strlen(*authp));
   1079   1.52     lukem 				FREEPTR(*authp);
   1080   1.52     lukem 			}
   1081   1.42     lukem 			goto cleanup_fetch_url;
   1082   1.52     lukem 		    }
   1083  1.147  christos #endif
   1084   1.52     lukem 		default:
   1085   1.52     lukem 			if (message)
   1086  1.175     lukem 				warnx("Error retrieving file `%s'", message);
   1087   1.52     lukem 			else
   1088   1.52     lukem 				warnx("Unknown error retrieving file");
   1089   1.44     lukem 			goto cleanup_fetch_url;
   1090   1.44     lukem 		}
   1091   1.52     lukem 	}		/* end of ftp:// or http:// specific setup */
   1092   1.42     lukem 
   1093   1.22     lukem 			/* Open the output file. */
   1094   1.22     lukem 	if (strcmp(savefile, "-") == 0) {
   1095   1.22     lukem 		fout = stdout;
   1096   1.22     lukem 	} else if (*savefile == '|') {
   1097   1.77     lukem 		oldintp = xsignal(SIGPIPE, SIG_IGN);
   1098   1.22     lukem 		fout = popen(savefile + 1, "w");
   1099   1.22     lukem 		if (fout == NULL) {
   1100  1.175     lukem 			warn("Can't execute `%s'", savefile + 1);
   1101   1.42     lukem 			goto cleanup_fetch_url;
   1102   1.22     lukem 		}
   1103   1.22     lukem 		closefunc = pclose;
   1104   1.22     lukem 	} else {
   1105  1.129      yamt 		if ((rangeend != -1 && rangeend <= restart_point) ||
   1106  1.129      yamt 		    (rangestart == -1 && filesize != -1 && filesize <= restart_point)) {
   1107  1.129      yamt 			/* already done */
   1108  1.129      yamt 			if (verbose)
   1109  1.129      yamt 				fprintf(ttyout, "already done\n");
   1110  1.129      yamt 			rval = 0;
   1111  1.129      yamt 			goto cleanup_fetch_url;
   1112  1.129      yamt 		}
   1113  1.129      yamt 		if (restart_point && rangestart != -1) {
   1114   1.95     lukem 			if (entitylen != -1)
   1115   1.95     lukem 				filesize = entitylen;
   1116  1.129      yamt 			if (rangestart != restart_point) {
   1117   1.95     lukem 				warnx(
   1118   1.95     lukem 				    "Size of `%s' differs from save file `%s'",
   1119   1.95     lukem 				    url, savefile);
   1120   1.95     lukem 				goto cleanup_fetch_url;
   1121   1.95     lukem 			}
   1122   1.95     lukem 			fout = fopen(savefile, "a");
   1123   1.95     lukem 		} else
   1124   1.95     lukem 			fout = fopen(savefile, "w");
   1125   1.22     lukem 		if (fout == NULL) {
   1126   1.27     lukem 			warn("Can't open `%s'", savefile);
   1127   1.42     lukem 			goto cleanup_fetch_url;
   1128   1.22     lukem 		}
   1129   1.22     lukem 		closefunc = fclose;
   1130    1.1     lukem 	}
   1131    1.1     lukem 
   1132   1.22     lukem 			/* Trap signals */
   1133   1.88     lukem 	if (sigsetjmp(httpabort, 1))
   1134   1.42     lukem 		goto cleanup_fetch_url;
   1135   1.86     lukem 	(void)xsignal(SIGQUIT, psummary);
   1136   1.77     lukem 	oldintr = xsignal(SIGINT, aborthttp);
   1137    1.2     lukem 
   1138  1.187     lukem 	if ((size_t)rcvbuf_size > bufsize) {
   1139   1.73     lukem 		if (xferbuf)
   1140   1.73     lukem 			(void)free(xferbuf);
   1141   1.73     lukem 		bufsize = rcvbuf_size;
   1142  1.166  christos 		xferbuf = ftp_malloc(bufsize);
   1143   1.73     lukem 	}
   1144   1.73     lukem 
   1145    1.1     lukem 	bytes = 0;
   1146    1.1     lukem 	hashbytes = mark;
   1147    1.1     lukem 	progressmeter(-1);
   1148    1.2     lukem 
   1149   1.24     lukem 			/* Finally, suck down the file. */
   1150   1.45     lukem 	do {
   1151   1.77     lukem 		long chunksize;
   1152  1.181     lukem 		short lastchunk;
   1153   1.45     lukem 
   1154   1.45     lukem 		chunksize = 0;
   1155  1.181     lukem 		lastchunk = 0;
   1156  1.181     lukem 					/* read chunk-size */
   1157   1.45     lukem 		if (ischunked) {
   1158   1.73     lukem 			if (fgets(xferbuf, bufsize, fin) == NULL) {
   1159  1.181     lukem 				warnx("Unexpected EOF reading chunk-size");
   1160   1.45     lukem 				goto cleanup_fetch_url;
   1161   1.45     lukem 			}
   1162  1.181     lukem 			errno = 0;
   1163   1.73     lukem 			chunksize = strtol(xferbuf, &ep, 16);
   1164  1.181     lukem 			if (ep == xferbuf) {
   1165  1.181     lukem 				warnx("Invalid chunk-size");
   1166  1.181     lukem 				goto cleanup_fetch_url;
   1167  1.181     lukem 			}
   1168  1.181     lukem 			if (errno == ERANGE || chunksize < 0) {
   1169  1.181     lukem 				errno = ERANGE;
   1170  1.181     lukem 				warn("Chunk-size `%.*s'",
   1171  1.182     lukem 				    (int)(ep-xferbuf), xferbuf);
   1172  1.181     lukem 				goto cleanup_fetch_url;
   1173  1.181     lukem 			}
   1174  1.103     lukem 
   1175  1.103     lukem 				/*
   1176  1.123     lukem 				 * XXX:	Work around bug in Apache 1.3.9 and
   1177  1.123     lukem 				 *	1.3.11, which incorrectly put trailing
   1178  1.181     lukem 				 *	space after the chunk-size.
   1179  1.103     lukem 				 */
   1180  1.123     lukem 			while (*ep == ' ')
   1181  1.103     lukem 				ep++;
   1182  1.103     lukem 
   1183  1.181     lukem 					/* skip [ chunk-ext ] */
   1184  1.181     lukem 			if (*ep == ';') {
   1185  1.181     lukem 				while (*ep && *ep != '\r')
   1186  1.181     lukem 					ep++;
   1187  1.181     lukem 			}
   1188  1.181     lukem 
   1189   1.45     lukem 			if (strcmp(ep, "\r\n") != 0) {
   1190  1.181     lukem 				warnx("Unexpected data following chunk-size");
   1191   1.45     lukem 				goto cleanup_fetch_url;
   1192   1.45     lukem 			}
   1193  1.183     lukem 			DPRINTF("fetch_url: got chunk-size of " LLF "\n",
   1194  1.183     lukem 			    (LLT)chunksize);
   1195  1.181     lukem 			if (chunksize == 0) {
   1196  1.181     lukem 				lastchunk = 1;
   1197  1.181     lukem 				goto chunkdone;
   1198  1.181     lukem 			}
   1199   1.45     lukem 		}
   1200   1.59     lukem 					/* transfer file or chunk */
   1201   1.59     lukem 		while (1) {
   1202   1.59     lukem 			struct timeval then, now, td;
   1203   1.59     lukem 			off_t bufrem;
   1204   1.59     lukem 
   1205   1.71     lukem 			if (rate_get)
   1206   1.71     lukem 				(void)gettimeofday(&then, NULL);
   1207  1.187     lukem 			bufrem = rate_get ? rate_get : (off_t)bufsize;
   1208  1.101     lukem 			if (ischunked)
   1209  1.101     lukem 				bufrem = MIN(chunksize, bufrem);
   1210   1.59     lukem 			while (bufrem > 0) {
   1211  1.187     lukem 				flen = fread(xferbuf, sizeof(char),
   1212  1.187     lukem 				    MIN((off_t)bufsize, bufrem), fin);
   1213  1.187     lukem 				if (flen <= 0)
   1214   1.59     lukem 					goto chunkdone;
   1215  1.187     lukem 				bytes += flen;
   1216  1.187     lukem 				bufrem -= flen;
   1217  1.187     lukem 				if (fwrite(xferbuf, sizeof(char), flen, fout)
   1218  1.187     lukem 				    != flen) {
   1219   1.59     lukem 					warn("Writing `%s'", savefile);
   1220   1.59     lukem 					goto cleanup_fetch_url;
   1221   1.59     lukem 				}
   1222  1.101     lukem 				if (hash && !progress) {
   1223  1.101     lukem 					while (bytes >= hashbytes) {
   1224  1.101     lukem 						(void)putc('#', ttyout);
   1225  1.101     lukem 						hashbytes += mark;
   1226  1.101     lukem 					}
   1227  1.101     lukem 					(void)fflush(ttyout);
   1228  1.101     lukem 				}
   1229  1.101     lukem 				if (ischunked) {
   1230  1.187     lukem 					chunksize -= flen;
   1231  1.101     lukem 					if (chunksize <= 0)
   1232  1.101     lukem 						break;
   1233   1.45     lukem 				}
   1234   1.59     lukem 			}
   1235   1.59     lukem 			if (rate_get) {
   1236   1.59     lukem 				while (1) {
   1237   1.59     lukem 					(void)gettimeofday(&now, NULL);
   1238   1.59     lukem 					timersub(&now, &then, &td);
   1239   1.59     lukem 					if (td.tv_sec > 0)
   1240   1.59     lukem 						break;
   1241   1.59     lukem 					usleep(1000000 - td.tv_usec);
   1242   1.59     lukem 				}
   1243   1.59     lukem 			}
   1244  1.101     lukem 			if (ischunked && chunksize <= 0)
   1245  1.101     lukem 				break;
   1246    1.1     lukem 		}
   1247   1.45     lukem 					/* read CRLF after chunk*/
   1248   1.59     lukem  chunkdone:
   1249   1.45     lukem 		if (ischunked) {
   1250  1.181     lukem 			if (fgets(xferbuf, bufsize, fin) == NULL) {
   1251  1.181     lukem 				warnx("Unexpected EOF reading chunk CRLF");
   1252  1.181     lukem 				goto cleanup_fetch_url;
   1253  1.181     lukem 			}
   1254   1.73     lukem 			if (strcmp(xferbuf, "\r\n") != 0) {
   1255   1.45     lukem 				warnx("Unexpected data following chunk");
   1256   1.45     lukem 				goto cleanup_fetch_url;
   1257    1.1     lukem 			}
   1258  1.181     lukem 			if (lastchunk)
   1259  1.181     lukem 				break;
   1260    1.1     lukem 		}
   1261   1.45     lukem 	} while (ischunked);
   1262  1.181     lukem 
   1263  1.181     lukem /* XXX: deal with optional trailer & CRLF here? */
   1264  1.181     lukem 
   1265    1.1     lukem 	if (hash && !progress && bytes > 0) {
   1266    1.1     lukem 		if (bytes < mark)
   1267   1.22     lukem 			(void)putc('#', ttyout);
   1268   1.22     lukem 		(void)putc('\n', ttyout);
   1269    1.1     lukem 	}
   1270   1.25     lukem 	if (ferror(fin)) {
   1271   1.25     lukem 		warn("Reading file");
   1272   1.42     lukem 		goto cleanup_fetch_url;
   1273    1.1     lukem 	}
   1274    1.2     lukem 	progressmeter(1);
   1275   1.25     lukem 	(void)fflush(fout);
   1276   1.25     lukem 	if (closefunc == fclose && mtime != -1) {
   1277   1.25     lukem 		struct timeval tval[2];
   1278   1.25     lukem 
   1279   1.25     lukem 		(void)gettimeofday(&tval[0], NULL);
   1280   1.25     lukem 		tval[1].tv_sec = mtime;
   1281   1.25     lukem 		tval[1].tv_usec = 0;
   1282   1.31     lukem 		(*closefunc)(fout);
   1283   1.31     lukem 		fout = NULL;
   1284   1.31     lukem 
   1285   1.31     lukem 		if (utimes(savefile, tval) == -1) {
   1286   1.25     lukem 			fprintf(ttyout,
   1287   1.25     lukem 			    "Can't change modification time to %s",
   1288  1.179     lukem 			    rfc2822time(localtime(&mtime)));
   1289   1.25     lukem 		}
   1290   1.25     lukem 	}
   1291   1.25     lukem 	if (bytes > 0)
   1292   1.25     lukem 		ptransfer(0);
   1293  1.136     lukem 	bytes = 0;
   1294    1.1     lukem 
   1295   1.42     lukem 	rval = 0;
   1296   1.42     lukem 	goto cleanup_fetch_url;
   1297   1.11     lukem 
   1298  1.118     lukem  improper:
   1299  1.184     lukem 	warnx("Improper response from `%s:%s'", host, port);
   1300   1.11     lukem 
   1301  1.118     lukem  cleanup_fetch_url:
   1302   1.86     lukem 	if (oldintr)
   1303   1.86     lukem 		(void)xsignal(SIGINT, oldintr);
   1304   1.86     lukem 	if (oldintp)
   1305   1.86     lukem 		(void)xsignal(SIGPIPE, oldintp);
   1306   1.24     lukem 	if (fin != NULL)
   1307   1.24     lukem 		fclose(fin);
   1308   1.24     lukem 	else if (s != -1)
   1309    1.1     lukem 		close(s);
   1310   1.22     lukem 	if (closefunc != NULL && fout != NULL)
   1311   1.22     lukem 		(*closefunc)(fout);
   1312  1.156     lukem 	if (res0)
   1313  1.156     lukem 		freeaddrinfo(res0);
   1314   1.29     lukem 	FREEPTR(savefile);
   1315  1.186     lukem 	FREEPTR(uuser);
   1316  1.162     lukem 	if (pass != NULL)
   1317  1.162     lukem 		memset(pass, 0, strlen(pass));
   1318   1.27     lukem 	FREEPTR(pass);
   1319   1.27     lukem 	FREEPTR(host);
   1320   1.60    itojun 	FREEPTR(port);
   1321   1.27     lukem 	FREEPTR(path);
   1322   1.50     lukem 	FREEPTR(decodedpath);
   1323   1.54     lukem 	FREEPTR(puser);
   1324  1.162     lukem 	if (ppass != NULL)
   1325  1.162     lukem 		memset(ppass, 0, strlen(ppass));
   1326   1.54     lukem 	FREEPTR(ppass);
   1327   1.44     lukem 	FREEPTR(auth);
   1328   1.42     lukem 	FREEPTR(location);
   1329   1.42     lukem 	FREEPTR(message);
   1330   1.42     lukem 	return (rval);
   1331    1.1     lukem }
   1332    1.1     lukem 
   1333    1.1     lukem /*
   1334   1.50     lukem  * Abort a HTTP retrieval
   1335    1.2     lukem  */
   1336    1.2     lukem void
   1337  1.111     lukem aborthttp(int notused)
   1338    1.2     lukem {
   1339   1.88     lukem 	char msgbuf[100];
   1340  1.159     lukem 	size_t len;
   1341    1.2     lukem 
   1342  1.148     lukem 	sigint_raised = 1;
   1343    1.2     lukem 	alarmtimer(0);
   1344   1.88     lukem 	len = strlcpy(msgbuf, "\nHTTP fetch aborted.\n", sizeof(msgbuf));
   1345   1.88     lukem 	write(fileno(ttyout), msgbuf, len);
   1346   1.88     lukem 	siglongjmp(httpabort, 1);
   1347    1.2     lukem }
   1348    1.2     lukem 
   1349    1.2     lukem /*
   1350   1.50     lukem  * Retrieve ftp URL or classic ftp argument using FTP.
   1351   1.63     lukem  * Returns 1 on failure, 0 on completed xfer, -1 if ftp connection
   1352   1.42     lukem  * is still open (e.g, ftp xfer with trailing /)
   1353   1.42     lukem  */
   1354   1.42     lukem static int
   1355  1.111     lukem fetch_ftp(const char *url)
   1356   1.42     lukem {
   1357   1.42     lukem 	char		*cp, *xargv[5], rempath[MAXPATHLEN];
   1358  1.186     lukem 	char		*host, *path, *dir, *file, *uuser, *pass;
   1359   1.60    itojun 	char		*port;
   1360  1.187     lukem 	char		 cmdbuf[MAXPATHLEN];
   1361  1.187     lukem 	char		 dirbuf[4];
   1362  1.186     lukem 	int		 dirhasglob, filehasglob, rval, transtype, xargc;
   1363  1.160     lukem 	int		 oanonftp, oautologin;
   1364   1.82     lukem 	in_port_t	 portnum;
   1365   1.82     lukem 	url_t		 urltype;
   1366   1.42     lukem 
   1367  1.183     lukem 	DPRINTF("fetch_ftp: `%s'\n", url);
   1368  1.186     lukem 	host = path = dir = file = uuser = pass = NULL;
   1369   1.60    itojun 	port = NULL;
   1370   1.42     lukem 	rval = 1;
   1371  1.186     lukem 	transtype = TYPE_I;
   1372   1.42     lukem 
   1373  1.150     lukem 	if (STRNEQUAL(url, FTP_URL)) {
   1374  1.186     lukem 		if ((parse_url(url, "URL", &urltype, &uuser, &pass,
   1375   1.82     lukem 		    &host, &port, &portnum, &path) == -1) ||
   1376  1.186     lukem 		    (uuser != NULL && *uuser == '\0') ||
   1377   1.42     lukem 		    EMPTYSTRING(host)) {
   1378   1.42     lukem 			warnx("Invalid URL `%s'", url);
   1379   1.42     lukem 			goto cleanup_fetch_ftp;
   1380   1.42     lukem 		}
   1381   1.53     lukem 		/*
   1382   1.53     lukem 		 * Note: Don't url_decode(path) here.  We need to keep the
   1383   1.53     lukem 		 * distinction between "/" and "%2F" until later.
   1384   1.53     lukem 		 */
   1385   1.53     lukem 
   1386   1.53     lukem 					/* check for trailing ';type=[aid]' */
   1387   1.63     lukem 		if (! EMPTYSTRING(path) && (cp = strrchr(path, ';')) != NULL) {
   1388   1.53     lukem 			if (strcasecmp(cp, ";type=a") == 0)
   1389  1.186     lukem 				transtype = TYPE_A;
   1390   1.53     lukem 			else if (strcasecmp(cp, ";type=i") == 0)
   1391  1.186     lukem 				transtype = TYPE_I;
   1392   1.53     lukem 			else if (strcasecmp(cp, ";type=d") == 0) {
   1393   1.53     lukem 				warnx(
   1394   1.53     lukem 			    "Directory listing via a URL is not supported");
   1395   1.53     lukem 				goto cleanup_fetch_ftp;
   1396   1.53     lukem 			} else {
   1397   1.53     lukem 				warnx("Invalid suffix `%s' in URL `%s'", cp,
   1398   1.53     lukem 				    url);
   1399   1.53     lukem 				goto cleanup_fetch_ftp;
   1400   1.53     lukem 			}
   1401   1.53     lukem 			*cp = 0;
   1402   1.53     lukem 		}
   1403   1.97     lukem 	} else {			/* classic style `[user@]host:[file]' */
   1404   1.53     lukem 		urltype = CLASSIC_URL_T;
   1405  1.166  christos 		host = ftp_strdup(url);
   1406   1.97     lukem 		cp = strchr(host, '@');
   1407   1.97     lukem 		if (cp != NULL) {
   1408   1.97     lukem 			*cp = '\0';
   1409  1.186     lukem 			uuser = host;
   1410   1.97     lukem 			anonftp = 0;	/* disable anonftp */
   1411  1.166  christos 			host = ftp_strdup(cp + 1);
   1412   1.97     lukem 		}
   1413   1.42     lukem 		cp = strchr(host, ':');
   1414   1.42     lukem 		if (cp != NULL) {
   1415   1.42     lukem 			*cp = '\0';
   1416  1.166  christos 			path = ftp_strdup(cp + 1);
   1417   1.42     lukem 		}
   1418   1.42     lukem 	}
   1419   1.42     lukem 	if (EMPTYSTRING(host))
   1420   1.42     lukem 		goto cleanup_fetch_ftp;
   1421   1.42     lukem 
   1422   1.50     lukem 			/* Extract the file and (if present) directory name. */
   1423   1.42     lukem 	dir = path;
   1424   1.42     lukem 	if (! EMPTYSTRING(dir)) {
   1425   1.53     lukem 		/*
   1426   1.97     lukem 		 * If we are dealing with classic `[user@]host:[path]' syntax,
   1427   1.97     lukem 		 * then a path of the form `/file' (resulting from input of the
   1428   1.97     lukem 		 * form `host:/file') means that we should do "CWD /" before
   1429   1.97     lukem 		 * retrieving the file.  So we set dir="/" and file="file".
   1430   1.53     lukem 		 *
   1431   1.97     lukem 		 * But if we are dealing with URLs like `ftp://host/path' then
   1432   1.97     lukem 		 * a path of the form `/file' (resulting from a URL of the form
   1433   1.97     lukem 		 * `ftp://host//file') means that we should do `CWD ' (with an
   1434   1.97     lukem 		 * empty argument) before retrieving the file.  So we set
   1435   1.53     lukem 		 * dir="" and file="file".
   1436   1.53     lukem 		 *
   1437   1.97     lukem 		 * If the path does not contain / at all, we set dir=NULL.
   1438   1.97     lukem 		 * (We get a path without any slashes if we are dealing with
   1439   1.97     lukem 		 * classic `[user@]host:[file]' or URL `ftp://host/file'.)
   1440   1.53     lukem 		 *
   1441   1.97     lukem 		 * In all other cases, we set dir to a string that does not
   1442   1.97     lukem 		 * include the final '/' that separates the dir part from the
   1443   1.97     lukem 		 * file part of the path.  (This will be the empty string if
   1444   1.97     lukem 		 * and only if we are dealing with a path of the form `/file'
   1445   1.97     lukem 		 * resulting from an URL of the form `ftp://host//file'.)
   1446   1.53     lukem 		 */
   1447   1.42     lukem 		cp = strrchr(dir, '/');
   1448   1.53     lukem 		if (cp == dir && urltype == CLASSIC_URL_T) {
   1449   1.50     lukem 			file = cp + 1;
   1450  1.187     lukem 			(void)strlcpy(dirbuf, "/", sizeof(dirbuf));
   1451  1.187     lukem 			dir = dirbuf;
   1452   1.50     lukem 		} else if (cp != NULL) {
   1453   1.42     lukem 			*cp++ = '\0';
   1454   1.42     lukem 			file = cp;
   1455   1.42     lukem 		} else {
   1456   1.42     lukem 			file = dir;
   1457   1.42     lukem 			dir = NULL;
   1458   1.42     lukem 		}
   1459   1.63     lukem 	} else
   1460   1.63     lukem 		dir = NULL;
   1461   1.53     lukem 	if (urltype == FTP_URL_T && file != NULL) {
   1462  1.157     lukem 		url_decode(file);
   1463   1.53     lukem 		/* but still don't url_decode(dir) */
   1464   1.53     lukem 	}
   1465  1.163  christos 	DPRINTF("fetch_ftp: user `%s' pass `%s' host %s port %s "
   1466  1.163  christos 	    "path `%s' dir `%s' file `%s'\n",
   1467  1.186     lukem 	    STRorNULL(uuser), STRorNULL(pass),
   1468  1.183     lukem 	    STRorNULL(host), STRorNULL(port),
   1469  1.183     lukem 	    STRorNULL(path), STRorNULL(dir), STRorNULL(file));
   1470   1.42     lukem 
   1471   1.42     lukem 	dirhasglob = filehasglob = 0;
   1472   1.53     lukem 	if (doglob && urltype == CLASSIC_URL_T) {
   1473   1.42     lukem 		if (! EMPTYSTRING(dir) && strpbrk(dir, "*?[]{}") != NULL)
   1474   1.42     lukem 			dirhasglob = 1;
   1475   1.42     lukem 		if (! EMPTYSTRING(file) && strpbrk(file, "*?[]{}") != NULL)
   1476   1.42     lukem 			filehasglob = 1;
   1477   1.42     lukem 	}
   1478   1.42     lukem 
   1479   1.50     lukem 			/* Set up the connection */
   1480  1.160     lukem 	oanonftp = anonftp;
   1481   1.50     lukem 	if (connected)
   1482   1.50     lukem 		disconnect(0, NULL);
   1483  1.160     lukem 	anonftp = oanonftp;
   1484  1.187     lukem 	(void)strlcpy(cmdbuf, getprogname(), sizeof(cmdbuf));
   1485  1.187     lukem 	xargv[0] = cmdbuf;
   1486   1.50     lukem 	xargv[1] = host;
   1487   1.50     lukem 	xargv[2] = NULL;
   1488   1.50     lukem 	xargc = 2;
   1489   1.50     lukem 	if (port) {
   1490   1.60    itojun 		xargv[2] = port;
   1491   1.50     lukem 		xargv[3] = NULL;
   1492   1.50     lukem 		xargc = 3;
   1493   1.50     lukem 	}
   1494   1.50     lukem 	oautologin = autologin;
   1495  1.116     lukem 		/* don't autologin in setpeer(), use ftp_login() below */
   1496  1.116     lukem 	autologin = 0;
   1497   1.50     lukem 	setpeer(xargc, xargv);
   1498   1.50     lukem 	autologin = oautologin;
   1499  1.116     lukem 	if ((connected == 0) ||
   1500  1.186     lukem 	    (connected == 1 && !ftp_login(host, uuser, pass))) {
   1501  1.184     lukem 		warnx("Can't connect or login to host `%s:%s'", host, port);
   1502   1.50     lukem 		goto cleanup_fetch_ftp;
   1503   1.50     lukem 	}
   1504   1.42     lukem 
   1505  1.186     lukem 	switch (transtype) {
   1506   1.53     lukem 	case TYPE_A:
   1507  1.118     lukem 		setascii(1, xargv);
   1508   1.53     lukem 		break;
   1509   1.53     lukem 	case TYPE_I:
   1510  1.118     lukem 		setbinary(1, xargv);
   1511   1.53     lukem 		break;
   1512   1.53     lukem 	default:
   1513  1.186     lukem 		errx(1, "fetch_ftp: unknown transfer type %d", transtype);
   1514   1.53     lukem 	}
   1515   1.53     lukem 
   1516   1.63     lukem 		/*
   1517   1.63     lukem 		 * Change directories, if necessary.
   1518   1.63     lukem 		 *
   1519   1.63     lukem 		 * Note: don't use EMPTYSTRING(dir) below, because
   1520   1.63     lukem 		 * dir=="" means something different from dir==NULL.
   1521   1.63     lukem 		 */
   1522   1.53     lukem 	if (dir != NULL && !dirhasglob) {
   1523   1.53     lukem 		char *nextpart;
   1524   1.42     lukem 
   1525   1.53     lukem 		/*
   1526   1.97     lukem 		 * If we are dealing with a classic `[user@]host:[path]'
   1527   1.97     lukem 		 * (urltype is CLASSIC_URL_T) then we have a raw directory
   1528   1.53     lukem 		 * name (not encoded in any way) and we can change
   1529   1.53     lukem 		 * directories in one step.
   1530   1.53     lukem 		 *
   1531   1.53     lukem 		 * If we are dealing with an `ftp://host/path' URL
   1532  1.177     lukem 		 * (urltype is FTP_URL_T), then RFC3986 says we need to
   1533   1.53     lukem 		 * send a separate CWD command for each unescaped "/"
   1534   1.53     lukem 		 * in the path, and we have to interpret %hex escaping
   1535   1.53     lukem 		 * *after* we find the slashes.  It's possible to get
   1536   1.53     lukem 		 * empty components here, (from multiple adjacent
   1537  1.177     lukem 		 * slashes in the path) and RFC3986 says that we should
   1538   1.53     lukem 		 * still do `CWD ' (with a null argument) in such cases.
   1539   1.53     lukem 		 *
   1540   1.63     lukem 		 * Many ftp servers don't support `CWD ', so if there's an
   1541   1.63     lukem 		 * error performing that command, bail out with a descriptive
   1542   1.63     lukem 		 * message.
   1543   1.53     lukem 		 *
   1544   1.53     lukem 		 * Examples:
   1545   1.53     lukem 		 *
   1546   1.63     lukem 		 * host:			dir="", urltype=CLASSIC_URL_T
   1547   1.63     lukem 		 *		logged in (to default directory)
   1548   1.53     lukem 		 * host:file			dir=NULL, urltype=CLASSIC_URL_T
   1549   1.53     lukem 		 *		"RETR file"
   1550   1.63     lukem 		 * host:dir/			dir="dir", urltype=CLASSIC_URL_T
   1551   1.63     lukem 		 *		"CWD dir", logged in
   1552   1.63     lukem 		 * ftp://host/			dir="", urltype=FTP_URL_T
   1553   1.63     lukem 		 *		logged in (to default directory)
   1554   1.63     lukem 		 * ftp://host/dir/		dir="dir", urltype=FTP_URL_T
   1555   1.63     lukem 		 *		"CWD dir", logged in
   1556   1.53     lukem 		 * ftp://host/file		dir=NULL, urltype=FTP_URL_T
   1557   1.53     lukem 		 *		"RETR file"
   1558   1.53     lukem 		 * ftp://host//file		dir="", urltype=FTP_URL_T
   1559   1.63     lukem 		 *		"CWD ", "RETR file"
   1560   1.53     lukem 		 * host:/file			dir="/", urltype=CLASSIC_URL_T
   1561   1.53     lukem 		 *		"CWD /", "RETR file"
   1562   1.53     lukem 		 * ftp://host///file		dir="/", urltype=FTP_URL_T
   1563   1.63     lukem 		 *		"CWD ", "CWD ", "RETR file"
   1564   1.53     lukem 		 * ftp://host/%2F/file		dir="%2F", urltype=FTP_URL_T
   1565   1.53     lukem 		 *		"CWD /", "RETR file"
   1566   1.53     lukem 		 * ftp://host/foo/file		dir="foo", urltype=FTP_URL_T
   1567   1.53     lukem 		 *		"CWD foo", "RETR file"
   1568   1.53     lukem 		 * ftp://host/foo/bar/file	dir="foo/bar"
   1569   1.53     lukem 		 *		"CWD foo", "CWD bar", "RETR file"
   1570   1.53     lukem 		 * ftp://host//foo/bar/file	dir="/foo/bar"
   1571   1.63     lukem 		 *		"CWD ", "CWD foo", "CWD bar", "RETR file"
   1572   1.53     lukem 		 * ftp://host/foo//bar/file	dir="foo//bar"
   1573   1.63     lukem 		 *		"CWD foo", "CWD ", "CWD bar", "RETR file"
   1574   1.53     lukem 		 * ftp://host/%2F/foo/bar/file	dir="%2F/foo/bar"
   1575   1.53     lukem 		 *		"CWD /", "CWD foo", "CWD bar", "RETR file"
   1576   1.53     lukem 		 * ftp://host/%2Ffoo/bar/file	dir="%2Ffoo/bar"
   1577   1.53     lukem 		 *		"CWD /foo", "CWD bar", "RETR file"
   1578   1.53     lukem 		 * ftp://host/%2Ffoo%2Fbar/file	dir="%2Ffoo%2Fbar"
   1579   1.53     lukem 		 *		"CWD /foo/bar", "RETR file"
   1580   1.53     lukem 		 * ftp://host/%2Ffoo%2Fbar%2Ffile	dir=NULL
   1581   1.53     lukem 		 *		"RETR /foo/bar/file"
   1582   1.53     lukem 		 *
   1583   1.53     lukem 		 * Note that we don't need `dir' after this point.
   1584   1.53     lukem 		 */
   1585   1.53     lukem 		do {
   1586   1.53     lukem 			if (urltype == FTP_URL_T) {
   1587   1.53     lukem 				nextpart = strchr(dir, '/');
   1588   1.53     lukem 				if (nextpart) {
   1589   1.53     lukem 					*nextpart = '\0';
   1590   1.53     lukem 					nextpart++;
   1591   1.53     lukem 				}
   1592   1.53     lukem 				url_decode(dir);
   1593   1.53     lukem 			} else
   1594   1.53     lukem 				nextpart = NULL;
   1595  1.183     lukem 			DPRINTF("fetch_ftp: dir `%s', nextpart `%s'\n",
   1596  1.183     lukem 			    STRorNULL(dir), STRorNULL(nextpart));
   1597   1.63     lukem 			if (urltype == FTP_URL_T || *dir != '\0') {
   1598  1.187     lukem 				(void)strlcpy(cmdbuf, "cd", sizeof(cmdbuf));
   1599  1.187     lukem 				xargv[0] = cmdbuf;
   1600   1.53     lukem 				xargv[1] = dir;
   1601   1.53     lukem 				xargv[2] = NULL;
   1602   1.53     lukem 				dirchange = 0;
   1603   1.53     lukem 				cd(2, xargv);
   1604   1.63     lukem 				if (! dirchange) {
   1605   1.63     lukem 					if (*dir == '\0' && code == 500)
   1606   1.63     lukem 						fprintf(stderr,
   1607   1.63     lukem "\n"
   1608   1.63     lukem "ftp: The `CWD ' command (without a directory), which is required by\n"
   1609  1.177     lukem "     RFC3986 to support the empty directory in the URL pathname (`//'),\n"
   1610  1.177     lukem "     conflicts with the server's conformance to RFC0959.\n"
   1611   1.63     lukem "     Try the same URL without the `//' in the URL pathname.\n"
   1612   1.63     lukem "\n");
   1613   1.53     lukem 					goto cleanup_fetch_ftp;
   1614   1.63     lukem 				}
   1615   1.53     lukem 			}
   1616   1.53     lukem 			dir = nextpart;
   1617   1.53     lukem 		} while (dir != NULL);
   1618   1.42     lukem 	}
   1619   1.42     lukem 
   1620   1.42     lukem 	if (EMPTYSTRING(file)) {
   1621   1.42     lukem 		rval = -1;
   1622   1.42     lukem 		goto cleanup_fetch_ftp;
   1623   1.42     lukem 	}
   1624   1.42     lukem 
   1625   1.42     lukem 	if (dirhasglob) {
   1626   1.78     lukem 		(void)strlcpy(rempath, dir,	sizeof(rempath));
   1627   1.78     lukem 		(void)strlcat(rempath, "/",	sizeof(rempath));
   1628   1.78     lukem 		(void)strlcat(rempath, file,	sizeof(rempath));
   1629   1.42     lukem 		file = rempath;
   1630   1.42     lukem 	}
   1631   1.42     lukem 
   1632   1.42     lukem 			/* Fetch the file(s). */
   1633   1.42     lukem 	xargc = 2;
   1634  1.187     lukem 	(void)strlcpy(cmdbuf, "get", sizeof(cmdbuf));
   1635  1.187     lukem 	xargv[0] = cmdbuf;
   1636   1.42     lukem 	xargv[1] = file;
   1637   1.42     lukem 	xargv[2] = NULL;
   1638   1.42     lukem 	if (dirhasglob || filehasglob) {
   1639   1.42     lukem 		int ointeractive;
   1640   1.42     lukem 
   1641   1.42     lukem 		ointeractive = interactive;
   1642   1.42     lukem 		interactive = 0;
   1643  1.155     lukem 		if (restartautofetch)
   1644  1.187     lukem 			(void)strlcpy(cmdbuf, "mreget", sizeof(cmdbuf));
   1645  1.155     lukem 		else
   1646  1.187     lukem 			(void)strlcpy(cmdbuf, "mget", sizeof(cmdbuf));
   1647  1.187     lukem 		xargv[0] = cmdbuf;
   1648   1.42     lukem 		mget(xargc, xargv);
   1649   1.42     lukem 		interactive = ointeractive;
   1650   1.42     lukem 	} else {
   1651   1.53     lukem 		if (outfile == NULL) {
   1652   1.53     lukem 			cp = strrchr(file, '/');	/* find savefile */
   1653   1.53     lukem 			if (cp != NULL)
   1654   1.53     lukem 				outfile = cp + 1;
   1655   1.53     lukem 			else
   1656   1.53     lukem 				outfile = file;
   1657   1.42     lukem 		}
   1658   1.53     lukem 		xargv[2] = (char *)outfile;
   1659   1.53     lukem 		xargv[3] = NULL;
   1660   1.53     lukem 		xargc++;
   1661   1.52     lukem 		if (restartautofetch)
   1662   1.52     lukem 			reget(xargc, xargv);
   1663   1.52     lukem 		else
   1664   1.52     lukem 			get(xargc, xargv);
   1665   1.42     lukem 	}
   1666   1.42     lukem 
   1667   1.42     lukem 	if ((code / 100) == COMPLETE)
   1668   1.42     lukem 		rval = 0;
   1669   1.42     lukem 
   1670  1.118     lukem  cleanup_fetch_ftp:
   1671  1.169  christos 	FREEPTR(port);
   1672   1.42     lukem 	FREEPTR(host);
   1673   1.42     lukem 	FREEPTR(path);
   1674  1.186     lukem 	FREEPTR(uuser);
   1675  1.162     lukem 	if (pass)
   1676  1.162     lukem 		memset(pass, 0, strlen(pass));
   1677   1.42     lukem 	FREEPTR(pass);
   1678   1.42     lukem 	return (rval);
   1679   1.42     lukem }
   1680   1.42     lukem 
   1681   1.42     lukem /*
   1682   1.42     lukem  * Retrieve the given file to outfile.
   1683   1.42     lukem  * Supports arguments of the form:
   1684   1.42     lukem  *	"host:path", "ftp://host/path"	if $ftpproxy, call fetch_url() else
   1685   1.42     lukem  *					call fetch_ftp()
   1686   1.50     lukem  *	"http://host/path"		call fetch_url() to use HTTP
   1687   1.42     lukem  *	"file:///path"			call fetch_url() to copy
   1688   1.42     lukem  *	"about:..."			print a message
   1689   1.42     lukem  *
   1690   1.42     lukem  * Returns 1 on failure, 0 on completed xfer, -1 if ftp connection
   1691   1.42     lukem  * is still open (e.g, ftp xfer with trailing /)
   1692   1.42     lukem  */
   1693   1.42     lukem static int
   1694  1.111     lukem go_fetch(const char *url)
   1695   1.42     lukem {
   1696  1.186     lukem 	char *proxyenv;
   1697   1.42     lukem 
   1698  1.147  christos #ifndef NO_ABOUT
   1699   1.42     lukem 	/*
   1700   1.42     lukem 	 * Check for about:*
   1701   1.42     lukem 	 */
   1702  1.150     lukem 	if (STRNEQUAL(url, ABOUT_URL)) {
   1703   1.42     lukem 		url += sizeof(ABOUT_URL) -1;
   1704  1.144     lukem 		if (strcasecmp(url, "ftp") == 0 ||
   1705  1.144     lukem 		    strcasecmp(url, "tnftp") == 0) {
   1706   1.87     lukem 			fputs(
   1707  1.143      salo "This version of ftp has been enhanced by Luke Mewburn <lukem (at) NetBSD.org>\n"
   1708   1.87     lukem "for the NetBSD project.  Execute `man ftp' for more details.\n", ttyout);
   1709   1.87     lukem 		} else if (strcasecmp(url, "lukem") == 0) {
   1710   1.87     lukem 			fputs(
   1711   1.87     lukem "Luke Mewburn is the author of most of the enhancements in this ftp client.\n"
   1712  1.143      salo "Please email feedback to <lukem (at) NetBSD.org>.\n", ttyout);
   1713   1.42     lukem 		} else if (strcasecmp(url, "netbsd") == 0) {
   1714   1.87     lukem 			fputs(
   1715   1.87     lukem "NetBSD is a freely available and redistributable UNIX-like operating system.\n"
   1716  1.144     lukem "For more information, see http://www.NetBSD.org/\n", ttyout);
   1717   1.92     lukem 		} else if (strcasecmp(url, "version") == 0) {
   1718  1.115     lukem 			fprintf(ttyout, "Version: %s %s%s\n",
   1719  1.115     lukem 			    FTP_PRODUCT, FTP_VERSION,
   1720  1.115     lukem #ifdef INET6
   1721  1.115     lukem 			    ""
   1722  1.115     lukem #else
   1723  1.115     lukem 			    " (-IPv6)"
   1724  1.115     lukem #endif
   1725  1.115     lukem 			);
   1726   1.42     lukem 		} else {
   1727   1.42     lukem 			fprintf(ttyout, "`%s' is an interesting topic.\n", url);
   1728   1.42     lukem 		}
   1729   1.92     lukem 		fputs("\n", ttyout);
   1730   1.42     lukem 		return (0);
   1731   1.42     lukem 	}
   1732  1.147  christos #endif
   1733   1.42     lukem 
   1734   1.42     lukem 	/*
   1735   1.42     lukem 	 * Check for file:// and http:// URLs.
   1736   1.42     lukem 	 */
   1737  1.150     lukem 	if (STRNEQUAL(url, HTTP_URL) || STRNEQUAL(url, FILE_URL))
   1738   1.52     lukem 		return (fetch_url(url, NULL, NULL, NULL));
   1739   1.42     lukem 
   1740   1.42     lukem 	/*
   1741   1.42     lukem 	 * Try FTP URL-style and host:file arguments next.
   1742   1.42     lukem 	 * If ftpproxy is set with an FTP URL, use fetch_url()
   1743   1.42     lukem 	 * Othewise, use fetch_ftp().
   1744   1.42     lukem 	 */
   1745  1.186     lukem 	proxyenv = getoptionvalue("ftp_proxy");
   1746  1.186     lukem 	if (!EMPTYSTRING(proxyenv) && STRNEQUAL(url, FTP_URL))
   1747   1.52     lukem 		return (fetch_url(url, NULL, NULL, NULL));
   1748   1.42     lukem 
   1749   1.52     lukem 	return (fetch_ftp(url));
   1750   1.42     lukem }
   1751   1.42     lukem 
   1752   1.42     lukem /*
   1753   1.42     lukem  * Retrieve multiple files from the command line,
   1754   1.42     lukem  * calling go_fetch() for each file.
   1755   1.42     lukem  *
   1756   1.42     lukem  * If an ftp path has a trailing "/", the path will be cd-ed into and
   1757   1.41     lukem  * the connection remains open, and the function will return -1
   1758   1.41     lukem  * (to indicate the connection is alive).
   1759    1.1     lukem  * If an error occurs the return value will be the offset+1 in
   1760    1.1     lukem  * argv[] of the file that caused a problem (i.e, argv[x]
   1761    1.1     lukem  * returns x+1)
   1762    1.1     lukem  * Otherwise, 0 is returned if all files retrieved successfully.
   1763    1.1     lukem  */
   1764    1.1     lukem int
   1765  1.111     lukem auto_fetch(int argc, char *argv[])
   1766    1.1     lukem {
   1767  1.160     lukem 	volatile int	argpos, rval;
   1768   1.22     lukem 
   1769  1.160     lukem 	argpos = rval = 0;
   1770    1.1     lukem 
   1771   1.88     lukem 	if (sigsetjmp(toplevel, 1)) {
   1772    1.2     lukem 		if (connected)
   1773    1.2     lukem 			disconnect(0, NULL);
   1774  1.148     lukem 		if (rval > 0)
   1775  1.148     lukem 			rval = argpos + 1;
   1776  1.148     lukem 		return (rval);
   1777    1.2     lukem 	}
   1778   1.88     lukem 	(void)xsignal(SIGINT, intr);
   1779   1.91     lukem 	(void)xsignal(SIGPIPE, lostpeer);
   1780    1.1     lukem 
   1781    1.1     lukem 	/*
   1782    1.1     lukem 	 * Loop through as long as there's files to fetch.
   1783    1.1     lukem 	 */
   1784  1.160     lukem 	for (; (rval == 0) && (argpos < argc); argpos++) {
   1785    1.1     lukem 		if (strchr(argv[argpos], ':') == NULL)
   1786    1.1     lukem 			break;
   1787   1.42     lukem 		redirect_loop = 0;
   1788   1.90     lukem 		if (!anonftp)
   1789   1.90     lukem 			anonftp = 2;	/* Handle "automatic" transfers. */
   1790   1.52     lukem 		rval = go_fetch(argv[argpos]);
   1791   1.52     lukem 		if (outfile != NULL && strcmp(outfile, "-") != 0
   1792   1.52     lukem 		    && outfile[0] != '|')
   1793   1.52     lukem 			outfile = NULL;
   1794   1.42     lukem 		if (rval > 0)
   1795    1.1     lukem 			rval = argpos + 1;
   1796   1.42     lukem 	}
   1797    1.3     lukem 
   1798    1.1     lukem 	if (connected && rval != -1)
   1799    1.1     lukem 		disconnect(0, NULL);
   1800  1.114     lukem 	return (rval);
   1801  1.114     lukem }
   1802  1.114     lukem 
   1803  1.114     lukem 
   1804  1.170     lukem /*
   1805  1.170     lukem  * Upload multiple files from the command line.
   1806  1.170     lukem  *
   1807  1.170     lukem  * If an error occurs the return value will be the offset+1 in
   1808  1.170     lukem  * argv[] of the file that caused a problem (i.e, argv[x]
   1809  1.170     lukem  * returns x+1)
   1810  1.170     lukem  * Otherwise, 0 is returned if all files uploaded successfully.
   1811  1.170     lukem  */
   1812  1.114     lukem int
   1813  1.114     lukem auto_put(int argc, char **argv, const char *uploadserver)
   1814  1.114     lukem {
   1815  1.114     lukem 	char	*uargv[4], *path, *pathsep;
   1816  1.170     lukem 	int	 uargc, rval, argpos;
   1817  1.159     lukem 	size_t	 len;
   1818  1.187     lukem 	char	 cmdbuf[MAX_C_NAME];
   1819  1.114     lukem 
   1820  1.187     lukem 	(void)strlcpy(cmdbuf, "mput", sizeof(cmdbuf));
   1821  1.187     lukem 	uargv[0] = cmdbuf;
   1822  1.187     lukem 	uargv[1] = argv[0];
   1823  1.187     lukem 	uargc = 2;
   1824  1.114     lukem 	uargv[2] = uargv[3] = NULL;
   1825  1.114     lukem 	pathsep = NULL;
   1826  1.114     lukem 	rval = 1;
   1827  1.114     lukem 
   1828  1.163  christos 	DPRINTF("auto_put: target `%s'\n", uploadserver);
   1829  1.114     lukem 
   1830  1.166  christos 	path = ftp_strdup(uploadserver);
   1831  1.114     lukem 	len = strlen(path);
   1832  1.114     lukem 	if (path[len - 1] != '/' && path[len - 1] != ':') {
   1833  1.114     lukem 			/*
   1834  1.114     lukem 			 * make sure we always pass a directory to auto_fetch
   1835  1.114     lukem 			 */
   1836  1.114     lukem 		if (argc > 1) {		/* more than one file to upload */
   1837  1.114     lukem 			len = strlen(uploadserver) + 2;	/* path + "/" + "\0" */
   1838  1.114     lukem 			free(path);
   1839  1.166  christos 			path = (char *)ftp_malloc(len);
   1840  1.114     lukem 			(void)strlcpy(path, uploadserver, len);
   1841  1.114     lukem 			(void)strlcat(path, "/", len);
   1842  1.114     lukem 		} else {		/* single file to upload */
   1843  1.187     lukem 			(void)strlcpy(cmdbuf, "put", sizeof(cmdbuf));
   1844  1.187     lukem 			uargv[0] = cmdbuf;
   1845  1.114     lukem 			pathsep = strrchr(path, '/');
   1846  1.114     lukem 			if (pathsep == NULL) {
   1847  1.114     lukem 				pathsep = strrchr(path, ':');
   1848  1.114     lukem 				if (pathsep == NULL) {
   1849  1.114     lukem 					warnx("Invalid URL `%s'", path);
   1850  1.114     lukem 					goto cleanup_auto_put;
   1851  1.114     lukem 				}
   1852  1.114     lukem 				pathsep++;
   1853  1.166  christos 				uargv[2] = ftp_strdup(pathsep);
   1854  1.114     lukem 				pathsep[0] = '/';
   1855  1.157     lukem 			} else
   1856  1.166  christos 				uargv[2] = ftp_strdup(pathsep + 1);
   1857  1.114     lukem 			pathsep[1] = '\0';
   1858  1.114     lukem 			uargc++;
   1859  1.114     lukem 		}
   1860  1.114     lukem 	}
   1861  1.163  christos 	DPRINTF("auto_put: URL `%s' argv[2] `%s'\n",
   1862  1.183     lukem 	    path, STRorNULL(uargv[2]));
   1863  1.157     lukem 
   1864  1.157     lukem 			/* connect and cwd */
   1865  1.114     lukem 	rval = auto_fetch(1, &path);
   1866  1.114     lukem 	if(rval >= 0)
   1867  1.114     lukem 		goto cleanup_auto_put;
   1868  1.114     lukem 
   1869  1.170     lukem 	rval = 0;
   1870  1.170     lukem 
   1871  1.170     lukem 			/* target filename provided; upload 1 file */
   1872  1.114     lukem 			/* XXX : is this the best way? */
   1873  1.114     lukem 	if (uargc == 3) {
   1874  1.114     lukem 		uargv[1] = argv[0];
   1875  1.114     lukem 		put(uargc, uargv);
   1876  1.170     lukem 		if ((code / 100) != COMPLETE)
   1877  1.170     lukem 			rval = 1;
   1878  1.170     lukem 	} else {	/* otherwise a target dir: upload all files to it */
   1879  1.170     lukem 		for(argpos = 0; argv[argpos] != NULL; argpos++) {
   1880  1.170     lukem 			uargv[1] = argv[argpos];
   1881  1.170     lukem 			mput(uargc, uargv);
   1882  1.170     lukem 			if ((code / 100) != COMPLETE) {
   1883  1.170     lukem 				rval = argpos + 1;
   1884  1.170     lukem 				break;
   1885  1.170     lukem 			}
   1886  1.170     lukem 		}
   1887  1.114     lukem 	}
   1888  1.114     lukem 
   1889  1.118     lukem  cleanup_auto_put:
   1890  1.168  christos 	free(path);
   1891  1.114     lukem 	FREEPTR(uargv[2]);
   1892    1.1     lukem 	return (rval);
   1893    1.1     lukem }
   1894