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