1 /* $NetBSD: fetch.c,v 1.207 2015/09/12 19:38:42 wiz Exp $ */
4 * Copyright (c) 1997-2015 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
10 * This code is derived from software contributed to The NetBSD Foundation
11 * by Scott Aaron Bamford.
13 * This code is derived from software contributed to The NetBSD Foundation
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
19 * 1. Redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer.
21 * 2. Redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution.
25 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
26 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
29 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 * POSSIBILITY OF SUCH DAMAGE.
38 #include <sys/cdefs.h>
40 __RCSID("$NetBSD: fetch.c,v 1.207 2015/09/12 19:38:42 wiz Exp $");
44 * FTP User Program -- Command line file retrieval
47 #include <sys/types.h>
48 #include <sys/param.h>
49 #include <sys/socket.h>
53 #include <netinet/in.h>
56 #include <arpa/inet.h>
85 __dead
static void aborthttp(int);
86 __dead
static void timeouthttp(int);
88 static int auth_url(const char *, char **, const char *, const char *);
89 static void base64_encode(const unsigned char *, size_t, unsigned char *);
91 static int go_fetch(const char *);
92 static int fetch_ftp(const char *);
93 static int fetch_url(const char *, const char *, char *, char *);
94 static const char *match_token(const char **, const char *);
95 static int parse_url(const char *, const char *, url_t
*, char **,
96 char **, char **, char **, in_port_t
*, char **);
97 static void url_decode(char *);
99 static int redirect_loop
;
102 #define STRNEQUAL(a,b) (strncasecmp((a), (b), sizeof((b))-1) == 0)
103 #define ISLWS(x) ((x)=='\r' || (x)=='\n' || (x)==' ' || (x)=='\t')
104 #define SKIPLWS(x) do { while (ISLWS((*x))) x++; } while (0)
107 #define ABOUT_URL "about:" /* propaganda */
108 #define FILE_URL "file://" /* file URL prefix */
109 #define FTP_URL "ftp://" /* ftp URL prefix */
110 #define HTTP_URL "http://" /* http URL prefix */
112 #define HTTPS_URL "https://" /* https URL prefix */
114 #define IS_HTTP_TYPE(urltype) \
115 (((urltype) == HTTP_URL_T) || ((urltype) == HTTPS_URL_T))
117 #define IS_HTTP_TYPE(urltype) \
118 ((urltype) == HTTP_URL_T)
122 * Determine if token is the next word in buf (case insensitive).
123 * If so, advance buf past the token and any trailing LWS, and
124 * return a pointer to the token (in buf). Otherwise, return NULL.
125 * token may be preceded by LWS.
126 * token must be followed by LWS or NUL. (I.e, don't partial match).
129 match_token(const char **buf
, const char *token
)
131 const char *p
, *orig
;
134 tlen
= strlen(token
);
138 if (strncasecmp(p
, token
, tlen
) != 0)
141 if (*p
!= '\0' && !ISLWS(*p
))
151 * Generate authorization response based on given authentication challenge.
152 * Returns -1 if an error occurred, otherwise 0.
153 * Sets response to a malloc(3)ed string; caller should free.
156 auth_url(const char *challenge
, char **response
, const char *guser
,
159 const char *cp
, *scheme
, *errormsg
;
160 char *ep
, *clear
, *realm
;
161 char uuser
[BUFSIZ
], *gotpass
;
164 size_t len
, clen
, rlen
;
167 clear
= realm
= NULL
;
170 scheme
= "Basic"; /* only support Basic authentication */
173 DPRINTF("auth_url: challenge `%s'\n", challenge
);
175 if (! match_token(&cp
, scheme
)) {
176 warnx("Unsupported authentication challenge `%s'",
178 goto cleanup_auth_url
;
181 #define REALM "realm=\""
182 if (STRNEQUAL(cp
, REALM
))
183 cp
+= sizeof(REALM
) - 1;
185 warnx("Unsupported authentication challenge `%s'",
187 goto cleanup_auth_url
;
189 /* XXX: need to improve quoted-string parsing to support \ quoting, etc. */
190 if ((ep
= strchr(cp
, '\"')) != NULL
) {
192 realm
= (char *)ftp_malloc(len
+ 1);
193 (void)strlcpy(realm
, cp
, len
+ 1);
195 warnx("Unsupported authentication challenge `%s'",
197 goto cleanup_auth_url
;
200 fprintf(ttyout
, "Username for `%s': ", realm
);
202 (void)strlcpy(uuser
, guser
, sizeof(uuser
));
203 fprintf(ttyout
, "%s\n", uuser
);
205 (void)fflush(ttyout
);
206 if (get_line(stdin
, uuser
, sizeof(uuser
), &errormsg
) < 0) {
207 warnx("%s; can't authenticate", errormsg
);
208 goto cleanup_auth_url
;
214 gotpass
= getpass("Password: ");
215 if (gotpass
== NULL
) {
216 warnx("Can't read password");
217 goto cleanup_auth_url
;
222 clen
= strlen(uuser
) + strlen(upass
) + 2; /* user + ":" + pass + "\0" */
223 clear
= (char *)ftp_malloc(clen
);
224 (void)strlcpy(clear
, uuser
, clen
);
225 (void)strlcat(clear
, ":", clen
);
226 (void)strlcat(clear
, upass
, clen
);
228 memset(gotpass
, 0, strlen(gotpass
));
230 /* scheme + " " + enc + "\0" */
231 rlen
= strlen(scheme
) + 1 + (clen
+ 2) * 4 / 3 + 1;
232 *response
= (char *)ftp_malloc(rlen
);
233 (void)strlcpy(*response
, scheme
, rlen
);
234 len
= strlcat(*response
, " ", rlen
);
235 /* use `clen - 1' to not encode the trailing NUL */
236 base64_encode((unsigned char *)clear
, clen
- 1,
237 (unsigned char *)*response
+ len
);
238 memset(clear
, 0, clen
);
248 * Encode len bytes starting at clear using base64 encoding into encoded,
249 * which should be at least ((len + 2) * 4 / 3 + 1) in size.
252 base64_encode(const unsigned char *clear
, size_t len
, unsigned char *encoded
)
254 static const unsigned char enc
[] =
255 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
260 for (i
= 0; i
< len
; i
+= 3) {
261 *(cp
++) = enc
[((clear
[i
+ 0] >> 2))];
262 *(cp
++) = enc
[((clear
[i
+ 0] << 4) & 0x30)
263 | ((clear
[i
+ 1] >> 4) & 0x0f)];
264 *(cp
++) = enc
[((clear
[i
+ 1] << 2) & 0x3c)
265 | ((clear
[i
+ 2] >> 6) & 0x03)];
266 *(cp
++) = enc
[((clear
[i
+ 2] ) & 0x3f)];
275 * Decode %xx escapes in given string, `in-place'.
278 url_decode(char *url
)
280 unsigned char *p
, *q
;
282 if (EMPTYSTRING(url
))
284 p
= q
= (unsigned char *)url
;
286 #define HEXTOINT(x) (x - (isdigit(x) ? '0' : (islower(x) ? 'a' : 'A') - 10))
289 && p
[1] && isxdigit((unsigned char)p
[1])
290 && p
[2] && isxdigit((unsigned char)p
[2])) {
291 *q
++ = HEXTOINT(p
[1]) * 16 + HEXTOINT(p
[2]);
301 * Parse URL of form (per RFC 3986):
302 * <type>://[<user>[:<password>]@]<host>[:<port>][/<path>]
303 * Returns -1 if a parse error occurred, otherwise 0.
304 * It's the caller's responsibility to url_decode() the returned
305 * user, pass and path.
307 * Sets type to url_t, each of the given char ** pointers to a
308 * malloc(3)ed strings of the relevant section, and port to
309 * the number given, or ftpport if ftp://, or httpport if http://.
311 * XXX: this is not totally RFC 3986 compliant; <path> will have the
312 * leading `/' unless it's an ftp:// URL, as this makes things easier
313 * for file:// and http:// URLs. ftp:// URLs have the `/' between the
314 * host and the URL-path removed, but any additional leading slashes
315 * in the URL-path are retained (because they imply that we should
316 * later do "CWD" with a null argument).
319 * input URL output path
320 * --------- -----------
323 * "http://host/path" "/path"
324 * "file://host/dir/file" "dir/file"
328 * "ftp://host/dir/file" "dir/file"
329 * "ftp://host//dir/file" "/dir/file"
332 parse_url(const char *url
, const char *desc
, url_t
*utype
,
333 char **uuser
, char **pass
, char **host
, char **port
,
334 in_port_t
*portnum
, char **path
)
336 const char *origurl
, *tport
;
337 char *cp
, *ep
, *thost
;
340 if (url
== NULL
|| desc
== NULL
|| utype
== NULL
|| uuser
== NULL
341 || pass
== NULL
|| host
== NULL
|| port
== NULL
|| portnum
== NULL
343 errx(1, "parse_url: invoked with NULL argument!");
344 DPRINTF("parse_url: %s `%s'\n", desc
, url
);
347 *utype
= UNKNOWN_URL_T
;
348 *uuser
= *pass
= *host
= *port
= *path
= NULL
;
352 if (STRNEQUAL(url
, HTTP_URL
)) {
353 url
+= sizeof(HTTP_URL
) - 1;
355 *portnum
= HTTP_PORT
;
357 } else if (STRNEQUAL(url
, FTP_URL
)) {
358 url
+= sizeof(FTP_URL
) - 1;
362 } else if (STRNEQUAL(url
, FILE_URL
)) {
363 url
+= sizeof(FILE_URL
) - 1;
366 } else if (STRNEQUAL(url
, HTTPS_URL
)) {
367 url
+= sizeof(HTTPS_URL
) - 1;
368 *utype
= HTTPS_URL_T
;
369 *portnum
= HTTPS_PORT
;
373 warnx("Invalid %s `%s'", desc
, url
);
377 memset(*pass
, 0, strlen(*pass
));
388 /* find [user[:pass]@]host[:port] */
389 ep
= strchr(url
, '/');
391 thost
= ftp_strdup(url
);
394 thost
= (char *)ftp_malloc(len
+ 1);
395 (void)strlcpy(thost
, url
, len
+ 1);
396 if (*utype
== FTP_URL_T
) /* skip first / for ftp URLs */
398 *path
= ftp_strdup(ep
);
401 cp
= strchr(thost
, '@'); /* look for user[:pass]@ in URLs */
403 if (*utype
== FTP_URL_T
)
404 anonftp
= 0; /* disable anonftp */
407 thost
= ftp_strdup(cp
+ 1);
408 cp
= strchr(*uuser
, ':');
411 *pass
= ftp_strdup(cp
+ 1);
420 * Check if thost is an encoded IPv6 address, as per
422 * `[' ipv6-address ']'
426 if ((ep
= strchr(cp
, ']')) == NULL
||
427 (ep
[1] != '\0' && ep
[1] != ':')) {
428 warnx("Invalid address `%s' in %s `%s'",
429 thost
, desc
, origurl
);
430 goto cleanup_parse_url
;
432 len
= ep
- cp
; /* change `[xyz]' -> `xyz' */
433 memmove(thost
, thost
+ 1, len
);
435 if (! isipv6addr(thost
)) {
436 warnx("Invalid IPv6 address `%s' in %s `%s'",
437 thost
, desc
, origurl
);
438 goto cleanup_parse_url
;
447 if ((cp
= strchr(thost
, ':')) != NULL
)
451 /* look for [:port] */
455 nport
= strtoul(cp
, &ep
, 10);
456 if (*cp
== '\0' || *ep
!= '\0' ||
457 nport
< 1 || nport
> MAX_IN_PORT_T
) {
458 warnx("Unknown port `%s' in %s `%s'",
460 goto cleanup_parse_url
;
467 *port
= ftp_strdup(tport
);
469 const char *emptypath
= "/";
470 if (*utype
== FTP_URL_T
) /* skip first / for ftp URLs */
472 *path
= ftp_strdup(emptypath
);
475 DPRINTF("parse_url: user `%s' pass `%s' host %s port %s(%d) "
477 STRorNULL(*uuser
), STRorNULL(*pass
),
478 STRorNULL(*host
), STRorNULL(*port
),
479 *portnum
? *portnum
: -1, STRorNULL(*path
));
484 sigjmp_buf httpabort
;
487 * Retrieve URL, via a proxy if necessary, using HTTP.
488 * If proxyenv is set, use that for the proxy, otherwise try ftp_proxy or
489 * http_proxy/https_proxy as appropriate.
490 * Supports HTTP redirects.
491 * Returns 1 on failure, 0 on completed xfer, -1 if ftp connection
492 * is still open (e.g, ftp xfer with trailing /)
495 fetch_url(const char *url
, const char *proxyenv
, char *proxyauth
, char *wwwauth
)
497 struct addrinfo hints
, *res
, *res0
= NULL
;
499 sigfunc
volatile oldint
;
500 sigfunc
volatile oldpipe
;
501 sigfunc
volatile oldalrm
;
502 sigfunc
volatile oldquit
;
505 int volatile ischunked
;
506 int volatile isproxy
;
511 static size_t bufsize
;
512 static char *xferbuf
;
513 const char *cp
, *token
;
516 const char *errormsg
;
517 char *volatile savefile
;
519 char *volatile location
;
520 char *volatile message
;
521 char *uuser
, *pass
, *host
, *port
, *path
;
522 char *volatile decodedpath
;
523 char *puser
, *ppass
, *useragent
;
524 off_t hashbytes
, rangestart
, rangeend
, entitylen
;
525 int (*volatile closefunc
)(FILE *);
528 const char *volatile penv
= proxyenv
;
536 DPRINTF("%s: `%s' proxyenv `%s'\n", __func__
, url
, STRorNULL(penv
));
538 oldquit
= oldalrm
= oldint
= oldpipe
= NULL
;
544 auth
= location
= message
= NULL
;
545 ischunked
= isproxy
= hcode
= 0;
547 uuser
= pass
= host
= path
= decodedpath
= puser
= ppass
= NULL
;
549 if (sigsetjmp(httpabort
, 1))
550 goto cleanup_fetch_url
;
552 if (parse_url(url
, "URL", &urltype
, &uuser
, &pass
, &host
, &port
,
553 &portnum
, &path
) == -1)
554 goto cleanup_fetch_url
;
556 if (urltype
== FILE_URL_T
&& ! EMPTYSTRING(host
)
557 && strcasecmp(host
, "localhost") != 0) {
558 warnx("No support for non local file URL `%s'", url
);
559 goto cleanup_fetch_url
;
562 if (EMPTYSTRING(path
)) {
563 if (urltype
== FTP_URL_T
) {
564 rval
= fetch_ftp(url
);
565 goto cleanup_fetch_url
;
567 if (!IS_HTTP_TYPE(urltype
) || outfile
== NULL
) {
568 warnx("Invalid URL (no file after host) `%s'", url
);
569 goto cleanup_fetch_url
;
573 decodedpath
= ftp_strdup(path
);
574 url_decode(decodedpath
);
579 cp
= strrchr(decodedpath
, '/'); /* find savefile */
581 savefile
= ftp_strdup(cp
+ 1);
583 savefile
= ftp_strdup(decodedpath
);
585 DPRINTF("%s: savefile `%s'\n", __func__
, savefile
);
586 if (EMPTYSTRING(savefile
)) {
587 if (urltype
== FTP_URL_T
) {
588 rval
= fetch_ftp(url
);
589 goto cleanup_fetch_url
;
591 warnx("No file after directory (you must specify an "
592 "output file) `%s'", url
);
593 goto cleanup_fetch_url
;
598 rangestart
= rangeend
= entitylen
= -1;
600 if (restartautofetch
) {
601 if (stat(savefile
, &sb
) == 0)
602 restart_point
= sb
.st_size
;
604 if (urltype
== FILE_URL_T
) { /* file:// URLs */
605 direction
= "copied";
606 fin
= fetch_open(decodedpath
, "r");
608 warn("Can't open `%s'", decodedpath
);
609 goto cleanup_fetch_url
;
611 if (fstat(fetch_fileno(fin
), &sb
) == 0) {
613 filesize
= sb
.st_size
;
616 if (lseek(fetch_fileno(fin
), restart_point
, SEEK_SET
) < 0) {
617 warn("Can't seek to restart `%s'",
619 goto cleanup_fetch_url
;
623 fprintf(ttyout
, "Copying %s", decodedpath
);
625 fprintf(ttyout
, " (restarting at " LLF
")",
629 if (0 == rcvbuf_size
) {
630 rcvbuf_size
= 8 * 1024; /* XXX */
632 } else { /* ftp:// or http:// URLs */
638 if (urltype
== HTTPS_URL_T
)
639 penv
= getoptionvalue("https_proxy");
641 if (penv
== NULL
&& IS_HTTP_TYPE(urltype
))
642 penv
= getoptionvalue("http_proxy");
643 else if (urltype
== FTP_URL_T
)
644 penv
= getoptionvalue("ftp_proxy");
646 direction
= "retrieved";
647 if (! EMPTYSTRING(penv
)) { /* use proxy */
650 char *pport
, *no_proxy
;
655 /* check URL against list of no_proxied sites */
656 no_proxy
= getoptionvalue("no_proxy");
657 if (! EMPTYSTRING(no_proxy
)) {
658 char *np
, *np_copy
, *np_iter
;
659 unsigned long np_port
;
662 np_iter
= np_copy
= ftp_strdup(no_proxy
);
664 while ((cp
= strsep(&np_iter
, " ,")) != NULL
) {
667 if ((np
= strrchr(cp
, ':')) != NULL
) {
669 np_port
= strtoul(np
, &ep
, 10);
670 if (*np
== '\0' || *ep
!= '\0')
672 if (np_port
!= portnum
)
678 if (strncasecmp(host
+ hlen
- plen
,
685 if (isproxy
== 0 && urltype
== FTP_URL_T
) {
686 rval
= fetch_ftp(url
);
687 goto cleanup_fetch_url
;
693 warnx("Can't restart via proxy URL `%s'",
695 goto cleanup_fetch_url
;
697 if (parse_url(penv
, "proxy URL", &purltype
,
698 &puser
, &ppass
, &phost
, &pport
, &pportnum
,
700 goto cleanup_fetch_url
;
702 if ((!IS_HTTP_TYPE(purltype
)
703 && purltype
!= FTP_URL_T
) ||
704 EMPTYSTRING(phost
) ||
705 (! EMPTYSTRING(ppath
)
706 && strcmp(ppath
, "/") != 0)) {
707 warnx("Malformed proxy URL `%s'", penv
);
711 goto cleanup_fetch_url
;
713 if (isipv6addr(host
) &&
714 strchr(host
, '%') != NULL
) {
716 "Scoped address notation `%s' disallowed via web proxy",
721 goto cleanup_fetch_url
;
729 path
= ftp_strdup(url
);
733 } /* ! EMPTYSTRING(penv) */
735 memset(&hints
, 0, sizeof(hints
));
737 hints
.ai_family
= family
;
738 hints
.ai_socktype
= SOCK_STREAM
;
739 hints
.ai_protocol
= 0;
740 error
= getaddrinfo(host
, port
, &hints
, &res0
);
742 warnx("Can't LOOKUP `%s:%s': %s", host
, port
,
743 (error
== EAI_SYSTEM
) ? strerror(errno
)
744 : gai_strerror(error
));
745 goto cleanup_fetch_url
;
747 if (res0
->ai_canonname
)
748 host
= res0
->ai_canonname
;
754 for (res
= res0
; res
; res
= res
->ai_next
) {
755 char hname
[NI_MAXHOST
], sname
[NI_MAXSERV
];
758 if (getnameinfo(res
->ai_addr
, res
->ai_addrlen
,
759 hname
, sizeof(hname
), sname
, sizeof(sname
),
760 NI_NUMERICHOST
| NI_NUMERICSERV
) != 0) {
761 strlcpy(hname
, "?", sizeof(hname
));
762 strlcpy(sname
, "?", sizeof(sname
));
765 if (verbose
&& res0
->ai_next
) {
766 fprintf(ttyout
, "Trying %s:%s ...\n",
770 s
= socket(res
->ai_family
, SOCK_STREAM
,
774 "Can't create socket for connection to "
775 "`%s:%s'", hname
, sname
);
779 if (ftp_connect(s
, res
->ai_addr
, res
->ai_addrlen
,
780 verbose
|| !res
->ai_next
) < 0) {
787 if (urltype
== HTTPS_URL_T
) {
788 if ((ssl
= fetch_start_ssl(s
, host
)) == NULL
) {
801 warnx("Can't connect to `%s:%s'", host
, port
);
802 goto cleanup_fetch_url
;
805 oldalrm
= xsignal(SIGALRM
, timeouthttp
);
806 alarmtimer(quit_time
? quit_time
: 60);
807 fin
= fetch_fdopen(s
, "r+");
808 fetch_set_ssl(fin
, ssl
);
811 alarmtimer(quit_time
? quit_time
: 60);
813 * Construct and send the request.
816 fprintf(ttyout
, "Requesting %s\n", url
);
821 fprintf(ttyout
, "%svia %s:%s", leading
,
826 fetch_printf(fin
, "GET %s HTTP/1.0\r\n", path
);
828 fetch_printf(fin
, "Pragma: no-cache\r\n");
830 fetch_printf(fin
, "GET %s HTTP/1.1\r\n", path
);
831 if (strchr(host
, ':')) {
835 * strip off IPv6 scope identifier, since it is
838 h
= ftp_strdup(host
);
840 (p
= strchr(h
, '%')) != NULL
) {
843 fetch_printf(fin
, "Host: [%s]", h
);
846 fetch_printf(fin
, "Host: %s", host
);
848 if ((urltype
== HTTP_URL_T
&& portnum
!= HTTP_PORT
) ||
849 (urltype
== HTTPS_URL_T
&& portnum
!= HTTPS_PORT
))
851 if (portnum
!= HTTP_PORT
)
853 fetch_printf(fin
, ":%u", portnum
);
854 fetch_printf(fin
, "\r\n");
855 fetch_printf(fin
, "Accept: */*\r\n");
856 fetch_printf(fin
, "Connection: close\r\n");
858 fputs(leading
, ttyout
);
859 fetch_printf(fin
, "Range: bytes=" LLF
"-\r\n",
861 fprintf(ttyout
, "restarting at " LLF
,
867 fetch_printf(fin
, "Cache-Control: no-cache\r\n");
869 if ((useragent
=getenv("FTPUSERAGENT")) != NULL
) {
870 fetch_printf(fin
, "User-Agent: %s\r\n", useragent
);
872 fetch_printf(fin
, "User-Agent: %s/%s\r\n",
873 FTP_PRODUCT
, FTP_VERSION
);
877 fprintf(ttyout
, "%swith authorization",
882 fetch_printf(fin
, "Authorization: %s\r\n", wwwauth
);
887 "%swith proxy authorization", leading
);
891 fetch_printf(fin
, "Proxy-Authorization: %s\r\n", proxyauth
);
893 if (verbose
&& hasleading
)
894 fputs(")\n", ttyout
);
895 fetch_printf(fin
, "\r\n");
896 if (fetch_flush(fin
) == EOF
) {
897 warn("Writing HTTP request");
899 goto cleanup_fetch_url
;
903 /* Read the response */
904 alarmtimer(quit_time
? quit_time
: 60);
905 len
= fetch_getline(fin
, buf
, sizeof(buf
), &errormsg
);
908 if (*errormsg
== '\n')
910 warnx("Receiving HTTP reply: %s", errormsg
);
911 goto cleanup_fetch_url
;
913 while (len
> 0 && (ISLWS(buf
[len
-1])))
915 DPRINTF("%s: received `%s'\n", __func__
, buf
);
917 /* Determine HTTP response code */
918 cp
= strchr(buf
, ' ');
923 hcode
= strtol(cp
, &ep
, 10);
924 if (*ep
!= '\0' && !isspace((unsigned char)*ep
))
926 message
= ftp_strdup(cp
);
928 /* Read the rest of the header. */
930 alarmtimer(quit_time
? quit_time
: 60);
931 len
= fetch_getline(fin
, buf
, sizeof(buf
), &errormsg
);
934 if (*errormsg
== '\n')
936 warnx("Receiving HTTP reply: %s", errormsg
);
937 goto cleanup_fetch_url
;
939 while (len
> 0 && (ISLWS(buf
[len
-1])))
943 DPRINTF("%s: received `%s'\n", __func__
, buf
);
946 * Look for some headers
951 if (match_token(&cp
, "Content-Length:")) {
952 filesize
= STRTOLL(cp
, &ep
, 10);
953 if (filesize
< 0 || *ep
!= '\0')
955 DPRINTF("%s: parsed len as: " LLF
"\n",
956 __func__
, (LLT
)filesize
);
958 } else if (match_token(&cp
, "Content-Range:")) {
959 if (! match_token(&cp
, "bytes"))
965 rangestart
= STRTOLL(cp
, &ep
, 10);
966 if (rangestart
< 0 || *ep
!= '-')
969 rangeend
= STRTOLL(cp
, &ep
, 10);
970 if (rangeend
< 0 || rangeend
< rangestart
)
980 entitylen
= STRTOLL(cp
, &ep
, 10);
990 fprintf(ttyout
, "parsed range as: ");
991 if (rangestart
== -1)
992 fprintf(ttyout
, "*");
994 fprintf(ttyout
, LLF
"-" LLF
,
997 fprintf(ttyout
, "/" LLF
"\n", (LLT
)entitylen
);
1000 if (! restart_point
) {
1002 "Received unexpected Content-Range header");
1003 goto cleanup_fetch_url
;
1006 } else if (match_token(&cp
, "Last-Modified:")) {
1010 memset(&parsed
, 0, sizeof(parsed
));
1011 t
= parse_rfc2616time(&parsed
, cp
);
1013 parsed
.tm_isdst
= -1;
1015 mtime
= timegm(&parsed
);
1017 if (ftp_debug
&& mtime
!= -1) {
1019 "parsed time as: %s",
1020 rfc2822time(localtime(&mtime
)));
1025 } else if (match_token(&cp
, "Location:")) {
1026 location
= ftp_strdup(cp
);
1027 DPRINTF("%s: parsed location as `%s'\n",
1030 } else if (match_token(&cp
, "Transfer-Encoding:")) {
1031 if (match_token(&cp
, "binary")) {
1033 "Bogus transfer encoding `binary' (fetching anyway)");
1036 if (! (token
= match_token(&cp
, "chunked"))) {
1038 "Unsupported transfer encoding `%s'",
1040 goto cleanup_fetch_url
;
1043 DPRINTF("%s: using chunked encoding\n",
1046 } else if (match_token(&cp
, "Proxy-Authenticate:")
1047 || match_token(&cp
, "WWW-Authenticate:")) {
1048 if (! (token
= match_token(&cp
, "Basic"))) {
1049 DPRINTF("%s: skipping unknown auth "
1050 "scheme `%s'\n", __func__
, token
);
1054 auth
= ftp_strdup(token
);
1055 DPRINTF("%s: parsed auth as `%s'\n",
1060 /* finished parsing header */
1066 if (! restart_point
) {
1067 warnx("Not expecting partial content header");
1068 goto cleanup_fetch_url
;
1077 if (EMPTYSTRING(location
)) {
1079 "No redirection Location provided by server");
1080 goto cleanup_fetch_url
;
1082 if (redirect_loop
++ > 5) {
1083 warnx("Too many redirections requested");
1084 goto cleanup_fetch_url
;
1088 fprintf(ttyout
, "Redirected via %s\n",
1090 rval
= fetch_url(url
, location
,
1091 proxyauth
, wwwauth
);
1094 fprintf(ttyout
, "Redirected to %s\n",
1096 rval
= go_fetch(location
);
1098 goto cleanup_fetch_url
;
1104 char *auser
, *apass
;
1115 if (verbose
|| *authp
== NULL
||
1116 auser
== NULL
|| apass
== NULL
)
1117 fprintf(ttyout
, "%s\n", message
);
1118 if (EMPTYSTRING(auth
)) {
1120 "No authentication challenge provided by server");
1121 goto cleanup_fetch_url
;
1123 if (*authp
!= NULL
) {
1127 "Authorization failed. Retry (y/n)? ");
1128 if (get_line(stdin
, reply
, sizeof(reply
), NULL
)
1130 goto cleanup_fetch_url
;
1132 if (tolower((unsigned char)reply
[0]) != 'y')
1133 goto cleanup_fetch_url
;
1137 if (auth_url(auth
, authp
, auser
, apass
) == 0) {
1138 rval
= fetch_url(url
, penv
,
1139 proxyauth
, wwwauth
);
1140 memset(*authp
, 0, strlen(*authp
));
1143 goto cleanup_fetch_url
;
1148 warnx("Error retrieving file `%s'", message
);
1150 warnx("Unknown error retrieving file");
1151 goto cleanup_fetch_url
;
1153 } /* end of ftp:// or http:// specific setup */
1155 /* Open the output file. */
1158 * Only trust filenames with special meaning if they came from
1161 if (outfile
== savefile
) {
1162 if (strcmp(savefile
, "-") == 0) {
1164 } else if (*savefile
== '|') {
1165 oldpipe
= xsignal(SIGPIPE
, SIG_IGN
);
1166 fout
= popen(savefile
+ 1, "w");
1168 warn("Can't execute `%s'", savefile
+ 1);
1169 goto cleanup_fetch_url
;
1175 if ((rangeend
!= -1 && rangeend
<= restart_point
) ||
1176 (rangestart
== -1 && filesize
!= -1 && filesize
<= restart_point
)) {
1179 fprintf(ttyout
, "already done\n");
1181 goto cleanup_fetch_url
;
1183 if (restart_point
&& rangestart
!= -1) {
1184 if (entitylen
!= -1)
1185 filesize
= entitylen
;
1186 if (rangestart
!= restart_point
) {
1188 "Size of `%s' differs from save file `%s'",
1190 goto cleanup_fetch_url
;
1192 fout
= fopen(savefile
, "a");
1194 fout
= fopen(savefile
, "w");
1196 warn("Can't open `%s'", savefile
);
1197 goto cleanup_fetch_url
;
1203 oldquit
= xsignal(SIGQUIT
, psummary
);
1204 oldint
= xsignal(SIGINT
, aborthttp
);
1206 assert(rcvbuf_size
> 0);
1207 if ((size_t)rcvbuf_size
> bufsize
) {
1209 (void)free(xferbuf
);
1210 bufsize
= rcvbuf_size
;
1211 xferbuf
= ftp_malloc(bufsize
);
1217 (void)xsignal(SIGALRM
, oldalrm
);
1222 /* Finally, suck down the file. */
1229 /* read chunk-size */
1231 if (fetch_getln(xferbuf
, bufsize
, fin
) == NULL
) {
1232 warnx("Unexpected EOF reading chunk-size");
1233 goto cleanup_fetch_url
;
1236 chunksize
= strtol(xferbuf
, &ep
, 16);
1237 if (ep
== xferbuf
) {
1238 warnx("Invalid chunk-size");
1239 goto cleanup_fetch_url
;
1241 if (errno
== ERANGE
|| chunksize
< 0) {
1243 warn("Chunk-size `%.*s'",
1244 (int)(ep
-xferbuf
), xferbuf
);
1245 goto cleanup_fetch_url
;
1249 * XXX: Work around bug in Apache 1.3.9 and
1250 * 1.3.11, which incorrectly put trailing
1251 * space after the chunk-size.
1256 /* skip [ chunk-ext ] */
1258 while (*ep
&& *ep
!= '\r')
1262 if (strcmp(ep
, "\r\n") != 0) {
1263 warnx("Unexpected data following chunk-size");
1264 goto cleanup_fetch_url
;
1266 DPRINTF("%s: got chunk-size of " LLF
"\n", __func__
,
1268 if (chunksize
== 0) {
1273 /* transfer file or chunk */
1275 struct timeval then
, now
, td
;
1276 volatile off_t bufrem
;
1279 (void)gettimeofday(&then
, NULL
);
1280 bufrem
= rate_get
? rate_get
: (off_t
)bufsize
;
1282 bufrem
= MIN(chunksize
, bufrem
);
1283 while (bufrem
> 0) {
1284 flen
= fetch_read(xferbuf
, sizeof(char),
1285 MIN((off_t
)bufsize
, bufrem
), fin
);
1290 if (fwrite(xferbuf
, sizeof(char), flen
, fout
)
1292 warn("Writing `%s'", savefile
);
1293 goto cleanup_fetch_url
;
1295 if (hash
&& !progress
) {
1296 while (bytes
>= hashbytes
) {
1297 (void)putc('#', ttyout
);
1300 (void)fflush(ttyout
);
1310 (void)gettimeofday(&now
, NULL
);
1311 timersub(&now
, &then
, &td
);
1314 usleep(1000000 - td
.tv_usec
);
1317 if (ischunked
&& chunksize
<= 0)
1320 /* read CRLF after chunk*/
1323 if (fetch_getln(xferbuf
, bufsize
, fin
) == NULL
) {
1325 warnx("Unexpected EOF reading chunk CRLF");
1326 goto cleanup_fetch_url
;
1328 if (strcmp(xferbuf
, "\r\n") != 0) {
1329 warnx("Unexpected data following chunk");
1330 goto cleanup_fetch_url
;
1335 } while (ischunked
);
1337 /* XXX: deal with optional trailer & CRLF here? */
1339 if (hash
&& !progress
&& bytes
> 0) {
1341 (void)putc('#', ttyout
);
1342 (void)putc('\n', ttyout
);
1344 if (fetch_error(fin
)) {
1345 warn("Reading file");
1346 goto cleanup_fetch_url
;
1350 if (closefunc
== fclose
&& mtime
!= -1) {
1351 struct timeval tval
[2];
1353 (void)gettimeofday(&tval
[0], NULL
);
1354 tval
[1].tv_sec
= mtime
;
1355 tval
[1].tv_usec
= 0;
1359 if (utimes(savefile
, tval
) == -1) {
1361 "Can't change modification time to %s",
1362 rfc2822time(localtime(&mtime
)));
1370 goto cleanup_fetch_url
;
1373 warnx("Improper response from `%s:%s'", host
, port
);
1377 (void)xsignal(SIGINT
, oldint
);
1379 (void)xsignal(SIGPIPE
, oldpipe
);
1381 (void)xsignal(SIGALRM
, oldalrm
);
1383 (void)xsignal(SIGQUIT
, oldpipe
);
1388 if (closefunc
!= NULL
&& fout
!= NULL
)
1392 if (savefile
!= outfile
)
1396 memset(pass
, 0, strlen(pass
));
1401 FREEPTR(decodedpath
);
1404 memset(ppass
, 0, strlen(ppass
));
1413 * Abort a HTTP retrieval
1416 aborthttp(int notused
)
1424 len
= snprintf(msgbuf
, sizeof(msgbuf
),
1425 "\n%s: HTTP fetch aborted.\n", getprogname());
1427 write(fileno(ttyout
), msgbuf
, len
);
1429 siglongjmp(httpabort
, 1);
1433 timeouthttp(int notused
)
1440 len
= snprintf(msgbuf
, sizeof(msgbuf
),
1441 "\n%s: HTTP fetch timeout.\n", getprogname());
1443 write(fileno(ttyout
), msgbuf
, len
);
1445 siglongjmp(httpabort
, 1);
1449 * Retrieve ftp URL or classic ftp argument using FTP.
1450 * Returns 1 on failure, 0 on completed xfer, -1 if ftp connection
1451 * is still open (e.g, ftp xfer with trailing /)
1454 fetch_ftp(const char *url
)
1456 char *cp
, *xargv
[5], rempath
[MAXPATHLEN
];
1457 char *host
, *path
, *dir
, *file
, *uuser
, *pass
;
1459 char cmdbuf
[MAXPATHLEN
];
1461 int dirhasglob
, filehasglob
, rval
, transtype
, xargc
;
1462 int oanonftp
, oautologin
;
1466 DPRINTF("fetch_ftp: `%s'\n", url
);
1467 host
= path
= dir
= file
= uuser
= pass
= NULL
;
1472 if (STRNEQUAL(url
, FTP_URL
)) {
1473 if ((parse_url(url
, "URL", &urltype
, &uuser
, &pass
,
1474 &host
, &port
, &portnum
, &path
) == -1) ||
1475 (uuser
!= NULL
&& *uuser
== '\0') ||
1476 EMPTYSTRING(host
)) {
1477 warnx("Invalid URL `%s'", url
);
1478 goto cleanup_fetch_ftp
;
1481 * Note: Don't url_decode(path) here. We need to keep the
1482 * distinction between "/" and "%2F" until later.
1485 /* check for trailing ';type=[aid]' */
1486 if (! EMPTYSTRING(path
) && (cp
= strrchr(path
, ';')) != NULL
) {
1487 if (strcasecmp(cp
, ";type=a") == 0)
1489 else if (strcasecmp(cp
, ";type=i") == 0)
1491 else if (strcasecmp(cp
, ";type=d") == 0) {
1493 "Directory listing via a URL is not supported");
1494 goto cleanup_fetch_ftp
;
1496 warnx("Invalid suffix `%s' in URL `%s'", cp
,
1498 goto cleanup_fetch_ftp
;
1502 } else { /* classic style `[user@]host:[file]' */
1503 urltype
= CLASSIC_URL_T
;
1504 host
= ftp_strdup(url
);
1505 cp
= strchr(host
, '@');
1509 anonftp
= 0; /* disable anonftp */
1510 host
= ftp_strdup(cp
+ 1);
1512 cp
= strchr(host
, ':');
1515 path
= ftp_strdup(cp
+ 1);
1518 if (EMPTYSTRING(host
))
1519 goto cleanup_fetch_ftp
;
1521 /* Extract the file and (if present) directory name. */
1523 if (! EMPTYSTRING(dir
)) {
1525 * If we are dealing with classic `[user@]host:[path]' syntax,
1526 * then a path of the form `/file' (resulting from input of the
1527 * form `host:/file') means that we should do "CWD /" before
1528 * retrieving the file. So we set dir="/" and file="file".
1530 * But if we are dealing with URLs like `ftp://host/path' then
1531 * a path of the form `/file' (resulting from a URL of the form
1532 * `ftp://host//file') means that we should do `CWD ' (with an
1533 * empty argument) before retrieving the file. So we set
1534 * dir="" and file="file".
1536 * If the path does not contain / at all, we set dir=NULL.
1537 * (We get a path without any slashes if we are dealing with
1538 * classic `[user@]host:[file]' or URL `ftp://host/file'.)
1540 * In all other cases, we set dir to a string that does not
1541 * include the final '/' that separates the dir part from the
1542 * file part of the path. (This will be the empty string if
1543 * and only if we are dealing with a path of the form `/file'
1544 * resulting from an URL of the form `ftp://host//file'.)
1546 cp
= strrchr(dir
, '/');
1547 if (cp
== dir
&& urltype
== CLASSIC_URL_T
) {
1549 (void)strlcpy(dirbuf
, "/", sizeof(dirbuf
));
1551 } else if (cp
!= NULL
) {
1560 if (urltype
== FTP_URL_T
&& file
!= NULL
) {
1562 /* but still don't url_decode(dir) */
1564 DPRINTF("fetch_ftp: user `%s' pass `%s' host %s port %s "
1565 "path `%s' dir `%s' file `%s'\n",
1566 STRorNULL(uuser
), STRorNULL(pass
),
1567 STRorNULL(host
), STRorNULL(port
),
1568 STRorNULL(path
), STRorNULL(dir
), STRorNULL(file
));
1570 dirhasglob
= filehasglob
= 0;
1571 if (doglob
&& urltype
== CLASSIC_URL_T
) {
1572 if (! EMPTYSTRING(dir
) && strpbrk(dir
, "*?[]{}") != NULL
)
1574 if (! EMPTYSTRING(file
) && strpbrk(file
, "*?[]{}") != NULL
)
1578 /* Set up the connection */
1581 disconnect(0, NULL
);
1583 (void)strlcpy(cmdbuf
, getprogname(), sizeof(cmdbuf
));
1593 oautologin
= autologin
;
1594 /* don't autologin in setpeer(), use ftp_login() below */
1596 setpeer(xargc
, xargv
);
1597 autologin
= oautologin
;
1598 if ((connected
== 0) ||
1599 (connected
== 1 && !ftp_login(host
, uuser
, pass
))) {
1600 warnx("Can't connect or login to host `%s:%s'",
1601 host
, port
? port
: "?");
1602 goto cleanup_fetch_ftp
;
1605 switch (transtype
) {
1610 setbinary(1, xargv
);
1613 errx(1, "fetch_ftp: unknown transfer type %d", transtype
);
1617 * Change directories, if necessary.
1619 * Note: don't use EMPTYSTRING(dir) below, because
1620 * dir=="" means something different from dir==NULL.
1622 if (dir
!= NULL
&& !dirhasglob
) {
1626 * If we are dealing with a classic `[user@]host:[path]'
1627 * (urltype is CLASSIC_URL_T) then we have a raw directory
1628 * name (not encoded in any way) and we can change
1629 * directories in one step.
1631 * If we are dealing with an `ftp://host/path' URL
1632 * (urltype is FTP_URL_T), then RFC 3986 says we need to
1633 * send a separate CWD command for each unescaped "/"
1634 * in the path, and we have to interpret %hex escaping
1635 * *after* we find the slashes. It's possible to get
1636 * empty components here, (from multiple adjacent
1637 * slashes in the path) and RFC 3986 says that we should
1638 * still do `CWD ' (with a null argument) in such cases.
1640 * Many ftp servers don't support `CWD ', so if there's an
1641 * error performing that command, bail out with a descriptive
1646 * host: dir="", urltype=CLASSIC_URL_T
1647 * logged in (to default directory)
1648 * host:file dir=NULL, urltype=CLASSIC_URL_T
1650 * host:dir/ dir="dir", urltype=CLASSIC_URL_T
1651 * "CWD dir", logged in
1652 * ftp://host/ dir="", urltype=FTP_URL_T
1653 * logged in (to default directory)
1654 * ftp://host/dir/ dir="dir", urltype=FTP_URL_T
1655 * "CWD dir", logged in
1656 * ftp://host/file dir=NULL, urltype=FTP_URL_T
1658 * ftp://host//file dir="", urltype=FTP_URL_T
1659 * "CWD ", "RETR file"
1660 * host:/file dir="/", urltype=CLASSIC_URL_T
1661 * "CWD /", "RETR file"
1662 * ftp://host///file dir="/", urltype=FTP_URL_T
1663 * "CWD ", "CWD ", "RETR file"
1664 * ftp://host/%2F/file dir="%2F", urltype=FTP_URL_T
1665 * "CWD /", "RETR file"
1666 * ftp://host/foo/file dir="foo", urltype=FTP_URL_T
1667 * "CWD foo", "RETR file"
1668 * ftp://host/foo/bar/file dir="foo/bar"
1669 * "CWD foo", "CWD bar", "RETR file"
1670 * ftp://host//foo/bar/file dir="/foo/bar"
1671 * "CWD ", "CWD foo", "CWD bar", "RETR file"
1672 * ftp://host/foo//bar/file dir="foo//bar"
1673 * "CWD foo", "CWD ", "CWD bar", "RETR file"
1674 * ftp://host/%2F/foo/bar/file dir="%2F/foo/bar"
1675 * "CWD /", "CWD foo", "CWD bar", "RETR file"
1676 * ftp://host/%2Ffoo/bar/file dir="%2Ffoo/bar"
1677 * "CWD /foo", "CWD bar", "RETR file"
1678 * ftp://host/%2Ffoo%2Fbar/file dir="%2Ffoo%2Fbar"
1679 * "CWD /foo/bar", "RETR file"
1680 * ftp://host/%2Ffoo%2Fbar%2Ffile dir=NULL
1681 * "RETR /foo/bar/file"
1683 * Note that we don't need `dir' after this point.
1686 if (urltype
== FTP_URL_T
) {
1687 nextpart
= strchr(dir
, '/');
1695 DPRINTF("fetch_ftp: dir `%s', nextpart `%s'\n",
1696 STRorNULL(dir
), STRorNULL(nextpart
));
1697 if (urltype
== FTP_URL_T
|| *dir
!= '\0') {
1698 (void)strlcpy(cmdbuf
, "cd", sizeof(cmdbuf
));
1705 if (*dir
== '\0' && code
== 500)
1708 "ftp: The `CWD ' command (without a directory), which is required by\n"
1709 " RFC 3986 to support the empty directory in the URL pathname (`//'),\n"
1710 " conflicts with the server's conformance to RFC 959.\n"
1711 " Try the same URL without the `//' in the URL pathname.\n"
1713 goto cleanup_fetch_ftp
;
1717 } while (dir
!= NULL
);
1720 if (EMPTYSTRING(file
)) {
1722 goto cleanup_fetch_ftp
;
1726 (void)strlcpy(rempath
, dir
, sizeof(rempath
));
1727 (void)strlcat(rempath
, "/", sizeof(rempath
));
1728 (void)strlcat(rempath
, file
, sizeof(rempath
));
1732 /* Fetch the file(s). */
1734 (void)strlcpy(cmdbuf
, "get", sizeof(cmdbuf
));
1738 if (dirhasglob
|| filehasglob
) {
1741 ointeractive
= interactive
;
1743 if (restartautofetch
)
1744 (void)strlcpy(cmdbuf
, "mreget", sizeof(cmdbuf
));
1746 (void)strlcpy(cmdbuf
, "mget", sizeof(cmdbuf
));
1749 interactive
= ointeractive
;
1751 if (outfile
== NULL
) {
1752 cp
= strrchr(file
, '/'); /* find savefile */
1758 xargv
[2] = (char *)outfile
;
1761 if (restartautofetch
)
1762 reget(xargc
, xargv
);
1767 if ((code
/ 100) == COMPLETE
)
1776 memset(pass
, 0, strlen(pass
));
1782 * Retrieve the given file to outfile.
1783 * Supports arguments of the form:
1784 * "host:path", "ftp://host/path" if $ftpproxy, call fetch_url() else
1786 * "http://host/path" call fetch_url() to use HTTP
1787 * "file:///path" call fetch_url() to copy
1788 * "about:..." print a message
1790 * Returns 1 on failure, 0 on completed xfer, -1 if ftp connection
1791 * is still open (e.g, ftp xfer with trailing /)
1794 go_fetch(const char *url
)
1803 if (STRNEQUAL(url
, ABOUT_URL
)) {
1804 url
+= sizeof(ABOUT_URL
) -1;
1805 if (strcasecmp(url
, "ftp") == 0 ||
1806 strcasecmp(url
, "tnftp") == 0) {
1808 "This version of ftp has been enhanced by Luke Mewburn <lukem@NetBSD.org>\n"
1809 "for the NetBSD project. Execute `man ftp' for more details.\n", ttyout
);
1810 } else if (strcasecmp(url
, "lukem") == 0) {
1812 "Luke Mewburn is the author of most of the enhancements in this ftp client.\n"
1813 "Please email feedback to <lukem@NetBSD.org>.\n", ttyout
);
1814 } else if (strcasecmp(url
, "netbsd") == 0) {
1816 "NetBSD is a freely available and redistributable UNIX-like operating system.\n"
1817 "For more information, see http://www.NetBSD.org/\n", ttyout
);
1818 } else if (strcasecmp(url
, "version") == 0) {
1819 fprintf(ttyout
, "Version: %s %s%s\n",
1820 FTP_PRODUCT
, FTP_VERSION
,
1828 fprintf(ttyout
, "`%s' is an interesting topic.\n", url
);
1830 fputs("\n", ttyout
);
1836 * Check for file:// and http:// URLs.
1838 if (STRNEQUAL(url
, HTTP_URL
)
1840 || STRNEQUAL(url
, HTTPS_URL
)
1842 || STRNEQUAL(url
, FILE_URL
))
1843 return (fetch_url(url
, NULL
, NULL
, NULL
));
1846 * If it contains "://" but does not begin with ftp://
1847 * or something that was already handled, then it's
1850 * If it contains ":" but not "://" then we assume the
1851 * part before the colon is a host name, not an URL scheme,
1852 * so we don't try to match that here.
1854 if ((p
= strstr(url
, "://")) != NULL
&& ! STRNEQUAL(url
, FTP_URL
))
1855 errx(1, "Unsupported URL scheme `%.*s'", (int)(p
- url
), url
);
1858 * Try FTP URL-style and host:file arguments next.
1859 * If ftpproxy is set with an FTP URL, use fetch_url()
1860 * Othewise, use fetch_ftp().
1862 proxyenv
= getoptionvalue("ftp_proxy");
1863 if (!EMPTYSTRING(proxyenv
) && STRNEQUAL(url
, FTP_URL
))
1864 return (fetch_url(url
, NULL
, NULL
, NULL
));
1866 return (fetch_ftp(url
));
1870 * Retrieve multiple files from the command line,
1871 * calling go_fetch() for each file.
1873 * If an ftp path has a trailing "/", the path will be cd-ed into and
1874 * the connection remains open, and the function will return -1
1875 * (to indicate the connection is alive).
1876 * If an error occurs the return value will be the offset+1 in
1877 * argv[] of the file that caused a problem (i.e, argv[x]
1879 * Otherwise, 0 is returned if all files retrieved successfully.
1882 auto_fetch(int argc
, char *argv
[])
1884 volatile int argpos
, rval
;
1888 if (sigsetjmp(toplevel
, 1)) {
1890 disconnect(0, NULL
);
1895 (void)xsignal(SIGINT
, intr
);
1896 (void)xsignal(SIGPIPE
, lostpeer
);
1899 * Loop through as long as there's files to fetch.
1901 for (; (rval
== 0) && (argpos
< argc
); argpos
++) {
1902 if (strchr(argv
[argpos
], ':') == NULL
)
1906 anonftp
= 2; /* Handle "automatic" transfers. */
1907 rval
= go_fetch(argv
[argpos
]);
1908 if (outfile
!= NULL
&& strcmp(outfile
, "-") != 0
1909 && outfile
[0] != '|')
1915 if (connected
&& rval
!= -1)
1916 disconnect(0, NULL
);
1922 * Upload multiple files from the command line.
1924 * If an error occurs the return value will be the offset+1 in
1925 * argv[] of the file that caused a problem (i.e, argv[x]
1927 * Otherwise, 0 is returned if all files uploaded successfully.
1930 auto_put(int argc
, char **argv
, const char *uploadserver
)
1932 char *uargv
[4], *path
, *pathsep
;
1933 int uargc
, rval
, argpos
;
1935 char cmdbuf
[MAX_C_NAME
];
1937 (void)strlcpy(cmdbuf
, "mput", sizeof(cmdbuf
));
1941 uargv
[2] = uargv
[3] = NULL
;
1945 DPRINTF("auto_put: target `%s'\n", uploadserver
);
1947 path
= ftp_strdup(uploadserver
);
1949 if (path
[len
- 1] != '/' && path
[len
- 1] != ':') {
1951 * make sure we always pass a directory to auto_fetch
1953 if (argc
> 1) { /* more than one file to upload */
1954 len
= strlen(uploadserver
) + 2; /* path + "/" + "\0" */
1956 path
= (char *)ftp_malloc(len
);
1957 (void)strlcpy(path
, uploadserver
, len
);
1958 (void)strlcat(path
, "/", len
);
1959 } else { /* single file to upload */
1960 (void)strlcpy(cmdbuf
, "put", sizeof(cmdbuf
));
1962 pathsep
= strrchr(path
, '/');
1963 if (pathsep
== NULL
) {
1964 pathsep
= strrchr(path
, ':');
1965 if (pathsep
== NULL
) {
1966 warnx("Invalid URL `%s'", path
);
1967 goto cleanup_auto_put
;
1970 uargv
[2] = ftp_strdup(pathsep
);
1973 uargv
[2] = ftp_strdup(pathsep
+ 1);
1978 DPRINTF("auto_put: URL `%s' argv[2] `%s'\n",
1979 path
, STRorNULL(uargv
[2]));
1981 /* connect and cwd */
1982 rval
= auto_fetch(1, &path
);
1984 goto cleanup_auto_put
;
1988 /* target filename provided; upload 1 file */
1989 /* XXX : is this the best way? */
1993 if ((code
/ 100) != COMPLETE
)
1995 } else { /* otherwise a target dir: upload all files to it */
1996 for(argpos
= 0; argv
[argpos
] != NULL
; argpos
++) {
1997 uargv
[1] = argv
[argpos
];
1999 if ((code
/ 100) != COMPLETE
) {