2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-06-03 07:41:05 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 09:20:26 -05:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2005-01-28 03:26:36 -05:00
|
|
|
* Copyright (C) 1998 - 2005, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
2004-06-03 07:41:05 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* $Id$
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2000-08-24 10:26:06 -04:00
|
|
|
#include "setup.h"
|
|
|
|
|
2002-06-11 07:13:01 -04:00
|
|
|
#ifndef CURL_DISABLE_FTP
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
2001-01-08 05:00:14 -05:00
|
|
|
#include <stdarg.h>
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(WIN32) && !defined(__GNUC__) || defined(__MINGW32__)
|
2003-10-14 08:00:45 -04:00
|
|
|
|
2004-10-21 04:22:07 -04:00
|
|
|
#else /* probably some kind of unix */
|
2000-05-29 18:51:13 -04:00
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <sys/socket.h>
|
2000-05-29 18:51:13 -04:00
|
|
|
#endif
|
|
|
|
#include <sys/types.h>
|
2000-08-23 03:23:42 -04:00
|
|
|
#ifdef HAVE_NETINET_IN_H
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <netinet/in.h>
|
2000-08-23 03:23:42 -04:00
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
#ifdef HAVE_ARPA_INET_H
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#endif
|
2004-10-21 04:22:07 -04:00
|
|
|
#ifdef HAVE_UTSNAME_H
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <sys/utsname.h>
|
2004-10-21 04:22:07 -04:00
|
|
|
#endif
|
2000-08-23 03:23:42 -04:00
|
|
|
#ifdef HAVE_NETDB_H
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <netdb.h>
|
|
|
|
#endif
|
2004-10-06 03:50:18 -04:00
|
|
|
#ifdef VMS
|
2002-02-20 08:46:53 -05:00
|
|
|
#include <in.h>
|
2001-08-06 08:47:39 -04:00
|
|
|
#include <inet.h>
|
|
|
|
#endif
|
2000-08-23 03:23:42 -04:00
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
#if defined(WIN32) && defined(__GNUC__) || defined(__MINGW32__)
|
|
|
|
#include <errno.h>
|
|
|
|
#endif
|
|
|
|
|
2004-03-17 07:46:42 -05:00
|
|
|
#if (defined(NETWARE) && defined(__NOVELL_LIBC__))
|
|
|
|
#undef in_addr_t
|
|
|
|
#define in_addr_t unsigned long
|
|
|
|
#endif
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <curl/curl.h>
|
|
|
|
#include "urldata.h"
|
|
|
|
#include "sendf.h"
|
|
|
|
|
|
|
|
#include "if2ip.h"
|
|
|
|
#include "hostip.h"
|
|
|
|
#include "progress.h"
|
2001-01-17 08:23:01 -05:00
|
|
|
#include "transfer.h"
|
2000-01-10 18:36:14 -05:00
|
|
|
#include "escape.h"
|
2000-11-21 04:30:07 -05:00
|
|
|
#include "http.h" /* for HTTP proxy tunnel stuff */
|
2001-01-05 05:11:41 -05:00
|
|
|
#include "ftp.h"
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2003-12-02 08:27:29 -05:00
|
|
|
#ifdef HAVE_KRB4
|
2001-01-05 05:11:41 -05:00
|
|
|
#include "krb4.h"
|
2000-09-21 04:47:20 -04:00
|
|
|
#endif
|
2001-01-05 05:11:41 -05:00
|
|
|
|
2004-01-05 17:29:29 -05:00
|
|
|
#include "strtoofft.h"
|
2001-03-14 13:24:07 -05:00
|
|
|
#include "strequal.h"
|
2005-04-07 11:27:13 -04:00
|
|
|
#include "sslgen.h"
|
2001-10-02 05:40:06 -04:00
|
|
|
#include "connect.h"
|
2004-03-25 08:42:23 -05:00
|
|
|
#include "strerror.h"
|
2004-05-11 07:30:23 -04:00
|
|
|
#include "memory.h"
|
2004-06-24 03:43:48 -04:00
|
|
|
#include "inet_ntop.h"
|
2004-11-19 03:52:33 -05:00
|
|
|
#include "select.h"
|
2005-02-10 19:03:49 -05:00
|
|
|
#include "parsedate.h" /* for the week day and month names */
|
2001-03-14 13:24:07 -05:00
|
|
|
|
2002-01-04 04:35:23 -05:00
|
|
|
#if defined(HAVE_INET_NTOA_R) && !defined(HAVE_INET_NTOA_R_DECL)
|
|
|
|
#include "inet_ntoa_r.h"
|
|
|
|
#endif
|
|
|
|
|
2001-01-08 11:22:55 -05:00
|
|
|
#define _MPRINTF_REPLACE /* use our functions only */
|
|
|
|
#include <curl/mprintf.h>
|
|
|
|
|
2000-10-09 07:12:34 -04:00
|
|
|
/* The last #include file should be: */
|
2003-06-26 02:52:48 -04:00
|
|
|
#ifdef CURLDEBUG
|
2000-10-09 07:12:34 -04:00
|
|
|
#include "memdebug.h"
|
|
|
|
#endif
|
2000-09-21 04:47:20 -04:00
|
|
|
|
2004-03-31 16:33:52 -05:00
|
|
|
#ifdef HAVE_NI_WITHSCOPEID
|
2004-03-31 05:59:48 -05:00
|
|
|
#define NIFLAGS NI_NUMERICHOST | NI_NUMERICSERV | NI_WITHSCOPEID
|
|
|
|
#else
|
|
|
|
#define NIFLAGS NI_NUMERICHOST | NI_NUMERICSERV
|
|
|
|
#endif
|
|
|
|
|
2001-08-15 03:14:51 -04:00
|
|
|
/* Local API functions */
|
2003-08-08 05:13:19 -04:00
|
|
|
static CURLcode ftp_sendquote(struct connectdata *conn,
|
|
|
|
struct curl_slist *quote);
|
2001-09-28 04:58:18 -04:00
|
|
|
static CURLcode ftp_cwd(struct connectdata *conn, char *path);
|
2003-08-08 05:13:19 -04:00
|
|
|
static CURLcode ftp_mkd(struct connectdata *conn, char *path);
|
2003-08-22 08:35:18 -04:00
|
|
|
static CURLcode ftp_cwd_and_mkd(struct connectdata *conn, char *path);
|
2004-04-22 09:09:00 -04:00
|
|
|
static CURLcode ftp_quit(struct connectdata *conn);
|
2004-06-03 07:41:05 -04:00
|
|
|
static CURLcode ftp_3rdparty_pretransfer(struct connectdata *conn);
|
|
|
|
static CURLcode ftp_3rdparty_transfer(struct connectdata *conn);
|
2004-10-16 10:06:54 -04:00
|
|
|
static CURLcode ftp_parse_url_path(struct connectdata *conn);
|
|
|
|
static CURLcode ftp_cwd_and_create_path(struct connectdata *conn);
|
2005-02-09 08:06:40 -05:00
|
|
|
static CURLcode ftp_regular_transfer(struct connectdata *conn, bool *done);
|
2004-06-03 07:41:05 -04:00
|
|
|
static CURLcode ftp_3rdparty(struct connectdata *conn);
|
2005-02-09 08:06:40 -05:00
|
|
|
static void ftp_pasv_verbose(struct connectdata *conn,
|
|
|
|
Curl_addrinfo *ai,
|
|
|
|
char *newhost, /* ascii version */
|
|
|
|
int port);
|
|
|
|
static CURLcode ftp_state_post_rest(struct connectdata *conn);
|
|
|
|
static CURLcode ftp_state_post_cwd(struct connectdata *conn);
|
|
|
|
static CURLcode ftp_state_quote(struct connectdata *conn,
|
|
|
|
bool init, ftpstate instate);
|
2001-08-15 02:58:56 -04:00
|
|
|
|
2001-01-05 05:11:41 -05:00
|
|
|
/* easy-to-use macro: */
|
2001-10-31 09:56:12 -05:00
|
|
|
#define FTPSENDF(x,y,z) if((result = Curl_ftpsendf(x,y,z))) return result
|
2005-02-09 08:06:40 -05:00
|
|
|
#define NBFTPSENDF(x,y,z) if((result = Curl_nbftpsendf(x,y,z))) return result
|
2001-01-05 05:11:41 -05:00
|
|
|
|
2003-08-05 09:04:10 -04:00
|
|
|
static void freedirs(struct FTP *ftp)
|
|
|
|
{
|
|
|
|
int i;
|
2004-04-15 03:52:39 -04:00
|
|
|
if(ftp->dirs) {
|
|
|
|
for (i=0; i < ftp->dirdepth; i++){
|
|
|
|
if(ftp->dirs[i]) {
|
|
|
|
free(ftp->dirs[i]);
|
|
|
|
ftp->dirs[i]=NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(ftp->dirs);
|
|
|
|
ftp->dirs = NULL;
|
|
|
|
}
|
|
|
|
if(ftp->file) {
|
|
|
|
free(ftp->file);
|
|
|
|
ftp->file = NULL;
|
2003-08-05 09:04:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-01-19 16:56:02 -05:00
|
|
|
/* Returns non-zero iff the given string contains CR (0x0D) or LF (0x0A), which
|
|
|
|
are not allowed within RFC 959 <string>.
|
|
|
|
*/
|
|
|
|
static bool isBadFtpString(const char *string)
|
|
|
|
{
|
|
|
|
return strchr(string, 0x0D) != NULL || strchr(string, 0x0A) != NULL;
|
|
|
|
}
|
|
|
|
|
2001-11-01 07:47:22 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* AllowServerConnect()
|
|
|
|
*
|
|
|
|
* When we've issue the PORT command, we have told the server to connect
|
|
|
|
* to us. This function will sit and wait here until the server has
|
|
|
|
* connected.
|
|
|
|
*
|
|
|
|
*/
|
2003-11-24 02:15:37 -05:00
|
|
|
static CURLcode AllowServerConnect(struct connectdata *conn)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2004-11-19 03:52:33 -05:00
|
|
|
int timeout_ms;
|
2003-11-24 02:15:37 -05:00
|
|
|
struct SessionHandle *data = conn->data;
|
2004-03-09 17:52:50 -05:00
|
|
|
curl_socket_t sock = conn->sock[SECONDARYSOCKET];
|
2004-02-05 04:26:01 -05:00
|
|
|
struct timeval now = Curl_tvnow();
|
2004-02-26 08:40:43 -05:00
|
|
|
long timespent = Curl_tvdiff(Curl_tvnow(), now)/1000;
|
|
|
|
long timeout = data->set.connecttimeout?data->set.connecttimeout:
|
2004-02-05 04:26:01 -05:00
|
|
|
(data->set.timeout?data->set.timeout: 0);
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2004-02-05 04:26:01 -05:00
|
|
|
if(timeout) {
|
|
|
|
timeout -= timespent;
|
|
|
|
if(timeout<=0) {
|
|
|
|
failf(data, "Timed out before server could connect to us");
|
|
|
|
return CURLE_OPERATION_TIMEDOUT;
|
|
|
|
}
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-11-27 04:27:48 -05:00
|
|
|
/* We allow the server 60 seconds to connect to us, or a custom timeout.
|
|
|
|
Note the typecast here. */
|
|
|
|
timeout_ms = (timeout?(int)timeout:60) * 1000;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-11-19 03:52:33 -05:00
|
|
|
switch (Curl_select(sock, CURL_SOCKET_BAD, timeout_ms)) {
|
1999-12-29 09:20:26 -05:00
|
|
|
case -1: /* error */
|
|
|
|
/* let's die here */
|
|
|
|
failf(data, "Error while waiting for server connect");
|
2000-05-22 10:12:12 -04:00
|
|
|
return CURLE_FTP_PORT_FAILED;
|
1999-12-29 09:20:26 -05:00
|
|
|
case 0: /* timeout */
|
|
|
|
/* let's die here */
|
|
|
|
failf(data, "Timeout while waiting for server connect");
|
2000-05-22 10:12:12 -04:00
|
|
|
return CURLE_FTP_PORT_FAILED;
|
1999-12-29 09:20:26 -05:00
|
|
|
default:
|
|
|
|
/* we have received data here */
|
|
|
|
{
|
2005-05-17 05:18:17 -04:00
|
|
|
curl_socket_t s = CURL_SOCKET_BAD;
|
2005-05-17 05:15:21 -04:00
|
|
|
socklen_t size = (socklen_t) sizeof(struct sockaddr_in);
|
1999-12-29 09:20:26 -05:00
|
|
|
struct sockaddr_in add;
|
|
|
|
|
2005-05-17 05:18:17 -04:00
|
|
|
if(0 == getsockname(sock, (struct sockaddr *) &add, &size))
|
|
|
|
s=accept(sock, (struct sockaddr *) &add, &size);
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2000-12-18 11:13:37 -05:00
|
|
|
sclose(sock); /* close the first socket */
|
|
|
|
|
2004-03-11 08:13:35 -05:00
|
|
|
if (CURL_SOCKET_BAD == s) {
|
2001-09-04 22:49:04 -04:00
|
|
|
/* DIE! */
|
|
|
|
failf(data, "Error accept()ing server connect");
|
2004-10-06 03:50:18 -04:00
|
|
|
return CURLE_FTP_PORT_FAILED;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
infof(data, "Connection accepted from server\n");
|
|
|
|
|
2003-11-24 02:15:37 -05:00
|
|
|
conn->sock[SECONDARYSOCKET] = s;
|
2003-05-12 08:37:35 -04:00
|
|
|
Curl_nonblock(s, TRUE); /* enable non-blocking */
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2003-12-01 05:14:39 -05:00
|
|
|
|
2000-05-22 10:12:12 -04:00
|
|
|
return CURLE_OK;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
2005-03-29 06:35:25 -05:00
|
|
|
/* initialize stuff to prepare for reading a fresh new response */
|
|
|
|
static void ftp_respinit(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
|
|
|
ftp->nread_resp = 0;
|
|
|
|
ftp->linestart_resp = conn->data->state.buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* macro to check for the last line in an FTP server response */
|
|
|
|
#define lastline(line) (isdigit((int)line[0]) && isdigit((int)line[1]) && \
|
|
|
|
isdigit((int)line[2]) && (' ' == line[3]))
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
static CURLcode ftp_readresp(curl_socket_t sockfd,
|
|
|
|
struct connectdata *conn,
|
|
|
|
int *ftpcode, /* return the ftp-code if done */
|
|
|
|
size_t *size) /* size of the response */
|
|
|
|
{
|
|
|
|
int perline; /* count bytes per line */
|
|
|
|
bool keepon=TRUE;
|
|
|
|
ssize_t gotbytes;
|
|
|
|
char *ptr;
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
char *buf = data->state.buffer;
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
|
|
|
int code = 0;
|
|
|
|
|
|
|
|
if (ftpcode)
|
|
|
|
*ftpcode = 0; /* 0 for errors or not done */
|
|
|
|
|
2005-03-29 06:35:25 -05:00
|
|
|
ptr=buf + ftp->nread_resp;
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2005-04-26 09:08:49 -04:00
|
|
|
perline= (int)(ptr-ftp->linestart_resp); /* number of bytes in the current
|
|
|
|
line, so far */
|
2005-02-09 08:06:40 -05:00
|
|
|
keepon=TRUE;
|
|
|
|
|
|
|
|
while((ftp->nread_resp<BUFSIZE) && (keepon && !result)) {
|
|
|
|
|
|
|
|
if(ftp->cache) {
|
|
|
|
/* we had data in the "cache", copy that instead of doing an actual
|
|
|
|
* read
|
|
|
|
*
|
|
|
|
* ftp->cache_size is cast to int here. This should be safe,
|
|
|
|
* because it would have been populated with something of size
|
|
|
|
* int to begin with, even though its datatype may be larger
|
|
|
|
* than an int.
|
|
|
|
*/
|
|
|
|
memcpy(ptr, ftp->cache, (int)ftp->cache_size);
|
|
|
|
gotbytes = (int)ftp->cache_size;
|
|
|
|
free(ftp->cache); /* free the cache */
|
|
|
|
ftp->cache = NULL; /* clear the pointer */
|
|
|
|
ftp->cache_size = 0; /* zero the size just in case */
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
int res = Curl_read(conn, sockfd, ptr, BUFSIZE-ftp->nread_resp,
|
|
|
|
&gotbytes);
|
|
|
|
if(res < 0)
|
|
|
|
/* EWOULDBLOCK */
|
|
|
|
return CURLE_OK; /* return */
|
|
|
|
|
|
|
|
if(CURLE_OK != res)
|
|
|
|
keepon = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!keepon)
|
|
|
|
;
|
|
|
|
else if(gotbytes <= 0) {
|
|
|
|
keepon = FALSE;
|
|
|
|
result = CURLE_RECV_ERROR;
|
|
|
|
failf(data, "FTP response reading failed");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* we got a whole chunk of data, which can be anything from one
|
|
|
|
* byte to a set of lines and possible just a piece of the last
|
|
|
|
* line */
|
|
|
|
int i;
|
|
|
|
|
|
|
|
conn->headerbytecount += gotbytes;
|
|
|
|
|
|
|
|
ftp->nread_resp += gotbytes;
|
|
|
|
for(i = 0; i < gotbytes; ptr++, i++) {
|
|
|
|
perline++;
|
|
|
|
if(*ptr=='\n') {
|
|
|
|
/* a newline is CRLF in ftp-talk, so the CR is ignored as
|
|
|
|
the line isn't really terminated until the LF comes */
|
|
|
|
|
|
|
|
/* output debug output if that is requested */
|
|
|
|
if(data->set.verbose)
|
2005-03-29 06:35:25 -05:00
|
|
|
Curl_debug(data, CURLINFO_HEADER_IN,
|
|
|
|
ftp->linestart_resp, perline, conn);
|
2005-02-09 08:06:40 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We pass all response-lines to the callback function registered
|
|
|
|
* for "headers". The response lines can be seen as a kind of
|
|
|
|
* headers.
|
|
|
|
*/
|
|
|
|
result = Curl_client_write(data, CLIENTWRITE_HEADER,
|
2005-03-29 06:35:25 -05:00
|
|
|
ftp->linestart_resp, perline);
|
2005-02-09 08:06:40 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
2005-03-29 06:35:25 -05:00
|
|
|
if(perline>3 && lastline(ftp->linestart_resp)) {
|
2005-02-09 08:06:40 -05:00
|
|
|
/* This is the end of the last line, copy the last line to the
|
|
|
|
start of the buffer and zero terminate, for old times sake (and
|
|
|
|
krb4)! */
|
|
|
|
char *meow;
|
|
|
|
int n;
|
2005-03-29 06:35:25 -05:00
|
|
|
for(meow=ftp->linestart_resp, n=0; meow<ptr; meow++, n++)
|
2005-02-09 08:06:40 -05:00
|
|
|
buf[n] = *meow;
|
|
|
|
*meow=0; /* zero terminate */
|
|
|
|
keepon=FALSE;
|
2005-03-29 06:35:25 -05:00
|
|
|
ftp->linestart_resp = ptr+1; /* advance pointer */
|
2005-02-09 08:06:40 -05:00
|
|
|
i++; /* skip this before getting out */
|
|
|
|
|
|
|
|
*size = ftp->nread_resp; /* size of the response */
|
|
|
|
ftp->nread_resp = 0; /* restart */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
perline=0; /* line starts over here */
|
2005-03-29 06:35:25 -05:00
|
|
|
ftp->linestart_resp = ptr+1;
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!keepon && (i != gotbytes)) {
|
|
|
|
/* We found the end of the response lines, but we didn't parse the
|
|
|
|
full chunk of data we have read from the server. We therefore need
|
|
|
|
to store the rest of the data to be checked on the next invoke as
|
|
|
|
it may actually contain another end of response already! */
|
|
|
|
ftp->cache_size = gotbytes - i;
|
|
|
|
ftp->cache = (char *)malloc((int)ftp->cache_size);
|
|
|
|
if(ftp->cache)
|
2005-03-29 06:35:25 -05:00
|
|
|
memcpy(ftp->cache, ftp->linestart_resp, (int)ftp->cache_size);
|
2005-02-09 08:06:40 -05:00
|
|
|
else
|
|
|
|
return CURLE_OUT_OF_MEMORY; /**BANG**/
|
|
|
|
}
|
|
|
|
} /* there was data */
|
|
|
|
|
|
|
|
} /* while there's buffer left and loop is requested */
|
|
|
|
|
|
|
|
if(!result)
|
|
|
|
code = atoi(buf);
|
|
|
|
|
|
|
|
#ifdef HAVE_KRB4
|
|
|
|
/* handle the security-oriented responses 6xx ***/
|
|
|
|
/* FIXME: some errorchecking perhaps... ***/
|
|
|
|
switch(code) {
|
|
|
|
case 631:
|
|
|
|
Curl_sec_read_msg(conn, buf, prot_safe);
|
|
|
|
break;
|
|
|
|
case 632:
|
|
|
|
Curl_sec_read_msg(conn, buf, prot_private);
|
|
|
|
break;
|
|
|
|
case 633:
|
|
|
|
Curl_sec_read_msg(conn, buf, prot_confidential);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* normal ftp stuff we pass through! */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
*ftpcode=code; /* return the initial number like this */
|
|
|
|
|
|
|
|
|
|
|
|
/* store the latest code for later retrieval */
|
|
|
|
conn->data->info.httpcode=code;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
/* --- parse FTP server responses --- */
|
|
|
|
|
2001-08-23 02:10:01 -04:00
|
|
|
/*
|
|
|
|
* Curl_GetFTPResponse() is supposed to be invoked after each command sent to
|
|
|
|
* a remote FTP server. This function will wait and read all lines of the
|
|
|
|
* response and extract the relevant return code for the invoking function.
|
|
|
|
*/
|
2001-04-26 06:29:24 -04:00
|
|
|
|
2003-03-11 13:58:21 -05:00
|
|
|
CURLcode Curl_GetFTPResponse(ssize_t *nreadp, /* return number of bytes read */
|
2002-12-03 05:25:31 -05:00
|
|
|
struct connectdata *conn,
|
|
|
|
int *ftpcode) /* return the ftp-code */
|
2001-04-26 06:29:24 -04:00
|
|
|
{
|
2005-02-09 08:06:40 -05:00
|
|
|
/*
|
|
|
|
* We cannot read just one byte per read() and then go back to select() as
|
|
|
|
* the OpenSSL read() doesn't grok that properly.
|
2001-04-26 06:29:24 -04:00
|
|
|
*
|
|
|
|
* Alas, read as much as possible, split up into lines, use the ending
|
2001-08-23 02:10:01 -04:00
|
|
|
* line in a response or continue reading. */
|
2001-04-26 06:29:24 -04:00
|
|
|
|
2004-03-09 17:52:50 -05:00
|
|
|
curl_socket_t sockfd = conn->sock[FIRSTSOCKET];
|
2001-04-26 06:29:24 -04:00
|
|
|
int perline; /* count bytes per line */
|
|
|
|
bool keepon=TRUE;
|
|
|
|
ssize_t gotbytes;
|
|
|
|
char *ptr;
|
2004-03-03 08:17:44 -05:00
|
|
|
long timeout; /* timeout in seconds */
|
2004-11-19 03:52:33 -05:00
|
|
|
int interval_ms;
|
2001-08-30 18:48:34 -04:00
|
|
|
struct SessionHandle *data = conn->data;
|
2001-04-26 06:29:24 -04:00
|
|
|
char *line_start;
|
2002-12-03 05:25:31 -05:00
|
|
|
int code=0; /* default ftp "error code" to return */
|
|
|
|
char *buf = data->state.buffer;
|
|
|
|
CURLcode result = CURLE_OK;
|
2001-12-03 08:48:59 -05:00
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
2002-12-03 05:25:31 -05:00
|
|
|
struct timeval now = Curl_tvnow();
|
2001-12-03 08:48:59 -05:00
|
|
|
|
2001-09-04 22:49:04 -04:00
|
|
|
if (ftpcode)
|
|
|
|
*ftpcode = 0; /* 0 for errors */
|
2001-04-26 06:29:24 -04:00
|
|
|
|
|
|
|
ptr=buf;
|
|
|
|
line_start = buf;
|
|
|
|
|
2002-12-04 03:56:55 -05:00
|
|
|
*nreadp=0;
|
2001-04-26 06:29:24 -04:00
|
|
|
perline=0;
|
|
|
|
keepon=TRUE;
|
|
|
|
|
2002-12-04 03:56:55 -05:00
|
|
|
while((*nreadp<BUFSIZE) && (keepon && !result)) {
|
2002-04-27 09:24:06 -04:00
|
|
|
/* check and reset timeout value every lap */
|
2003-09-03 18:02:40 -04:00
|
|
|
if(data->set.ftp_response_timeout )
|
|
|
|
/* if CURLOPT_FTP_RESPONSE_TIMEOUT is set, use that to determine
|
|
|
|
remaining time. Also, use "now" as opposed to "conn->now"
|
|
|
|
because ftp_response_timeout is only supposed to govern
|
|
|
|
the response for any given ftp response, not for the time
|
|
|
|
from connect to the given ftp response. */
|
|
|
|
timeout = data->set.ftp_response_timeout - /* timeout time */
|
|
|
|
Curl_tvdiff(Curl_tvnow(), now)/1000; /* spent time */
|
|
|
|
else if(data->set.timeout)
|
2002-04-27 09:24:06 -04:00
|
|
|
/* if timeout is requested, find out how much remaining time we have */
|
|
|
|
timeout = data->set.timeout - /* timeout time */
|
|
|
|
Curl_tvdiff(Curl_tvnow(), conn->now)/1000; /* spent time */
|
2002-12-03 05:25:31 -05:00
|
|
|
else
|
|
|
|
/* Even without a requested timeout, we only wait response_time
|
|
|
|
seconds for the full response to arrive before we bail out */
|
|
|
|
timeout = ftp->response_time -
|
|
|
|
Curl_tvdiff(Curl_tvnow(), now)/1000; /* spent time */
|
|
|
|
|
|
|
|
if(timeout <=0 ) {
|
2004-03-05 04:37:48 -05:00
|
|
|
failf(data, "FTP response timeout");
|
2002-12-03 05:25:31 -05:00
|
|
|
return CURLE_OPERATION_TIMEDOUT; /* already too little time */
|
2002-04-27 09:24:06 -04:00
|
|
|
}
|
|
|
|
|
2002-04-27 09:09:37 -04:00
|
|
|
if(!ftp->cache) {
|
2004-11-19 03:52:33 -05:00
|
|
|
interval_ms = 1 * 1000; /* use 1 second timeout intervals */
|
2001-04-26 06:29:24 -04:00
|
|
|
|
2004-11-19 03:52:33 -05:00
|
|
|
switch (Curl_select(sockfd, CURL_SOCKET_BAD, interval_ms)) {
|
2001-12-03 08:48:59 -05:00
|
|
|
case -1: /* select() error, stop reading */
|
2002-12-03 05:25:31 -05:00
|
|
|
result = CURLE_RECV_ERROR;
|
2004-03-05 04:37:48 -05:00
|
|
|
failf(data, "FTP response aborted due to select() error: %d", errno);
|
2001-12-03 08:48:59 -05:00
|
|
|
break;
|
|
|
|
case 0: /* timeout */
|
2003-05-14 02:31:00 -04:00
|
|
|
if(Curl_pgrsUpdate(conn))
|
|
|
|
return CURLE_ABORTED_BY_CALLBACK;
|
|
|
|
continue; /* just continue in our loop for the timeout duration */
|
|
|
|
|
2001-12-03 08:48:59 -05:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2002-04-27 09:09:37 -04:00
|
|
|
}
|
2002-12-03 05:25:31 -05:00
|
|
|
if(CURLE_OK == result) {
|
2001-04-26 06:29:24 -04:00
|
|
|
/*
|
|
|
|
* This code previously didn't use the kerberos sec_read() code
|
|
|
|
* to read, but when we use Curl_read() it may do so. Do confirm
|
|
|
|
* that this is still ok and then remove this comment!
|
|
|
|
*/
|
2001-12-03 08:48:59 -05:00
|
|
|
if(ftp->cache) {
|
|
|
|
/* we had data in the "cache", copy that instead of doing an actual
|
2004-01-05 17:29:29 -05:00
|
|
|
* read
|
2004-10-06 03:50:18 -04:00
|
|
|
*
|
|
|
|
* Dave Meyer, December 2003:
|
|
|
|
* ftp->cache_size is cast to int here. This should be safe,
|
|
|
|
* because it would have been populated with something of size
|
|
|
|
* int to begin with, even though its datatype may be larger
|
|
|
|
* than an int.
|
|
|
|
*/
|
2004-01-05 17:29:29 -05:00
|
|
|
memcpy(ptr, ftp->cache, (int)ftp->cache_size);
|
|
|
|
gotbytes = (int)ftp->cache_size;
|
2001-12-03 08:48:59 -05:00
|
|
|
free(ftp->cache); /* free the cache */
|
|
|
|
ftp->cache = NULL; /* clear the pointer */
|
|
|
|
ftp->cache_size = 0; /* zero the size just in case */
|
|
|
|
}
|
2002-01-14 18:14:59 -05:00
|
|
|
else {
|
2002-12-04 03:56:55 -05:00
|
|
|
int res = Curl_read(conn, sockfd, ptr, BUFSIZE-*nreadp, &gotbytes);
|
2002-01-14 18:14:59 -05:00
|
|
|
if(res < 0)
|
|
|
|
/* EWOULDBLOCK */
|
|
|
|
continue; /* go looping again */
|
|
|
|
|
|
|
|
if(CURLE_OK != res)
|
|
|
|
keepon = FALSE;
|
|
|
|
}
|
2001-12-03 08:48:59 -05:00
|
|
|
|
|
|
|
if(!keepon)
|
|
|
|
;
|
2001-04-26 06:29:24 -04:00
|
|
|
else if(gotbytes <= 0) {
|
|
|
|
keepon = FALSE;
|
2002-12-03 05:25:31 -05:00
|
|
|
result = CURLE_RECV_ERROR;
|
2003-12-08 08:06:08 -05:00
|
|
|
failf(data, "FTP response reading failed");
|
2001-04-26 06:29:24 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* we got a whole chunk of data, which can be anything from one
|
|
|
|
* byte to a set of lines and possible just a piece of the last
|
|
|
|
* line */
|
|
|
|
int i;
|
|
|
|
|
2004-04-21 04:47:57 -04:00
|
|
|
conn->headerbytecount += gotbytes;
|
|
|
|
|
2002-12-04 03:56:55 -05:00
|
|
|
*nreadp += gotbytes;
|
2001-09-04 22:49:04 -04:00
|
|
|
for(i = 0; i < gotbytes; ptr++, i++) {
|
2001-04-26 06:29:24 -04:00
|
|
|
perline++;
|
|
|
|
if(*ptr=='\n') {
|
|
|
|
/* a newline is CRLF in ftp-talk, so the CR is ignored as
|
|
|
|
the line isn't really terminated until the LF comes */
|
|
|
|
|
|
|
|
/* output debug output if that is requested */
|
2002-04-12 03:21:11 -04:00
|
|
|
if(data->set.verbose)
|
2005-01-21 04:32:32 -05:00
|
|
|
Curl_debug(data, CURLINFO_HEADER_IN, line_start, perline, conn);
|
2001-04-26 06:29:24 -04:00
|
|
|
|
2002-01-04 04:03:11 -05:00
|
|
|
/*
|
|
|
|
* We pass all response-lines to the callback function registered
|
|
|
|
* for "headers". The response lines can be seen as a kind of
|
|
|
|
* headers.
|
|
|
|
*/
|
|
|
|
result = Curl_client_write(data, CLIENTWRITE_HEADER,
|
|
|
|
line_start, perline);
|
|
|
|
if(result)
|
2002-12-03 05:25:31 -05:00
|
|
|
return result;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2001-04-26 06:29:24 -04:00
|
|
|
if(perline>3 && lastline(line_start)) {
|
|
|
|
/* This is the end of the last line, copy the last
|
|
|
|
* line to the start of the buffer and zero terminate,
|
|
|
|
* for old times sake (and krb4)! */
|
2001-08-17 22:42:23 -04:00
|
|
|
char *meow;
|
2001-12-03 08:48:59 -05:00
|
|
|
int n;
|
|
|
|
for(meow=line_start, n=0; meow<ptr; meow++, n++)
|
|
|
|
buf[n] = *meow;
|
2001-11-22 04:40:34 -05:00
|
|
|
*meow=0; /* zero terminate */
|
2001-04-26 06:29:24 -04:00
|
|
|
keepon=FALSE;
|
2001-12-03 08:48:59 -05:00
|
|
|
line_start = ptr+1; /* advance pointer */
|
|
|
|
i++; /* skip this before getting out */
|
2001-04-26 06:29:24 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
perline=0; /* line starts over here */
|
|
|
|
line_start = ptr+1;
|
|
|
|
}
|
|
|
|
}
|
2001-12-03 08:48:59 -05:00
|
|
|
if(!keepon && (i != gotbytes)) {
|
|
|
|
/* We found the end of the response lines, but we didn't parse the
|
|
|
|
full chunk of data we have read from the server. We therefore
|
|
|
|
need to store the rest of the data to be checked on the next
|
|
|
|
invoke as it may actually contain another end of response
|
|
|
|
already! Cleverly figured out by Eric Lavigne in December
|
|
|
|
2001. */
|
|
|
|
ftp->cache_size = gotbytes - i;
|
2004-01-05 17:29:29 -05:00
|
|
|
ftp->cache = (char *)malloc((int)ftp->cache_size);
|
2001-12-03 08:48:59 -05:00
|
|
|
if(ftp->cache)
|
2004-01-05 17:29:29 -05:00
|
|
|
memcpy(ftp->cache, line_start, (int)ftp->cache_size);
|
2001-12-03 08:48:59 -05:00
|
|
|
else
|
2002-12-03 05:25:31 -05:00
|
|
|
return CURLE_OUT_OF_MEMORY; /**BANG**/
|
2001-12-03 08:48:59 -05:00
|
|
|
}
|
|
|
|
} /* there was data */
|
|
|
|
} /* if(no error) */
|
2001-04-26 06:29:24 -04:00
|
|
|
} /* while there's buffer left and loop is requested */
|
|
|
|
|
2002-12-03 05:25:31 -05:00
|
|
|
if(!result)
|
2001-04-26 06:29:24 -04:00
|
|
|
code = atoi(buf);
|
|
|
|
|
2003-12-02 08:27:29 -05:00
|
|
|
#ifdef HAVE_KRB4
|
2001-04-26 06:29:24 -04:00
|
|
|
/* handle the security-oriented responses 6xx ***/
|
|
|
|
/* FIXME: some errorchecking perhaps... ***/
|
|
|
|
switch(code) {
|
|
|
|
case 631:
|
2001-08-17 06:14:06 -04:00
|
|
|
Curl_sec_read_msg(conn, buf, prot_safe);
|
2001-04-26 06:29:24 -04:00
|
|
|
break;
|
|
|
|
case 632:
|
2001-08-17 06:14:06 -04:00
|
|
|
Curl_sec_read_msg(conn, buf, prot_private);
|
2001-04-26 06:29:24 -04:00
|
|
|
break;
|
|
|
|
case 633:
|
2001-08-17 06:14:06 -04:00
|
|
|
Curl_sec_read_msg(conn, buf, prot_confidential);
|
2001-04-26 06:29:24 -04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* normal ftp stuff we pass through! */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if(ftpcode)
|
|
|
|
*ftpcode=code; /* return the initial number like this */
|
|
|
|
|
2003-08-20 11:41:45 -04:00
|
|
|
/* store the latest code for later retrieval */
|
|
|
|
conn->data->info.httpcode=code;
|
|
|
|
|
2002-12-03 05:25:31 -05:00
|
|
|
return result;
|
2001-04-26 06:29:24 -04:00
|
|
|
}
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* This is the ONLY way to change FTP state! */
|
|
|
|
static void state(struct connectdata *conn,
|
|
|
|
ftpstate state)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2005-02-09 08:06:40 -05:00
|
|
|
#ifdef CURLDEBUG
|
|
|
|
/* for debug purposes */
|
|
|
|
const char *names[]={
|
|
|
|
"STOP",
|
|
|
|
"WAIT220",
|
|
|
|
"AUTH",
|
|
|
|
"USER",
|
|
|
|
"PASS",
|
|
|
|
"ACCT",
|
|
|
|
"PBSZ",
|
|
|
|
"PROT",
|
|
|
|
"PWD",
|
|
|
|
"QUOTE",
|
|
|
|
"RETR_PREQUOTE",
|
|
|
|
"STOR_PREQUOTE",
|
|
|
|
"POSTQUOTE",
|
|
|
|
"CWD",
|
|
|
|
"MKD",
|
|
|
|
"MDTM",
|
|
|
|
"TYPE",
|
|
|
|
"LIST_TYPE",
|
|
|
|
"RETR_TYPE",
|
|
|
|
"STOR_TYPE",
|
|
|
|
"SIZE",
|
|
|
|
"RETR_SIZE",
|
|
|
|
"STOR_SIZE",
|
|
|
|
"REST",
|
|
|
|
"RETR_REST",
|
|
|
|
"PORT",
|
|
|
|
"PASV",
|
|
|
|
"LIST",
|
|
|
|
"RETR",
|
|
|
|
"STOR",
|
|
|
|
"QUIT"
|
2004-12-14 21:32:04 -05:00
|
|
|
};
|
2000-09-21 04:47:20 -04:00
|
|
|
#endif
|
2005-02-09 08:06:40 -05:00
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
|
|
|
#ifdef CURLDEBUG
|
|
|
|
if(ftp->state != state)
|
|
|
|
infof(conn->data, "FTP %p state change from %s to %s\n",
|
|
|
|
ftp, names[ftp->state], names[state]);
|
|
|
|
#endif
|
|
|
|
ftp->state = state;
|
|
|
|
}
|
2003-11-24 02:15:37 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
static CURLcode ftp_state_user(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
CURLcode result;
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
|
|
|
/* send USER */
|
|
|
|
NBFTPSENDF(conn, "USER %s", ftp->user?ftp->user:"");
|
2003-11-24 02:15:37 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
state(conn, FTP_USER);
|
2003-11-24 02:15:37 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
2003-12-02 08:21:53 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
static CURLcode ftp_state_pwd(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
CURLcode result;
|
2003-11-24 02:15:37 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* send PWD to discover our entry point */
|
|
|
|
NBFTPSENDF(conn, "PWD", NULL);
|
|
|
|
state(conn, FTP_PWD);
|
2003-12-02 08:21:53 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
2003-12-02 08:21:53 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* For the FTP "protocol connect" and "doing" phases only */
|
|
|
|
CURLcode Curl_ftp_fdset(struct connectdata *conn,
|
|
|
|
fd_set *read_fd_set,
|
|
|
|
fd_set *write_fd_set,
|
|
|
|
int *max_fdp)
|
|
|
|
{
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
|
|
|
curl_socket_t sockfd = conn->sock[FIRSTSOCKET];
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:47:35 -05:00
|
|
|
if(ftp->sendleft) {
|
2005-02-09 08:06:40 -05:00
|
|
|
/* write mode */
|
|
|
|
FD_SET(sockfd, write_fd_set);
|
2005-02-09 08:47:35 -05:00
|
|
|
}
|
|
|
|
else {
|
2005-02-09 08:06:40 -05:00
|
|
|
/* read mode */
|
|
|
|
FD_SET(sockfd, read_fd_set);
|
2005-02-09 08:47:35 -05:00
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if((int)sockfd > *max_fdp)
|
|
|
|
*max_fdp = (int)sockfd;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* This is called after the FTP_QUOTE state is passed.
|
2004-10-01 07:22:11 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
ftp_state_cwd() sends the range of PWD commands to the server to change to
|
|
|
|
the correct directory. It may also need to send MKD commands to create
|
|
|
|
missing ones, if that option is enabled.
|
|
|
|
*/
|
|
|
|
static CURLcode ftp_state_cwd(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(ftp->cwddone)
|
|
|
|
/* already done and fine */
|
|
|
|
result = ftp_state_post_cwd(conn);
|
|
|
|
else {
|
|
|
|
ftp->count2 = 0;
|
|
|
|
if (conn->bits.reuse && ftp->entrypath) {
|
|
|
|
/* This is a re-used connection. Since we change directory to where the
|
|
|
|
transfer is taking place, we must first get back to the original dir
|
|
|
|
where we ended up after login: */
|
|
|
|
ftp->count1 = 0; /* we count this as the first path, then we add one
|
|
|
|
for all upcoming ones in the ftp->dirs[] array */
|
|
|
|
NBFTPSENDF(conn, "CWD %s", ftp->entrypath);
|
|
|
|
state(conn, FTP_CWD);
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
else {
|
|
|
|
if(ftp->dirdepth) {
|
|
|
|
ftp->count1 = 1;
|
|
|
|
/* issue the first CWD, the rest is sent when the CWD responses are
|
|
|
|
received... */
|
|
|
|
NBFTPSENDF(conn, "CWD %s", ftp->dirs[ftp->count1 -1]);
|
|
|
|
state(conn, FTP_CWD);
|
2005-01-25 17:13:12 -05:00
|
|
|
}
|
|
|
|
else {
|
2005-02-09 08:06:40 -05:00
|
|
|
/* No CWD necessary */
|
|
|
|
result = ftp_state_post_cwd(conn);
|
2005-01-25 17:13:12 -05:00
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
return result;
|
|
|
|
}
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
typedef enum { EPRT, LPRT, PORT, DONE } ftpport;
|
2000-05-22 10:12:12 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
static CURLcode ftp_state_use_port(struct connectdata *conn,
|
|
|
|
ftpport fcmd) /* start with this */
|
2003-12-01 05:14:39 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
|
|
|
struct SessionHandle *data=conn->data;
|
|
|
|
curl_socket_t portsock= CURL_SOCKET_BAD;
|
2003-12-01 05:14:39 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
#ifdef ENABLE_IPV6
|
|
|
|
/******************************************************************
|
|
|
|
* IPv6-specific section
|
|
|
|
*/
|
|
|
|
struct sockaddr_storage ss;
|
2005-05-02 07:56:15 -04:00
|
|
|
struct addrinfo *res, *ai;
|
2005-02-09 08:06:40 -05:00
|
|
|
socklen_t sslen;
|
|
|
|
char hbuf[NI_MAXHOST];
|
|
|
|
struct sockaddr *sa=(struct sockaddr *)&ss;
|
|
|
|
unsigned char *ap;
|
|
|
|
unsigned char *pp;
|
|
|
|
char portmsgbuf[1024], tmp[1024];
|
|
|
|
const char *mode[] = { "EPRT", "LPRT", "PORT", NULL };
|
|
|
|
int rc;
|
|
|
|
int error;
|
|
|
|
char *host=NULL;
|
|
|
|
struct Curl_dns_entry *h=NULL;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(data->set.ftpport && (strlen(data->set.ftpport) > 1)) {
|
|
|
|
/* attempt to get the address of the given interface name */
|
|
|
|
if(!Curl_if2ip(data->set.ftpport, hbuf, sizeof(hbuf)))
|
|
|
|
/* not an interface, use the given string as host name instead */
|
|
|
|
host = data->set.ftpport;
|
|
|
|
else
|
|
|
|
host = hbuf; /* use the hbuf for host name */
|
|
|
|
} /* data->set.ftpport */
|
2003-12-01 05:14:39 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(!host) {
|
|
|
|
/* not an interface and not a host name, get default by extracting
|
|
|
|
the IP from the control connection */
|
2003-12-01 05:14:39 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
sslen = sizeof(ss);
|
|
|
|
rc = getsockname(conn->sock[FIRSTSOCKET], (struct sockaddr *)&ss, &sslen);
|
|
|
|
if(rc < 0) {
|
|
|
|
failf(data, "getsockname() returned %d\n", rc);
|
|
|
|
return CURLE_FTP_PORT_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = getnameinfo((struct sockaddr *)&ss, sslen, hbuf, sizeof(hbuf), NULL,
|
|
|
|
0, NIFLAGS);
|
|
|
|
if(rc) {
|
|
|
|
failf(data, "getnameinfo() returned %d\n", rc);
|
|
|
|
return CURLE_FTP_PORT_FAILED;
|
|
|
|
}
|
|
|
|
host = hbuf; /* use this host name */
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = Curl_resolv(conn, host, 0, &h);
|
|
|
|
if(rc == CURLRESOLV_PENDING)
|
|
|
|
rc = Curl_wait_for_resolv(conn, &h);
|
|
|
|
if(h) {
|
|
|
|
res = h->addr;
|
|
|
|
/* when we return from this function, we can forget about this entry
|
|
|
|
to we can unlock it now already */
|
|
|
|
Curl_resolv_unlock(data, h);
|
|
|
|
} /* (h) */
|
|
|
|
else
|
|
|
|
res = NULL; /* failure! */
|
|
|
|
|
|
|
|
portsock = CURL_SOCKET_BAD;
|
|
|
|
error = 0;
|
|
|
|
for (ai = res; ai; ai = ai->ai_next) {
|
|
|
|
/*
|
|
|
|
* Workaround for AIX5 getaddrinfo() problem (it doesn't set ai_socktype):
|
|
|
|
*/
|
|
|
|
if (ai->ai_socktype == 0)
|
2005-09-16 17:30:08 -04:00
|
|
|
ai->ai_socktype = conn->socktype;
|
2005-02-09 08:06:40 -05:00
|
|
|
|
|
|
|
portsock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
|
|
|
|
if (portsock == CURL_SOCKET_BAD) {
|
|
|
|
error = Curl_ourerrno();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bind(portsock, ai->ai_addr, ai->ai_addrlen) < 0) {
|
|
|
|
error = Curl_ourerrno();
|
|
|
|
sclose(portsock);
|
|
|
|
portsock = CURL_SOCKET_BAD;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (listen(portsock, 1) < 0) {
|
|
|
|
error = Curl_ourerrno();
|
|
|
|
sclose(portsock);
|
|
|
|
portsock = CURL_SOCKET_BAD;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (portsock == CURL_SOCKET_BAD) {
|
2005-05-02 18:53:55 -04:00
|
|
|
failf(data, "socket failure: %s", Curl_strerror(conn,error));
|
2005-02-09 08:06:40 -05:00
|
|
|
return CURLE_FTP_PORT_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
sslen = sizeof(ss);
|
|
|
|
if (getsockname(portsock, sa, &sslen) < 0) {
|
2005-05-02 18:53:55 -04:00
|
|
|
failf(data, "getsockname(): %s", Curl_strerror(conn,Curl_ourerrno()));
|
2005-02-09 08:06:40 -05:00
|
|
|
return CURLE_FTP_PORT_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef PF_INET6
|
|
|
|
if(!conn->bits.ftp_use_eprt && conn->bits.ipv6)
|
|
|
|
/* EPRT is disabled but we are connected to a IPv6 host, so we ignore the
|
|
|
|
request and enable EPRT again! */
|
|
|
|
conn->bits.ftp_use_eprt = TRUE;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
for (; fcmd != DONE; fcmd++) {
|
|
|
|
int lprtaf, eprtaf;
|
|
|
|
int alen=0, plen=0;
|
|
|
|
|
|
|
|
if(!conn->bits.ftp_use_eprt && (EPRT == fcmd))
|
|
|
|
/* if disabled, goto next */
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if(!conn->bits.ftp_use_lprt && (LPRT == fcmd))
|
|
|
|
/* if disabled, goto next */
|
|
|
|
continue;
|
|
|
|
|
|
|
|
switch (sa->sa_family) {
|
|
|
|
case AF_INET:
|
|
|
|
ap = (unsigned char *)&((struct sockaddr_in *)&ss)->sin_addr;
|
|
|
|
alen = sizeof(((struct sockaddr_in *)&ss)->sin_addr);
|
|
|
|
pp = (unsigned char *)&((struct sockaddr_in *)&ss)->sin_port;
|
|
|
|
plen = sizeof(((struct sockaddr_in *)&ss)->sin_port);
|
|
|
|
lprtaf = 4;
|
|
|
|
eprtaf = 1;
|
|
|
|
break;
|
|
|
|
case AF_INET6:
|
|
|
|
ap = (unsigned char *)&((struct sockaddr_in6 *)&ss)->sin6_addr;
|
|
|
|
alen = sizeof(((struct sockaddr_in6 *)&ss)->sin6_addr);
|
|
|
|
pp = (unsigned char *)&((struct sockaddr_in6 *)&ss)->sin6_port;
|
|
|
|
plen = sizeof(((struct sockaddr_in6 *)&ss)->sin6_port);
|
|
|
|
lprtaf = 6;
|
|
|
|
eprtaf = 2;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ap = pp = NULL;
|
|
|
|
lprtaf = eprtaf = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (EPRT == fcmd) {
|
|
|
|
if (eprtaf < 0)
|
|
|
|
continue;
|
|
|
|
if (getnameinfo((struct sockaddr *)&ss, sslen,
|
|
|
|
portmsgbuf, sizeof(portmsgbuf), tmp, sizeof(tmp),
|
|
|
|
NIFLAGS))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* do not transmit IPv6 scope identifier to the wire */
|
|
|
|
if (sa->sa_family == AF_INET6) {
|
|
|
|
char *q = strchr(portmsgbuf, '%');
|
|
|
|
if (q)
|
|
|
|
*q = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
result = Curl_nbftpsendf(conn, "%s |%d|%s|%s|", mode[fcmd], eprtaf,
|
|
|
|
portmsgbuf, tmp);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if ((LPRT == fcmd) || (PORT == fcmd)) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if ((LPRT == fcmd) && lprtaf < 0)
|
|
|
|
continue;
|
|
|
|
if ((PORT == fcmd) && sa->sa_family != AF_INET)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
portmsgbuf[0] = '\0';
|
|
|
|
if (LPRT == fcmd) {
|
|
|
|
snprintf(tmp, sizeof(tmp), "%d,%d", lprtaf, alen);
|
|
|
|
if (strlcat(portmsgbuf, tmp, sizeof(portmsgbuf)) >=
|
|
|
|
sizeof(portmsgbuf)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < alen; i++) {
|
|
|
|
if (portmsgbuf[0])
|
|
|
|
snprintf(tmp, sizeof(tmp), ",%u", ap[i]);
|
|
|
|
else
|
|
|
|
snprintf(tmp, sizeof(tmp), "%u", ap[i]);
|
|
|
|
|
|
|
|
if (strlcat(portmsgbuf, tmp, sizeof(portmsgbuf)) >=
|
|
|
|
sizeof(portmsgbuf)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LPRT == fcmd) {
|
|
|
|
snprintf(tmp, sizeof(tmp), ",%d", plen);
|
|
|
|
|
|
|
|
if (strlcat(portmsgbuf, tmp, sizeof(portmsgbuf)) >= sizeof(portmsgbuf))
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < plen; i++) {
|
|
|
|
snprintf(tmp, sizeof(tmp), ",%u", pp[i]);
|
|
|
|
|
|
|
|
if (strlcat(portmsgbuf, tmp, sizeof(portmsgbuf)) >=
|
|
|
|
sizeof(portmsgbuf)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
result = Curl_nbftpsendf(conn, "%s %s", mode[fcmd], portmsgbuf);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* store which command was sent */
|
|
|
|
ftp->count1 = fcmd;
|
|
|
|
|
|
|
|
/* we set the secondary socket variable to this for now, it is only so that
|
|
|
|
the cleanup function will close it in case we fail before the true
|
|
|
|
secondary stuff is made */
|
2005-02-09 09:01:15 -05:00
|
|
|
if(CURL_SOCKET_BAD != conn->sock[SECONDARYSOCKET])
|
2005-02-09 08:06:40 -05:00
|
|
|
sclose(conn->sock[SECONDARYSOCKET]);
|
|
|
|
conn->sock[SECONDARYSOCKET] = portsock;
|
|
|
|
|
|
|
|
#else
|
|
|
|
/******************************************************************
|
|
|
|
* IPv4-specific section
|
|
|
|
*/
|
|
|
|
struct sockaddr_in sa;
|
|
|
|
unsigned short porttouse;
|
|
|
|
char myhost[256] = "";
|
|
|
|
bool sa_filled_in = FALSE;
|
|
|
|
Curl_addrinfo *addr = NULL;
|
|
|
|
unsigned short ip[4];
|
|
|
|
(void)fcmd; /* not used in the IPv4 code */
|
|
|
|
if(data->set.ftpport) {
|
|
|
|
in_addr_t in;
|
|
|
|
|
|
|
|
/* First check if the given name is an IP address */
|
|
|
|
in=inet_addr(data->set.ftpport);
|
|
|
|
|
|
|
|
if(in != CURL_INADDR_NONE)
|
|
|
|
/* this is an IPv4 address */
|
|
|
|
addr = Curl_ip2addr(in, data->set.ftpport, 0);
|
|
|
|
else {
|
|
|
|
if(Curl_if2ip(data->set.ftpport, myhost, sizeof(myhost))) {
|
|
|
|
/* The interface to IP conversion provided a dotted address */
|
|
|
|
in=inet_addr(myhost);
|
|
|
|
addr = Curl_ip2addr(in, myhost, 0);
|
|
|
|
}
|
|
|
|
else if(strlen(data->set.ftpport)> 1) {
|
|
|
|
/* might be a host name! */
|
|
|
|
struct Curl_dns_entry *h=NULL;
|
|
|
|
int rc = Curl_resolv(conn, myhost, 0, &h);
|
|
|
|
if(rc == CURLRESOLV_PENDING)
|
|
|
|
/* BLOCKING */
|
|
|
|
rc = Curl_wait_for_resolv(conn, &h);
|
|
|
|
if(h) {
|
|
|
|
addr = h->addr;
|
|
|
|
/* when we return from this function, we can forget about this entry
|
|
|
|
so we can unlock it now already */
|
|
|
|
Curl_resolv_unlock(data, h);
|
|
|
|
} /* (h) */
|
|
|
|
} /* strlen */
|
|
|
|
} /* CURL_INADDR_NONE */
|
|
|
|
} /* data->set.ftpport */
|
|
|
|
|
|
|
|
if(!addr) {
|
|
|
|
/* pick a suitable default here */
|
|
|
|
|
|
|
|
socklen_t sslen;
|
|
|
|
|
|
|
|
sslen = sizeof(sa);
|
|
|
|
if (getsockname(conn->sock[FIRSTSOCKET],
|
|
|
|
(struct sockaddr *)&sa, &sslen) < 0) {
|
|
|
|
failf(data, "getsockname() failed");
|
|
|
|
return CURLE_FTP_PORT_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
sa_filled_in = TRUE; /* the sa struct is filled in */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (addr || sa_filled_in) {
|
|
|
|
portsock = socket(AF_INET, SOCK_STREAM, 0);
|
|
|
|
if(CURL_SOCKET_BAD != portsock) {
|
|
|
|
socklen_t size;
|
|
|
|
|
|
|
|
/* we set the secondary socket variable to this for now, it
|
|
|
|
is only so that the cleanup function will close it in case
|
|
|
|
we fail before the true secondary stuff is made */
|
2005-03-14 10:43:23 -05:00
|
|
|
if(CURL_SOCKET_BAD != conn->sock[SECONDARYSOCKET])
|
2005-02-09 08:06:40 -05:00
|
|
|
sclose(conn->sock[SECONDARYSOCKET]);
|
|
|
|
conn->sock[SECONDARYSOCKET] = portsock;
|
|
|
|
|
|
|
|
if(!sa_filled_in) {
|
|
|
|
memcpy(&sa, addr->ai_addr, sizeof(sa));
|
|
|
|
sa.sin_addr.s_addr = INADDR_ANY;
|
|
|
|
}
|
|
|
|
|
|
|
|
sa.sin_port = 0;
|
|
|
|
size = sizeof(sa);
|
|
|
|
|
|
|
|
if(bind(portsock, (struct sockaddr *)&sa, size) >= 0) {
|
|
|
|
/* we succeeded to bind */
|
|
|
|
struct sockaddr_in add;
|
|
|
|
socklen_t socksize = sizeof(add);
|
|
|
|
|
|
|
|
if(getsockname(portsock, (struct sockaddr *) &add,
|
|
|
|
&socksize)<0) {
|
|
|
|
failf(data, "getsockname() failed");
|
|
|
|
return CURLE_FTP_PORT_FAILED;
|
|
|
|
}
|
|
|
|
porttouse = ntohs(add.sin_port);
|
|
|
|
|
|
|
|
if ( listen(portsock, 1) < 0 ) {
|
|
|
|
failf(data, "listen(2) failed on socket");
|
|
|
|
return CURLE_FTP_PORT_FAILED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
failf(data, "bind(2) failed on socket");
|
|
|
|
return CURLE_FTP_PORT_FAILED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
failf(data, "socket(2) failed (%s)");
|
|
|
|
return CURLE_FTP_PORT_FAILED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2005-07-21 18:18:35 -04:00
|
|
|
failf(data, "couldn't find IP address to use");
|
2005-02-09 08:06:40 -05:00
|
|
|
return CURLE_FTP_PORT_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(sa_filled_in)
|
|
|
|
Curl_inet_ntop(AF_INET, &((struct sockaddr_in *)&sa)->sin_addr,
|
|
|
|
myhost, sizeof(myhost));
|
|
|
|
else
|
|
|
|
Curl_printable_address(addr, myhost, sizeof(myhost));
|
|
|
|
|
|
|
|
if(4 == sscanf(myhost, "%hu.%hu.%hu.%hu",
|
|
|
|
&ip[0], &ip[1], &ip[2], &ip[3])) {
|
|
|
|
|
|
|
|
infof(data, "Telling server to connect to %d.%d.%d.%d:%d\n",
|
|
|
|
ip[0], ip[1], ip[2], ip[3], porttouse);
|
|
|
|
|
|
|
|
result=Curl_nbftpsendf(conn, "PORT %d,%d,%d,%d,%d,%d",
|
|
|
|
ip[0], ip[1], ip[2], ip[3],
|
|
|
|
porttouse >> 8, porttouse & 255);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return CURLE_FTP_PORT_FAILED;
|
|
|
|
|
|
|
|
Curl_freeaddrinfo(addr);
|
|
|
|
|
|
|
|
ftp->count1 = PORT;
|
|
|
|
|
|
|
|
#endif /* end of ipv4-specific code */
|
|
|
|
|
|
|
|
state(conn, FTP_PORT);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CURLcode ftp_state_use_pasv(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
/*
|
|
|
|
Here's the excecutive summary on what to do:
|
|
|
|
|
|
|
|
PASV is RFC959, expect:
|
|
|
|
227 Entering Passive Mode (a1,a2,a3,a4,p1,p2)
|
|
|
|
|
|
|
|
LPSV is RFC1639, expect:
|
|
|
|
228 Entering Long Passive Mode (4,4,a1,a2,a3,a4,2,p1,p2)
|
|
|
|
|
|
|
|
EPSV is RFC2428, expect:
|
|
|
|
229 Entering Extended Passive Mode (|||port|)
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
const char *mode[] = { "EPSV", "PASV", NULL };
|
|
|
|
int modeoff;
|
|
|
|
|
|
|
|
#ifdef PF_INET6
|
|
|
|
if(!conn->bits.ftp_use_epsv && conn->bits.ipv6)
|
|
|
|
/* EPSV is disabled but we are connected to a IPv6 host, so we ignore the
|
|
|
|
request and enable EPSV again! */
|
|
|
|
conn->bits.ftp_use_epsv = TRUE;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
modeoff = conn->bits.ftp_use_epsv?0:1;
|
|
|
|
|
|
|
|
result = Curl_nbftpsendf(conn, "%s", mode[modeoff]);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
ftp->count1 = modeoff;
|
|
|
|
state(conn, FTP_PASV);
|
|
|
|
infof(conn->data, "Connect data stream passively\n");
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* REST is the last command in the chain of commands when a "head"-like
|
|
|
|
request is made. Thus, if an actual transfer is to be made this is where
|
|
|
|
we take off for real. */
|
|
|
|
static CURLcode ftp_state_post_rest(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
|
|
|
|
if(ftp->no_transfer || conn->bits.no_body) {
|
|
|
|
/* then we're done with a "head"-like request, goto STOP */
|
|
|
|
state(conn, FTP_STOP);
|
|
|
|
|
|
|
|
/* doesn't transfer any data */
|
|
|
|
ftp->no_transfer = TRUE;
|
|
|
|
}
|
|
|
|
else if(data->set.ftp_use_port) {
|
|
|
|
/* We have chosen to use the PORT (or similar) command */
|
|
|
|
result = ftp_state_use_port(conn, EPRT);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* We have chosen (this is default) to use the PASV (or similar) command */
|
|
|
|
result = ftp_state_use_pasv(conn);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CURLcode ftp_state_post_size(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
|
|
|
|
|
|
|
if(ftp->no_transfer) {
|
|
|
|
/* if a "head"-like request is being made */
|
|
|
|
|
|
|
|
/* Determine if server can respond to REST command and therefore
|
|
|
|
whether it supports range */
|
|
|
|
NBFTPSENDF(conn, "REST %d", 0);
|
|
|
|
|
|
|
|
state(conn, FTP_REST);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
result = ftp_state_post_rest(conn);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CURLcode ftp_state_post_type(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
|
|
|
|
|
|
|
if(ftp->no_transfer) {
|
|
|
|
/* if a "head"-like request is being made */
|
|
|
|
|
|
|
|
/* we know ftp->file is a valid pointer to a file name */
|
|
|
|
NBFTPSENDF(conn, "SIZE %s", ftp->file);
|
|
|
|
|
|
|
|
state(conn, FTP_SIZE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
result = ftp_state_post_size(conn);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CURLcode ftp_state_post_listtype(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
|
|
|
|
/* If this output is to be machine-parsed, the NLST command might be better
|
|
|
|
to use, since the LIST command output is not specified or standard in any
|
|
|
|
way. It has turned out that the NLST list output is not the same on all
|
|
|
|
servers either... */
|
|
|
|
|
|
|
|
NBFTPSENDF(conn, "%s",
|
|
|
|
data->set.customrequest?data->set.customrequest:
|
|
|
|
(data->set.ftp_list_only?"NLST":"LIST"));
|
|
|
|
|
|
|
|
state(conn, FTP_LIST);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CURLcode ftp_state_post_retrtype(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
|
|
|
|
/* We've sent the TYPE, now we must send the list of prequote strings */
|
|
|
|
|
|
|
|
result = ftp_state_quote(conn, TRUE, FTP_RETR_PREQUOTE);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CURLcode ftp_state_post_stortype(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
|
|
|
|
/* We've sent the TYPE, now we must send the list of prequote strings */
|
2003-12-01 05:14:39 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
result = ftp_state_quote(conn, TRUE, FTP_STOR_PREQUOTE);
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CURLcode ftp_state_post_mdtm(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
|
|
|
|
/* If we have selected NOBODY and HEADER, it means that we only want file
|
|
|
|
information. Which in FTP can't be much more than the file size and
|
|
|
|
date. */
|
|
|
|
if(conn->bits.no_body && data->set.include_header && ftp->file) {
|
|
|
|
/* The SIZE command is _not_ RFC 959 specified, and therefor many servers
|
|
|
|
may not support it! It is however the only way we have to get a file's
|
|
|
|
size! */
|
|
|
|
|
|
|
|
ftp->no_transfer = TRUE; /* this means no actual transfer will be made */
|
|
|
|
|
|
|
|
/* Some servers return different sizes for different modes, and thus we
|
|
|
|
must set the proper type before we check the size */
|
|
|
|
NBFTPSENDF(conn, "TYPE %c",
|
|
|
|
data->set.ftp_ascii?'A':'I');
|
|
|
|
state(conn, FTP_TYPE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
result = ftp_state_post_type(conn);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This is called after the CWD commands have been done in the beginning of
|
|
|
|
the DO phase */
|
|
|
|
static CURLcode ftp_state_post_cwd(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
|
|
|
|
/* Requested time of file or time-depended transfer? */
|
|
|
|
if((data->set.get_filetime || data->set.timecondition) && ftp->file) {
|
|
|
|
|
|
|
|
/* we have requested to get the modified-time of the file, this is a white
|
|
|
|
spot as the MDTM is not mentioned in RFC959 */
|
|
|
|
NBFTPSENDF(conn, "MDTM %s", ftp->file);
|
|
|
|
|
|
|
|
state(conn, FTP_MDTM);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
result = ftp_state_post_mdtm(conn);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This is called after the TYPE and possible quote commands have been sent */
|
2005-03-04 18:52:06 -05:00
|
|
|
static CURLcode ftp_state_ul_setup(struct connectdata *conn,
|
|
|
|
bool sizechecked)
|
2005-02-09 08:06:40 -05:00
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
curl_off_t passed=0;
|
|
|
|
|
2005-03-04 18:52:06 -05:00
|
|
|
if((conn->resume_from && !sizechecked) ||
|
|
|
|
((conn->resume_from > 0) && sizechecked)) {
|
2005-02-09 08:06:40 -05:00
|
|
|
/* we're about to continue the uploading of a file */
|
|
|
|
/* 1. get already existing file's size. We use the SIZE command for this
|
|
|
|
which may not exist in the server! The SIZE command is not in
|
|
|
|
RFC959. */
|
|
|
|
|
|
|
|
/* 2. This used to set REST. But since we can do append, we
|
|
|
|
don't another ftp command. We just skip the source file
|
|
|
|
offset and then we APPEND the rest on the file instead */
|
|
|
|
|
|
|
|
/* 3. pass file-size number of bytes in the source file */
|
|
|
|
/* 4. lower the infilesize counter */
|
|
|
|
/* => transfer as usual */
|
|
|
|
|
|
|
|
if(conn->resume_from < 0 ) {
|
|
|
|
/* Got no given size to start from, figure it out */
|
|
|
|
NBFTPSENDF(conn, "SIZE %s", ftp->file);
|
|
|
|
state(conn, FTP_STOR_SIZE);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* enable append */
|
|
|
|
data->set.ftp_append = TRUE;
|
|
|
|
|
|
|
|
/* Let's read off the proper amount of bytes from the input. If we knew it
|
|
|
|
was a proper file we could've just fseek()ed but we only have a stream
|
|
|
|
here */
|
|
|
|
|
|
|
|
/* TODO: allow the ioctlfunction to provide a fast forward function that
|
|
|
|
can be used here and use this method only as a fallback! */
|
|
|
|
do {
|
|
|
|
curl_off_t readthisamountnow = (conn->resume_from - passed);
|
|
|
|
curl_off_t actuallyread;
|
|
|
|
|
|
|
|
if(readthisamountnow > BUFSIZE)
|
|
|
|
readthisamountnow = BUFSIZE;
|
|
|
|
|
|
|
|
actuallyread = (curl_off_t)
|
|
|
|
conn->fread(data->state.buffer, 1, (size_t)readthisamountnow,
|
|
|
|
conn->fread_in);
|
|
|
|
|
|
|
|
passed += actuallyread;
|
|
|
|
if(actuallyread != readthisamountnow) {
|
|
|
|
failf(data, "Could only read %" FORMAT_OFF_T
|
|
|
|
" bytes from the input", passed);
|
|
|
|
return CURLE_FTP_COULDNT_USE_REST;
|
|
|
|
}
|
|
|
|
} while(passed != conn->resume_from);
|
|
|
|
|
|
|
|
/* now, decrease the size of the read */
|
|
|
|
if(data->set.infilesize>0) {
|
|
|
|
data->set.infilesize -= conn->resume_from;
|
|
|
|
|
|
|
|
if(data->set.infilesize <= 0) {
|
|
|
|
infof(data, "File already completely uploaded\n");
|
|
|
|
|
|
|
|
/* no data to transfer */
|
|
|
|
result=Curl_Transfer(conn, -1, -1, FALSE, NULL, -1, NULL);
|
|
|
|
|
|
|
|
/* Set no_transfer so that we won't get any error in
|
|
|
|
* Curl_ftp_done() because we didn't transfer anything! */
|
|
|
|
ftp->no_transfer = TRUE;
|
|
|
|
|
|
|
|
state(conn, FTP_STOP);
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
2003-12-01 05:14:39 -05:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
/* we've passed, proceed as normal */
|
|
|
|
} /* resume_from */
|
|
|
|
|
|
|
|
NBFTPSENDF(conn, data->set.ftp_append?"APPE %s":"STOR %s",
|
|
|
|
ftp->file);
|
|
|
|
|
|
|
|
state(conn, FTP_STOR);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CURLcode ftp_state_quote(struct connectdata *conn,
|
|
|
|
bool init,
|
|
|
|
ftpstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
bool quote=FALSE;
|
|
|
|
struct curl_slist *item;
|
|
|
|
|
|
|
|
switch(instate) {
|
|
|
|
case FTP_QUOTE:
|
|
|
|
default:
|
|
|
|
item = data->set.quote;
|
|
|
|
break;
|
|
|
|
case FTP_RETR_PREQUOTE:
|
|
|
|
case FTP_STOR_PREQUOTE:
|
|
|
|
item = data->set.prequote;
|
|
|
|
break;
|
|
|
|
case FTP_POSTQUOTE:
|
|
|
|
item = data->set.postquote;
|
|
|
|
break;
|
2003-12-01 05:14:39 -05:00
|
|
|
}
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(init)
|
|
|
|
ftp->count1 = 0;
|
|
|
|
else
|
|
|
|
ftp->count1++;
|
|
|
|
|
|
|
|
if(item) {
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
/* Skip count1 items in the linked list */
|
|
|
|
while((i< ftp->count1) && item) {
|
|
|
|
item = item->next;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
if(item) {
|
|
|
|
NBFTPSENDF(conn, "%s", item->data);
|
|
|
|
state(conn, instate);
|
|
|
|
quote = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!quote) {
|
|
|
|
/* No more quote to send, continue to ... */
|
|
|
|
switch(instate) {
|
|
|
|
case FTP_QUOTE:
|
|
|
|
default:
|
|
|
|
result = ftp_state_cwd(conn);
|
|
|
|
break;
|
|
|
|
case FTP_RETR_PREQUOTE:
|
|
|
|
NBFTPSENDF(conn, "SIZE %s", ftp->file);
|
|
|
|
state(conn, FTP_RETR_SIZE);
|
|
|
|
break;
|
|
|
|
case FTP_STOR_PREQUOTE:
|
2005-03-04 18:52:06 -05:00
|
|
|
result = ftp_state_ul_setup(conn, FALSE);
|
2005-02-09 08:06:40 -05:00
|
|
|
break;
|
|
|
|
case FTP_POSTQUOTE:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CURLcode ftp_state_pasv_resp(struct connectdata *conn,
|
|
|
|
int ftpcode)
|
|
|
|
{
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
|
|
|
CURLcode result;
|
|
|
|
struct SessionHandle *data=conn->data;
|
|
|
|
Curl_addrinfo *conninfo;
|
|
|
|
struct Curl_dns_entry *addr=NULL;
|
|
|
|
int rc;
|
|
|
|
unsigned short connectport; /* the local port connect() should use! */
|
|
|
|
unsigned short newport=0; /* remote port */
|
|
|
|
bool connected;
|
|
|
|
|
|
|
|
/* newhost must be able to hold a full IP-style address in ASCII, which
|
|
|
|
in the IPv6 case means 5*8-1 = 39 letters */
|
|
|
|
#define NEWHOST_BUFSIZE 48
|
|
|
|
char newhost[NEWHOST_BUFSIZE];
|
|
|
|
char *str=&data->state.buffer[4]; /* start on the first letter */
|
|
|
|
|
|
|
|
if((ftp->count1 == 0) &&
|
|
|
|
(ftpcode == 229)) {
|
|
|
|
/* positive EPSV response */
|
|
|
|
char *ptr = strchr(str, '(');
|
|
|
|
if(ptr) {
|
|
|
|
unsigned int num;
|
|
|
|
char separator[4];
|
|
|
|
ptr++;
|
|
|
|
if(5 == sscanf(ptr, "%c%c%c%u%c",
|
|
|
|
&separator[0],
|
|
|
|
&separator[1],
|
|
|
|
&separator[2],
|
|
|
|
&num,
|
|
|
|
&separator[3])) {
|
2005-03-15 16:00:46 -05:00
|
|
|
const char sep1 = separator[0];
|
2005-02-09 08:06:40 -05:00
|
|
|
int i;
|
|
|
|
|
|
|
|
/* The four separators should be identical, or else this is an oddly
|
|
|
|
formatted reply and we bail out immediately. */
|
|
|
|
for(i=1; i<4; i++) {
|
|
|
|
if(separator[i] != sep1) {
|
|
|
|
ptr=NULL; /* set to NULL to signal error */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(ptr) {
|
|
|
|
newport = num;
|
|
|
|
|
|
|
|
/* use the same IP we are already connected to */
|
2005-03-15 16:00:46 -05:00
|
|
|
snprintf(newhost, NEWHOST_BUFSIZE, "%s", conn->ip_addr_str);
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ptr=NULL;
|
|
|
|
}
|
|
|
|
if(!ptr) {
|
|
|
|
failf(data, "Weirdly formatted EPSV reply");
|
|
|
|
return CURLE_FTP_WEIRD_PASV_REPLY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if((ftp->count1 == 1) &&
|
|
|
|
(ftpcode == 227)) {
|
|
|
|
/* positive PASV response */
|
|
|
|
int ip[4];
|
|
|
|
int port[2];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Scan for a sequence of six comma-separated numbers and use them as
|
|
|
|
* IP+port indicators.
|
|
|
|
*
|
|
|
|
* Found reply-strings include:
|
|
|
|
* "227 Entering Passive Mode (127,0,0,1,4,51)"
|
|
|
|
* "227 Data transfer will passively listen to 127,0,0,1,4,51"
|
|
|
|
* "227 Entering passive mode. 127,0,0,1,4,51"
|
|
|
|
*/
|
|
|
|
while(*str) {
|
|
|
|
if (6 == sscanf(str, "%d,%d,%d,%d,%d,%d",
|
|
|
|
&ip[0], &ip[1], &ip[2], &ip[3],
|
|
|
|
&port[0], &port[1]))
|
|
|
|
break;
|
|
|
|
str++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!*str) {
|
|
|
|
failf(data, "Couldn't interpret the 227-response");
|
|
|
|
return CURLE_FTP_WEIRD_227_FORMAT;
|
|
|
|
}
|
|
|
|
|
2005-09-04 01:16:06 -04:00
|
|
|
/* we got OK from server */
|
|
|
|
if(data->set.ftp_skip_ip) {
|
|
|
|
/* told to ignore the remotely given IP but instead use the one we used
|
|
|
|
for the control connection */
|
|
|
|
infof(data, "Skips %d.%d.%d.%d for data connection, uses %s instead\n",
|
|
|
|
ip[0], ip[1], ip[2], ip[3],
|
|
|
|
conn->ip_addr_str);
|
|
|
|
snprintf(newhost, sizeof(newhost), "%s", conn->ip_addr_str);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
snprintf(newhost, sizeof(newhost),
|
|
|
|
"%d.%d.%d.%d", ip[0], ip[1], ip[2], ip[3]);
|
2005-02-09 08:06:40 -05:00
|
|
|
newport = (port[0]<<8) + port[1];
|
|
|
|
}
|
|
|
|
else if(ftp->count1 == 0) {
|
|
|
|
/* EPSV failed, move on to PASV */
|
|
|
|
|
|
|
|
/* disable it for next transfer */
|
|
|
|
conn->bits.ftp_use_epsv = FALSE;
|
|
|
|
infof(data, "disabling EPSV usage\n");
|
|
|
|
|
|
|
|
NBFTPSENDF(conn, "PASV", NULL);
|
|
|
|
ftp->count1++;
|
|
|
|
/* remain in the FTP_PASV state */
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
failf(data, "Bad PASV/EPSV response: %03d", ftpcode);
|
|
|
|
return CURLE_FTP_WEIRD_PASV_REPLY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(data->change.proxy && *data->change.proxy) {
|
|
|
|
/*
|
|
|
|
* This is a tunnel through a http proxy and we need to connect to the
|
|
|
|
* proxy again here.
|
|
|
|
*
|
|
|
|
* We don't want to rely on a former host lookup that might've expired
|
|
|
|
* now, instead we remake the lookup here and now!
|
|
|
|
*/
|
|
|
|
rc = Curl_resolv(conn, conn->proxy.name, (int)conn->port, &addr);
|
|
|
|
if(rc == CURLRESOLV_PENDING)
|
|
|
|
/* BLOCKING */
|
|
|
|
rc = Curl_wait_for_resolv(conn, &addr);
|
|
|
|
|
|
|
|
connectport =
|
|
|
|
(unsigned short)conn->port; /* we connect to the proxy's port */
|
|
|
|
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* normal, direct, ftp connection */
|
|
|
|
rc = Curl_resolv(conn, newhost, newport, &addr);
|
|
|
|
if(rc == CURLRESOLV_PENDING)
|
|
|
|
/* BLOCKING */
|
|
|
|
rc = Curl_wait_for_resolv(conn, &addr);
|
|
|
|
|
|
|
|
if(!addr) {
|
|
|
|
failf(data, "Can't resolve new host %s:%d", newhost, newport);
|
|
|
|
return CURLE_FTP_CANT_GET_HOST;
|
|
|
|
}
|
|
|
|
connectport = newport; /* we connect to the remote port */
|
|
|
|
}
|
|
|
|
|
|
|
|
result = Curl_connecthost(conn,
|
|
|
|
addr,
|
|
|
|
&conn->sock[SECONDARYSOCKET],
|
|
|
|
&conninfo,
|
|
|
|
&connected);
|
|
|
|
|
|
|
|
Curl_resolv_unlock(data, addr); /* we're done using this address */
|
2001-03-02 02:44:05 -05:00
|
|
|
|
2002-12-03 05:25:31 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
2001-03-02 02:44:05 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
conn->bits.tcpconnect = connected; /* simply TRUE or FALSE */
|
2003-10-24 08:58:59 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/*
|
|
|
|
* When this is used from the multi interface, this might've returned with
|
|
|
|
* the 'connected' set to FALSE and thus we are now awaiting a non-blocking
|
|
|
|
* connect to connect and we should not be "hanging" here waiting.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if(data->set.verbose)
|
|
|
|
/* this just dumps information about this second connection */
|
|
|
|
ftp_pasv_verbose(conn, conninfo, newhost, connectport);
|
|
|
|
|
|
|
|
#ifndef CURL_DISABLE_HTTP
|
|
|
|
if(conn->bits.tunnel_proxy) {
|
|
|
|
/* FIX: this MUST wait for a proper connect first if 'connected' is
|
|
|
|
* FALSE */
|
|
|
|
|
|
|
|
/* BLOCKING */
|
|
|
|
/* We want "seamless" FTP operations through HTTP proxy tunnel */
|
2005-07-03 18:25:15 -04:00
|
|
|
result = Curl_proxyCONNECT(conn, SECONDARYSOCKET, newhost, newport);
|
2005-02-09 08:06:40 -05:00
|
|
|
if(CURLE_OK != result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
#endif /* CURL_DISABLE_HTTP */
|
|
|
|
|
|
|
|
state(conn, FTP_STOP); /* this phase is completed */
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CURLcode ftp_state_port_resp(struct connectdata *conn,
|
|
|
|
int ftpcode)
|
|
|
|
{
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
|
|
|
struct SessionHandle *data = conn->data;
|
2005-02-10 02:45:26 -05:00
|
|
|
ftpport fcmd = (ftpport)ftp->count1;
|
2005-02-09 08:06:40 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(ftpcode != 200) {
|
|
|
|
/* the command failed */
|
2001-03-02 02:44:05 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if (EPRT == fcmd) {
|
|
|
|
infof(data, "disabling EPRT usage\n");
|
|
|
|
conn->bits.ftp_use_eprt = FALSE;
|
2001-03-02 02:44:05 -05:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
else if (LPRT == fcmd) {
|
|
|
|
infof(data, "disabling LPRT usage\n");
|
|
|
|
conn->bits.ftp_use_lprt = FALSE;
|
2001-03-02 02:44:05 -05:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
fcmd++;
|
2001-03-02 02:44:05 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(fcmd == DONE) {
|
|
|
|
failf(data, "Failed to do PORT");
|
|
|
|
result = CURLE_FTP_PORT_FAILED;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
/* try next */
|
|
|
|
result = ftp_state_use_port(conn, fcmd);
|
2001-03-02 02:44:05 -05:00
|
|
|
}
|
|
|
|
else {
|
2005-02-09 08:06:40 -05:00
|
|
|
infof(data, "Connect data stream actively\n");
|
|
|
|
state(conn, FTP_STOP); /* end of DO phase */
|
2001-03-02 02:44:05 -05:00
|
|
|
}
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
return result;
|
2000-05-22 10:12:12 -04:00
|
|
|
}
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
static CURLcode ftp_state_mdtm_resp(struct connectdata *conn,
|
|
|
|
int ftpcode)
|
2000-05-22 10:12:12 -04:00
|
|
|
{
|
2005-02-09 08:06:40 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2001-02-20 12:35:51 -05:00
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
2005-02-09 08:06:40 -05:00
|
|
|
struct SessionHandle *data=conn->data;
|
2004-12-16 17:20:33 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
switch(ftpcode) {
|
|
|
|
case 213:
|
|
|
|
{
|
|
|
|
/* we got a time. Format should be: "YYYYMMDDHHMMSS[.sss]" where the
|
|
|
|
last .sss part is optional and means fractions of a second */
|
|
|
|
int year, month, day, hour, minute, second;
|
|
|
|
char *buf = data->state.buffer;
|
|
|
|
if(6 == sscanf(buf+4, "%04d%02d%02d%02d%02d%02d",
|
|
|
|
&year, &month, &day, &hour, &minute, &second)) {
|
|
|
|
/* we have a time, reformat it */
|
|
|
|
time_t secs=time(NULL);
|
|
|
|
/* using the good old yacc/bison yuck */
|
|
|
|
snprintf(buf, sizeof(conn->data->state.buffer),
|
|
|
|
"%04d%02d%02d %02d:%02d:%02d GMT",
|
|
|
|
year, month, day, hour, minute, second);
|
|
|
|
/* now, convert this into a time() value: */
|
2005-04-26 09:08:49 -04:00
|
|
|
data->info.filetime = (long)curl_getdate(buf, &secs);
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
2003-08-05 09:04:10 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* If we asked for a time of the file and we actually got one as well,
|
|
|
|
we "emulate" a HTTP-style header in our output. */
|
2004-04-22 09:09:00 -04:00
|
|
|
|
2005-03-08 03:09:14 -05:00
|
|
|
if(conn->bits.no_body &&
|
|
|
|
data->set.include_header &&
|
|
|
|
ftp->file &&
|
|
|
|
data->set.get_filetime &&
|
|
|
|
(data->info.filetime>=0) ) {
|
2005-02-09 08:06:40 -05:00
|
|
|
struct tm *tm;
|
|
|
|
time_t clock = (time_t)data->info.filetime;
|
|
|
|
#ifdef HAVE_GMTIME_R
|
|
|
|
struct tm buffer;
|
|
|
|
tm = (struct tm *)gmtime_r(&clock, &buffer);
|
|
|
|
#else
|
|
|
|
tm = gmtime(&clock);
|
|
|
|
#endif
|
|
|
|
/* format: "Tue, 15 Nov 1994 12:45:26" */
|
2005-02-10 19:03:49 -05:00
|
|
|
snprintf(buf, BUFSIZE-1,
|
|
|
|
"Last-Modified: %s, %02d %s %4d %02d:%02d:%02d GMT\r\n",
|
|
|
|
Curl_wkday[tm->tm_wday?tm->tm_wday-1:6],
|
|
|
|
tm->tm_mday,
|
|
|
|
Curl_month[tm->tm_mon],
|
|
|
|
tm->tm_year + 1900,
|
|
|
|
tm->tm_hour,
|
|
|
|
tm->tm_min,
|
|
|
|
tm->tm_sec);
|
2005-02-09 08:06:40 -05:00
|
|
|
result = Curl_client_write(data, CLIENTWRITE_BOTH, buf, 0);
|
|
|
|
if(result)
|
|
|
|
return result;
|
2005-03-08 03:09:14 -05:00
|
|
|
} /* end of a ridiculous amount of conditionals */
|
2000-05-22 10:12:12 -04:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
infof(data, "unsupported MDTM reply format\n");
|
|
|
|
break;
|
|
|
|
case 550: /* "No such file or directory" */
|
|
|
|
failf(data, "Given file does not exist");
|
|
|
|
result = CURLE_FTP_COULDNT_RETR_FILE;
|
|
|
|
break;
|
2000-05-22 10:12:12 -04:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
|
|
|
|
if(data->set.timecondition) {
|
|
|
|
if((data->info.filetime > 0) && (data->set.timevalue > 0)) {
|
|
|
|
switch(data->set.timecondition) {
|
|
|
|
case CURL_TIMECOND_IFMODSINCE:
|
|
|
|
default:
|
2005-10-05 02:09:20 -04:00
|
|
|
if(data->info.filetime <= data->set.timevalue) {
|
2005-02-09 08:06:40 -05:00
|
|
|
infof(data, "The requested document is not new enough\n");
|
|
|
|
ftp->no_transfer = TRUE; /* mark this to not transfer data */
|
|
|
|
state(conn, FTP_STOP);
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CURL_TIMECOND_IFUNMODSINCE:
|
|
|
|
if(data->info.filetime > data->set.timevalue) {
|
|
|
|
infof(data, "The requested document is not old enough\n");
|
|
|
|
ftp->no_transfer = TRUE; /* mark this to not transfer data */
|
|
|
|
state(conn, FTP_STOP);
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
} /* switch */
|
2000-05-22 10:12:12 -04:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
else {
|
|
|
|
infof(data, "Skipping time comparison\n");
|
2000-05-22 10:12:12 -04:00
|
|
|
}
|
|
|
|
}
|
2004-05-12 08:06:39 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(!result)
|
|
|
|
result = ftp_state_post_mdtm(conn);
|
2001-05-11 07:38:13 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
return result;
|
|
|
|
}
|
2004-11-02 05:12:22 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
static CURLcode ftp_state_type_resp(struct connectdata *conn,
|
|
|
|
int ftpcode,
|
|
|
|
ftpstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data=conn->data;
|
2004-11-02 05:12:22 -05:00
|
|
|
|
2005-05-24 05:39:56 -04:00
|
|
|
if(ftpcode/100 != 2) {
|
|
|
|
/* "sasserftpd" and "(u)r(x)bot ftpd" both responds with 226 after a
|
|
|
|
successful 'TYPE I'. While that is not as RFC959 says, it is still a
|
|
|
|
positive response code and we allow that. */
|
2005-02-09 08:06:40 -05:00
|
|
|
failf(data, "Couldn't set desired mode");
|
|
|
|
return CURLE_FTP_COULDNT_SET_BINARY; /* FIX */
|
|
|
|
}
|
2005-05-24 05:39:56 -04:00
|
|
|
if(ftpcode != 200)
|
|
|
|
infof(data, "Got a %03d response code instead of the assumed 200\n",
|
|
|
|
ftpcode);
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(instate == FTP_TYPE)
|
|
|
|
result = ftp_state_post_type(conn);
|
|
|
|
else if(instate == FTP_LIST_TYPE)
|
|
|
|
result = ftp_state_post_listtype(conn);
|
|
|
|
else if(instate == FTP_RETR_TYPE)
|
|
|
|
result = ftp_state_post_retrtype(conn);
|
|
|
|
else if(instate == FTP_STOR_TYPE)
|
|
|
|
result = ftp_state_post_stortype(conn);
|
2004-11-02 05:12:22 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
return result;
|
|
|
|
}
|
2004-11-02 05:12:22 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
static CURLcode ftp_state_post_retr_size(struct connectdata *conn,
|
|
|
|
curl_off_t filesize)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data=conn->data;
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
2000-05-22 10:12:12 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if (data->set.max_filesize && (filesize > data->set.max_filesize)) {
|
|
|
|
failf(data, "Maximum file size exceeded");
|
|
|
|
return CURLE_FILESIZE_EXCEEDED;
|
|
|
|
}
|
|
|
|
ftp->downloadsize = filesize;
|
2002-12-04 03:56:55 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(conn->resume_from) {
|
|
|
|
/* We always (attempt to) get the size of downloads, so it is done before
|
|
|
|
this even when not doing resumes. */
|
|
|
|
if(filesize == -1) {
|
|
|
|
infof(data, "ftp server doesn't support SIZE\n");
|
|
|
|
/* We couldn't get the size and therefore we can't know if there really
|
|
|
|
is a part of the file left to get, although the server will just
|
|
|
|
close the connection when we start the connection so it won't cause
|
|
|
|
us any harm, just not make us exit as nicely. */
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* We got a file size report, so we check that there actually is a
|
|
|
|
part of the file left to get, or else we go home. */
|
|
|
|
if(conn->resume_from< 0) {
|
|
|
|
/* We're supposed to download the last abs(from) bytes */
|
|
|
|
if(filesize < -conn->resume_from) {
|
|
|
|
failf(data, "Offset (%" FORMAT_OFF_T
|
|
|
|
") was beyond file size (%" FORMAT_OFF_T ")",
|
|
|
|
conn->resume_from, filesize);
|
|
|
|
return CURLE_BAD_DOWNLOAD_RESUME;
|
|
|
|
}
|
|
|
|
/* convert to size to download */
|
|
|
|
ftp->downloadsize = -conn->resume_from;
|
|
|
|
/* download from where? */
|
|
|
|
conn->resume_from = filesize - ftp->downloadsize;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if(filesize < conn->resume_from) {
|
|
|
|
failf(data, "Offset (%" FORMAT_OFF_T
|
|
|
|
") was beyond file size (%" FORMAT_OFF_T ")",
|
|
|
|
conn->resume_from, filesize);
|
|
|
|
return CURLE_BAD_DOWNLOAD_RESUME;
|
|
|
|
}
|
|
|
|
/* Now store the number of bytes we are expected to download */
|
|
|
|
ftp->downloadsize = filesize-conn->resume_from;
|
|
|
|
}
|
|
|
|
}
|
2002-12-04 03:56:55 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(ftp->downloadsize == 0) {
|
|
|
|
/* no data to transfer */
|
|
|
|
result=Curl_Transfer(conn, -1, -1, FALSE, NULL, -1, NULL);
|
|
|
|
infof(data, "File already completely downloaded\n");
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* Set no_transfer so that we won't get any error in Curl_ftp_done()
|
|
|
|
* because we didn't transfer the any file */
|
|
|
|
ftp->no_transfer = TRUE;
|
|
|
|
state(conn, FTP_STOP);
|
|
|
|
return CURLE_OK;
|
2002-12-04 03:56:55 -05:00
|
|
|
}
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* Set resume file transfer offset */
|
|
|
|
infof(data, "Instructs server to resume from offset %" FORMAT_OFF_T
|
|
|
|
"\n", conn->resume_from);
|
2000-08-31 08:04:55 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
NBFTPSENDF(conn, "REST %" FORMAT_OFF_T, conn->resume_from);
|
2000-05-22 10:12:12 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
state(conn, FTP_RETR_REST);
|
2004-06-03 07:41:05 -04:00
|
|
|
|
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
else {
|
|
|
|
/* no resume */
|
|
|
|
NBFTPSENDF(conn, "RETR %s", ftp->file);
|
|
|
|
state(conn, FTP_RETR);
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2001-11-12 17:27:05 -05:00
|
|
|
return result;
|
2000-05-22 10:12:12 -04:00
|
|
|
}
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
static CURLcode ftp_state_size_resp(struct connectdata *conn,
|
|
|
|
int ftpcode,
|
|
|
|
ftpstate instate)
|
2001-08-15 02:52:42 -04:00
|
|
|
{
|
2005-02-09 08:06:40 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data=conn->data;
|
|
|
|
curl_off_t filesize;
|
|
|
|
char *buf = data->state.buffer;
|
2001-08-15 02:52:42 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* get the size from the ascii string: */
|
|
|
|
filesize = (ftpcode == 213)?curlx_strtoofft(buf+4, NULL, 0):-1;
|
2001-08-15 02:52:42 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(instate == FTP_SIZE) {
|
|
|
|
if(-1 != filesize) {
|
|
|
|
snprintf(buf, sizeof(data->state.buffer),
|
|
|
|
"Content-Length: %" FORMAT_OFF_T "\r\n", filesize);
|
|
|
|
result = Curl_client_write(data, CLIENTWRITE_BOTH, buf, 0);
|
|
|
|
if(result)
|
2002-12-03 05:25:31 -05:00
|
|
|
return result;
|
2001-08-15 02:52:42 -04:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
result = ftp_state_post_size(conn);
|
|
|
|
}
|
|
|
|
else if(instate == FTP_RETR_SIZE)
|
|
|
|
result = ftp_state_post_retr_size(conn, filesize);
|
|
|
|
else if(instate == FTP_STOR_SIZE) {
|
|
|
|
conn->resume_from = filesize;
|
2005-03-04 18:52:06 -05:00
|
|
|
result = ftp_state_ul_setup(conn, TRUE);
|
2001-08-15 02:52:42 -04:00
|
|
|
}
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
return result;
|
2001-08-15 02:52:42 -04:00
|
|
|
}
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
static CURLcode ftp_state_rest_resp(struct connectdata *conn,
|
|
|
|
int ftpcode,
|
|
|
|
ftpstate instate)
|
2001-08-23 02:10:01 -04:00
|
|
|
{
|
2005-02-09 08:06:40 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
2001-08-23 02:10:01 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
switch(instate) {
|
|
|
|
case FTP_REST:
|
|
|
|
default:
|
|
|
|
if (ftpcode == 350) {
|
|
|
|
result = Curl_client_write(conn->data, CLIENTWRITE_BOTH,
|
|
|
|
(char *)"Accept-ranges: bytes\r\n", 0);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
2001-08-23 02:10:01 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
result = ftp_state_post_rest(conn);
|
|
|
|
break;
|
2001-08-23 02:10:01 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
case FTP_RETR_REST:
|
|
|
|
if (ftpcode != 350) {
|
|
|
|
failf(conn->data, "Couldn't use REST");
|
|
|
|
result = CURLE_FTP_COULDNT_USE_REST;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
NBFTPSENDF(conn, "RETR %s", ftp->file);
|
|
|
|
state(conn, FTP_RETR);
|
2001-08-23 02:10:01 -04:00
|
|
|
}
|
2003-01-07 06:25:44 -05:00
|
|
|
break;
|
2001-08-23 02:10:01 -04:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
|
|
|
|
return result;
|
2001-08-23 02:10:01 -04:00
|
|
|
}
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
static CURLcode ftp_state_stor_resp(struct connectdata *conn,
|
|
|
|
int ftpcode)
|
2001-08-23 02:10:01 -04:00
|
|
|
{
|
2005-02-09 08:06:40 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2001-08-30 18:48:34 -04:00
|
|
|
struct SessionHandle *data = conn->data;
|
2005-02-09 08:06:40 -05:00
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
2001-08-23 02:10:01 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(ftpcode>=400) {
|
|
|
|
failf(data, "Failed FTP upload: %0d", ftpcode);
|
|
|
|
/* oops, we never close the sockets! */
|
|
|
|
return CURLE_FTP_COULDNT_STOR_FILE;
|
|
|
|
}
|
2001-08-23 02:10:01 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(data->set.ftp_use_port) {
|
|
|
|
/* BLOCKING */
|
|
|
|
/* PORT means we are now awaiting the server to connect to us. */
|
|
|
|
result = AllowServerConnect(conn);
|
|
|
|
if( result )
|
|
|
|
return result;
|
|
|
|
}
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-09-27 04:46:54 -04:00
|
|
|
if(conn->ssl[SECONDARYSOCKET].use) {
|
|
|
|
/* since we only have a plaintext TCP connection here, we must now
|
|
|
|
do the TLS stuff */
|
|
|
|
infof(data, "Doing the SSL/TLS handshake on the data stream\n");
|
|
|
|
/* BLOCKING */
|
|
|
|
result = Curl_ssl_connect(conn, SECONDARYSOCKET);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
*(ftp->bytecountp)=0;
|
2001-08-23 02:10:01 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* When we know we're uploading a specified file, we can get the file
|
|
|
|
size prior to the actual upload. */
|
2001-11-01 07:47:22 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
Curl_pgrsSetUploadSize(data, data->set.infilesize);
|
|
|
|
|
|
|
|
result = Curl_Transfer(conn, -1, -1, FALSE, NULL, /* no download */
|
|
|
|
SECONDARYSOCKET, ftp->bytecountp);
|
|
|
|
state(conn, FTP_STOP);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* for LIST and RETR responses */
|
|
|
|
static CURLcode ftp_state_get_resp(struct connectdata *conn,
|
|
|
|
int ftpcode,
|
|
|
|
ftpstate instate)
|
2001-08-23 02:10:01 -04:00
|
|
|
{
|
2005-02-09 08:06:40 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2001-08-30 18:48:34 -04:00
|
|
|
struct SessionHandle *data = conn->data;
|
2005-02-09 08:06:40 -05:00
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
|
|
|
char *buf = data->state.buffer;
|
2001-08-23 02:10:01 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if((ftpcode == 150) || (ftpcode == 125)) {
|
2001-08-23 02:10:01 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/*
|
|
|
|
A;
|
|
|
|
150 Opening BINARY mode data connection for /etc/passwd (2241
|
|
|
|
bytes). (ok, the file is being transfered)
|
2001-08-23 02:10:01 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
B:
|
|
|
|
150 Opening ASCII mode data connection for /bin/ls
|
2001-08-23 02:10:01 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
C:
|
|
|
|
150 ASCII data connection for /bin/ls (137.167.104.91,37445) (0 bytes).
|
2001-09-28 03:46:39 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
D:
|
|
|
|
150 Opening ASCII mode data connection for /linux/fisk/kpanelrc (0.0.0.0,0) (545 bytes).
|
2001-08-23 02:10:01 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
E:
|
|
|
|
125 Data connection already open; Transfer starting. */
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
curl_off_t size=-1; /* default unknown size */
|
2001-03-14 13:24:07 -05:00
|
|
|
|
2005-01-28 03:26:36 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/*
|
|
|
|
* It appears that there are FTP-servers that return size 0 for files when
|
|
|
|
* SIZE is used on the file while being in BINARY mode. To work around
|
|
|
|
* that (stupid) behavior, we attempt to parse the RETR response even if
|
|
|
|
* the SIZE returned size zero.
|
|
|
|
*
|
|
|
|
* Debugging help from Salvatore Sorrentino on February 26, 2003.
|
|
|
|
*/
|
2005-01-28 03:26:36 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if((instate != FTP_LIST) &&
|
|
|
|
!data->set.ftp_ascii &&
|
|
|
|
(ftp->downloadsize < 1)) {
|
|
|
|
/*
|
|
|
|
* It seems directory listings either don't show the size or very
|
|
|
|
* often uses size 0 anyway. ASCII transfers may very well turn out
|
|
|
|
* that the transfered amount of data is not the same as this line
|
|
|
|
* tells, why using this number in those cases only confuses us.
|
|
|
|
*
|
|
|
|
* Example D above makes this parsing a little tricky */
|
|
|
|
char *bytes;
|
|
|
|
bytes=strstr(buf, " bytes");
|
|
|
|
if(bytes--) {
|
2005-04-26 09:08:49 -04:00
|
|
|
long in=(long)(bytes-buf);
|
2005-02-09 08:06:40 -05:00
|
|
|
/* this is a hint there is size information in there! ;-) */
|
|
|
|
while(--in) {
|
|
|
|
/* scan for the left parenthesis and break there */
|
|
|
|
if('(' == *bytes)
|
|
|
|
break;
|
|
|
|
/* skip only digits */
|
|
|
|
if(!isdigit((int)*bytes)) {
|
|
|
|
bytes=NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* one more estep backwards */
|
|
|
|
bytes--;
|
|
|
|
}
|
|
|
|
/* if we have nothing but digits: */
|
|
|
|
if(bytes++) {
|
|
|
|
/* get the number! */
|
|
|
|
size = curlx_strtoofft(bytes, NULL, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(ftp->downloadsize > -1)
|
|
|
|
size = ftp->downloadsize;
|
2005-01-28 03:26:36 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(data->set.ftp_use_port) {
|
|
|
|
/* BLOCKING */
|
|
|
|
result = AllowServerConnect(conn);
|
|
|
|
if( result )
|
|
|
|
return result;
|
2005-01-28 03:26:36 -05:00
|
|
|
}
|
2001-02-05 18:04:44 -05:00
|
|
|
|
2005-09-27 04:46:54 -04:00
|
|
|
if(conn->ssl[SECONDARYSOCKET].use) {
|
|
|
|
/* since we only have a plaintext TCP connection here, we must now
|
|
|
|
do the TLS stuff */
|
|
|
|
infof(data, "Doing the SSL/TLS handshake on the data stream\n");
|
|
|
|
result = Curl_ssl_connect(conn, SECONDARYSOCKET);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(size > conn->maxdownload && conn->maxdownload > 0)
|
|
|
|
size = conn->size = conn->maxdownload;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(instate != FTP_LIST)
|
|
|
|
infof(data, "Getting file with size: %" FORMAT_OFF_T "\n", size);
|
2004-02-09 02:52:36 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* FTP download: */
|
|
|
|
result=Curl_Transfer(conn, SECONDARYSOCKET, size, FALSE,
|
|
|
|
ftp->bytecountp,
|
|
|
|
-1, NULL); /* no upload here */
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
state(conn, FTP_STOP);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if((instate == FTP_LIST) && (ftpcode == 450)) {
|
|
|
|
/* simply no matching files in the dir listing */
|
|
|
|
ftp->no_transfer = TRUE; /* don't download anything */
|
|
|
|
state(conn, FTP_STOP); /* this phase is over */
|
2004-03-24 17:45:37 -05:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
else {
|
2005-05-02 18:53:55 -04:00
|
|
|
failf(data, "RETR response: %03d", ftpcode);
|
2005-02-09 08:06:40 -05:00
|
|
|
return CURLE_FTP_COULDNT_RETR_FILE;
|
2001-02-05 18:04:44 -05:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* after USER, PASS and ACCT */
|
|
|
|
static CURLcode ftp_state_loggedin(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
|
|
|
|
#ifdef HAVE_KRB4
|
2005-05-07 16:28:39 -04:00
|
|
|
if(conn->data->set.krb4) {
|
2005-02-11 17:50:57 -05:00
|
|
|
/* We are logged in, asked to use Kerberos. Set the requested
|
|
|
|
* protection level
|
|
|
|
*/
|
|
|
|
if(conn->sec_complete)
|
|
|
|
/* BLOCKING */
|
|
|
|
Curl_sec_set_protection_level(conn);
|
2005-03-29 06:35:25 -05:00
|
|
|
|
2005-02-11 17:50:57 -05:00
|
|
|
/* We may need to issue a KAUTH here to have access to the files
|
|
|
|
* do it if user supplied a password
|
|
|
|
*/
|
|
|
|
if(conn->passwd && *conn->passwd) {
|
|
|
|
/* BLOCKING */
|
|
|
|
result = Curl_krb_kauth(conn);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if(conn->ssl[FIRSTSOCKET].use) {
|
|
|
|
/* PBSZ = PROTECTION BUFFER SIZE.
|
|
|
|
|
|
|
|
The 'draft-murray-auth-ftp-ssl' (draft 12, page 7) says:
|
|
|
|
|
|
|
|
Specifically, the PROT command MUST be preceded by a PBSZ
|
|
|
|
command and a PBSZ command MUST be preceded by a successful
|
|
|
|
security data exchange (the TLS negotiation in this case)
|
|
|
|
|
|
|
|
... (and on page 8):
|
|
|
|
|
|
|
|
Thus the PBSZ command must still be issued, but must have a
|
|
|
|
parameter of '0' to indicate that no buffering is taking place
|
|
|
|
and the data connection should not be encapsulated.
|
|
|
|
*/
|
|
|
|
NBFTPSENDF(conn, "PBSZ %d", 0);
|
|
|
|
state(conn, FTP_PBSZ);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result = ftp_state_pwd(conn);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* for USER and PASS responses */
|
|
|
|
static CURLcode ftp_state_user_resp(struct connectdata *conn,
|
|
|
|
int ftpcode,
|
|
|
|
ftpstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
|
|
|
if((ftpcode == 331) && (ftp->state == FTP_USER)) {
|
|
|
|
/* 331 Password required for ...
|
|
|
|
(the server requires to send the user's password too) */
|
|
|
|
NBFTPSENDF(conn, "PASS %s", ftp->passwd?ftp->passwd:"");
|
|
|
|
state(conn, FTP_PASS);
|
|
|
|
}
|
|
|
|
else if(ftpcode/100 == 2) {
|
|
|
|
/* 230 User ... logged in.
|
|
|
|
(the user logged in with or without password) */
|
|
|
|
result = ftp_state_loggedin(conn);
|
|
|
|
}
|
|
|
|
else if(ftpcode == 332) {
|
|
|
|
if(data->set.ftp_account) {
|
|
|
|
NBFTPSENDF(conn, "ACCT %s", data->set.ftp_account);
|
|
|
|
state(conn, FTP_ACCT);
|
|
|
|
}
|
|
|
|
else {
|
2005-02-09 08:59:40 -05:00
|
|
|
failf(data, "ACCT requested but none available");
|
2005-02-09 08:06:40 -05:00
|
|
|
result = CURLE_LOGIN_DENIED;
|
2001-02-05 18:04:44 -05:00
|
|
|
}
|
2001-09-28 04:58:18 -04:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
else {
|
|
|
|
/* All other response codes, like:
|
2005-01-28 03:26:36 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
530 User ... access denied
|
|
|
|
(the server denies to log the specified user) */
|
|
|
|
failf(data, "Access denied: %03d", ftpcode);
|
|
|
|
result = CURLE_LOGIN_DENIED;
|
2001-09-28 04:58:18 -04:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
return result;
|
|
|
|
}
|
2001-02-05 18:04:44 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* for ACCT response */
|
|
|
|
static CURLcode ftp_state_acct_resp(struct connectdata *conn,
|
|
|
|
int ftpcode)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
if(ftpcode != 230) {
|
|
|
|
failf(data, "ACCT rejected by server: %03d", ftpcode);
|
|
|
|
result = CURLE_FTP_WEIRD_PASS_REPLY; /* FIX */
|
2001-09-28 04:58:18 -04:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
else
|
|
|
|
result = ftp_state_loggedin(conn);
|
2001-02-05 18:04:44 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
return result;
|
|
|
|
}
|
2004-11-29 16:25:07 -05:00
|
|
|
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
static CURLcode ftp_statemach_act(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
CURLcode result;
|
|
|
|
curl_socket_t sock = conn->sock[FIRSTSOCKET];
|
|
|
|
struct SessionHandle *data=conn->data;
|
|
|
|
int ftpcode;
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
|
|
|
static const char * const ftpauth[] = {
|
|
|
|
"SSL", "TLS"
|
|
|
|
};
|
2005-05-14 02:00:40 -04:00
|
|
|
size_t nread = 0;
|
2004-11-25 17:21:49 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(ftp->sendleft) {
|
|
|
|
/* we have a piece of a command still left to send */
|
|
|
|
ssize_t written;
|
|
|
|
result = Curl_write(conn, sock, ftp->sendthis + ftp->sendsize -
|
|
|
|
ftp->sendleft, ftp->sendleft, &written);
|
|
|
|
if(result)
|
|
|
|
return result;
|
2004-11-25 17:21:49 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(written != (ssize_t)ftp->sendleft) {
|
|
|
|
/* only a fraction was sent */
|
|
|
|
ftp->sendleft -= written;
|
2001-09-28 04:58:18 -04:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
else {
|
|
|
|
free(ftp->sendthis);
|
|
|
|
ftp->sendthis=NULL;
|
|
|
|
ftp->sendleft = ftp->sendsize = 0;
|
|
|
|
ftp->response = Curl_tvnow();
|
|
|
|
}
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
2001-02-05 18:04:44 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* we read a piece of response */
|
|
|
|
result = ftp_readresp(sock, conn, &ftpcode, &nread);
|
|
|
|
if(result)
|
|
|
|
return result;
|
2001-09-04 22:49:04 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(ftpcode) {
|
|
|
|
/* we have now received a full FTP server response */
|
|
|
|
switch(ftp->state) {
|
|
|
|
case FTP_WAIT220:
|
|
|
|
if(ftpcode != 220) {
|
|
|
|
failf(data, "This doesn't seem like a nice ftp-server response");
|
|
|
|
return CURLE_FTP_WEIRD_SERVER_REPLY;
|
2001-09-28 04:58:18 -04:00
|
|
|
}
|
2001-09-04 22:49:04 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* We have received a 220 response fine, now we proceed. */
|
|
|
|
#ifdef HAVE_KRB4
|
|
|
|
if(data->set.krb4) {
|
|
|
|
/* If not anonymous login, try a secure login. Note that this
|
|
|
|
procedure is still BLOCKING. */
|
2001-02-05 18:04:44 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
Curl_sec_request_prot(conn, "private");
|
|
|
|
/* We set private first as default, in case the line below fails to
|
|
|
|
set a valid level */
|
|
|
|
Curl_sec_request_prot(conn, data->set.krb4_level);
|
2001-09-04 22:49:04 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(Curl_sec_login(conn) != 0)
|
|
|
|
infof(data, "Logging in with password in cleartext!\n");
|
2001-09-28 04:58:18 -04:00
|
|
|
else
|
2005-02-09 08:06:40 -05:00
|
|
|
infof(data, "Authentication successful\n");
|
|
|
|
}
|
|
|
|
#endif
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(data->set.ftp_ssl && !conn->ssl[FIRSTSOCKET].use) {
|
|
|
|
/* We don't have a SSL/TLS connection yet, but FTPS is
|
|
|
|
requested. Try a FTPS connection now */
|
|
|
|
|
|
|
|
ftp->count3=0;
|
|
|
|
switch(data->set.ftpsslauth) {
|
|
|
|
case CURLFTPAUTH_DEFAULT:
|
|
|
|
case CURLFTPAUTH_SSL:
|
|
|
|
ftp->count2 = 1; /* add one to get next */
|
|
|
|
ftp->count1 = 0;
|
|
|
|
break;
|
|
|
|
case CURLFTPAUTH_TLS:
|
|
|
|
ftp->count2 = -1; /* subtract one to get next */
|
|
|
|
ftp->count1 = 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
failf(data, "unsupported parameter to CURLOPT_FTPSSLAUTH: %d\n",
|
|
|
|
data->set.ftpsslauth);
|
|
|
|
return CURLE_FAILED_INIT; /* we don't know what to do */
|
2001-09-04 22:49:04 -04:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
NBFTPSENDF(conn, "AUTH %s", ftpauth[ftp->count1]);
|
|
|
|
state(conn, FTP_AUTH);
|
2001-09-28 04:58:18 -04:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
else {
|
|
|
|
ftp_state_user(conn);
|
|
|
|
if(result)
|
|
|
|
return result;
|
2001-09-28 04:58:18 -04:00
|
|
|
}
|
2001-09-04 22:49:04 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
break;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
case FTP_AUTH:
|
|
|
|
/* we have gotten the response to a previous AUTH command */
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* RFC2228 (page 5) says:
|
|
|
|
*
|
|
|
|
* If the server is willing to accept the named security mechanism,
|
|
|
|
* and does not require any security data, it must respond with
|
|
|
|
* reply code 234/334.
|
|
|
|
*/
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if((ftpcode == 234) || (ftpcode == 334)) {
|
2005-04-07 11:27:13 -04:00
|
|
|
/* Curl_ssl_connect is BLOCKING */
|
|
|
|
result = Curl_ssl_connect(conn, FIRSTSOCKET);
|
2005-03-29 06:43:02 -05:00
|
|
|
if(CURLE_OK == result) {
|
|
|
|
conn->protocol |= PROT_FTPS;
|
|
|
|
conn->ssl[SECONDARYSOCKET].use = FALSE; /* clear-text data */
|
|
|
|
result = ftp_state_user(conn);
|
|
|
|
}
|
2004-11-25 17:21:49 -05:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
else if(ftp->count3 < 1) {
|
|
|
|
ftp->count3++;
|
|
|
|
ftp->count1 += ftp->count2; /* get next attempt */
|
2005-03-29 06:43:02 -05:00
|
|
|
result = Curl_nbftpsendf(conn, "AUTH %s", ftpauth[ftp->count1]);
|
2005-02-09 08:06:40 -05:00
|
|
|
/* remain in this same state */
|
|
|
|
}
|
2005-03-29 06:43:02 -05:00
|
|
|
else
|
2005-02-09 08:06:40 -05:00
|
|
|
result = ftp_state_user(conn);
|
2005-03-29 06:43:02 -05:00
|
|
|
|
|
|
|
if(result)
|
|
|
|
return result;
|
2001-09-28 04:58:18 -04:00
|
|
|
break;
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
case FTP_USER:
|
|
|
|
case FTP_PASS:
|
|
|
|
result = ftp_state_user_resp(conn, ftpcode, ftp->state);
|
|
|
|
break;
|
2003-05-13 08:11:31 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
case FTP_ACCT:
|
|
|
|
result = ftp_state_acct_resp(conn, ftpcode);
|
|
|
|
break;
|
2003-05-13 08:11:31 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
case FTP_PBSZ:
|
|
|
|
/* FIX: check response code */
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* For TLS, the data connection can have one of two security levels.
|
2002-08-01 10:25:12 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
1) Clear (requested by 'PROT C')
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
2)Private (requested by 'PROT P')
|
|
|
|
*/
|
|
|
|
if(!conn->ssl[SECONDARYSOCKET].use) {
|
|
|
|
NBFTPSENDF(conn, "PROT %c", 'P');
|
|
|
|
state(conn, FTP_PROT);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result = ftp_state_pwd(conn);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
2002-08-01 10:25:12 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
break;
|
2002-08-01 10:25:12 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
case FTP_PROT:
|
|
|
|
if(ftpcode/100 == 2)
|
|
|
|
/* We have enabled SSL for the data connection! */
|
|
|
|
conn->ssl[SECONDARYSOCKET].use = TRUE;
|
|
|
|
/* FTP servers typically responds with 500 if they decide to reject
|
|
|
|
our 'P' request */
|
|
|
|
else if(data->set.ftp_ssl> CURLFTPSSL_CONTROL)
|
|
|
|
/* we failed and bails out */
|
|
|
|
return CURLE_FTP_SSL_FAILED;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
result = ftp_state_pwd(conn);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
break;
|
2001-09-28 04:58:18 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
case FTP_PWD:
|
|
|
|
if(ftpcode == 257) {
|
|
|
|
char *dir = (char *)malloc(nread+1);
|
|
|
|
char *store=dir;
|
|
|
|
char *ptr=&data->state.buffer[4]; /* start on the first letter */
|
2002-08-01 10:25:12 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(!dir)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* Reply format is like
|
|
|
|
257<space>"<directory-name>"<space><commentary> and the RFC959
|
|
|
|
says
|
2001-09-28 04:58:18 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
The directory name can contain any character; embedded
|
|
|
|
double-quotes should be escaped by double-quotes (the
|
|
|
|
"quote-doubling" convention).
|
|
|
|
*/
|
|
|
|
if('\"' == *ptr) {
|
|
|
|
/* it started good */
|
|
|
|
ptr++;
|
|
|
|
while(ptr && *ptr) {
|
|
|
|
if('\"' == *ptr) {
|
|
|
|
if('\"' == ptr[1]) {
|
|
|
|
/* "quote-doubling" */
|
|
|
|
*store = ptr[1];
|
|
|
|
ptr++;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* end of path */
|
|
|
|
*store = '\0'; /* zero terminate */
|
|
|
|
break; /* get out of this loop */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*store = *ptr;
|
|
|
|
store++;
|
|
|
|
ptr++;
|
|
|
|
}
|
|
|
|
ftp->entrypath =dir; /* remember this */
|
|
|
|
infof(data, "Entry path is '%s'\n", ftp->entrypath);
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
else {
|
|
|
|
/* couldn't get the path */
|
|
|
|
free(dir);
|
|
|
|
infof(data, "Failed to figure out path\n");
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
state(conn, FTP_STOP); /* we are done with the CONNECT phase! */
|
2005-05-07 09:57:07 -04:00
|
|
|
DEBUGF(infof(data, "protocol connect phase DONE\n"));
|
2005-02-09 08:06:40 -05:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FTP_QUOTE:
|
|
|
|
case FTP_POSTQUOTE:
|
|
|
|
case FTP_RETR_PREQUOTE:
|
|
|
|
case FTP_STOR_PREQUOTE:
|
|
|
|
if(ftpcode >= 400) {
|
|
|
|
failf(conn->data, "QUOT command failed with %03d", ftpcode);
|
|
|
|
return CURLE_FTP_QUOTE_ERROR;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
result = ftp_state_quote(conn, FALSE, ftp->state);
|
|
|
|
if(result)
|
|
|
|
return result;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
case FTP_CWD:
|
|
|
|
if(ftpcode/100 != 2) {
|
|
|
|
/* failure to CWD there */
|
|
|
|
if(conn->data->set.ftp_create_missing_dirs &&
|
|
|
|
ftp->count1 && !ftp->count2) {
|
|
|
|
/* try making it */
|
|
|
|
ftp->count2++; /* counter to prevent CWD-MKD loops */
|
|
|
|
NBFTPSENDF(conn, "MKD %s", ftp->dirs[ftp->count1 - 1]);
|
|
|
|
state(conn, FTP_MKD);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
/* return failure */
|
|
|
|
return CURLE_FTP_ACCESS_DENIED;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* success */
|
|
|
|
ftp->count2=0;
|
|
|
|
if(++ftp->count1 <= ftp->dirdepth) {
|
|
|
|
/* send next CWD */
|
|
|
|
NBFTPSENDF(conn, "CWD %s", ftp->dirs[ftp->count1 - 1]);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result = ftp_state_post_cwd(conn);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
case FTP_MKD:
|
|
|
|
if(ftpcode/100 != 2) {
|
|
|
|
/* failure to MKD the dir */
|
|
|
|
failf(data, "Failed to MKD dir: %03d", ftpcode);
|
|
|
|
return CURLE_FTP_ACCESS_DENIED;
|
|
|
|
}
|
|
|
|
state(conn, FTP_CWD);
|
|
|
|
/* send CWD */
|
|
|
|
NBFTPSENDF(conn, "CWD %s", ftp->dirs[ftp->count1 - 1]);
|
|
|
|
break;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
case FTP_MDTM:
|
|
|
|
result = ftp_state_mdtm_resp(conn, ftpcode);
|
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
case FTP_TYPE:
|
|
|
|
case FTP_LIST_TYPE:
|
|
|
|
case FTP_RETR_TYPE:
|
|
|
|
case FTP_STOR_TYPE:
|
|
|
|
result = ftp_state_type_resp(conn, ftpcode, ftp->state);
|
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
case FTP_SIZE:
|
|
|
|
case FTP_RETR_SIZE:
|
|
|
|
case FTP_STOR_SIZE:
|
|
|
|
result = ftp_state_size_resp(conn, ftpcode, ftp->state);
|
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
case FTP_REST:
|
|
|
|
case FTP_RETR_REST:
|
|
|
|
result = ftp_state_rest_resp(conn, ftpcode, ftp->state);
|
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
case FTP_PASV:
|
|
|
|
result = ftp_state_pasv_resp(conn, ftpcode);
|
|
|
|
break;
|
2001-09-28 04:58:18 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
case FTP_PORT:
|
|
|
|
result = ftp_state_port_resp(conn, ftpcode);
|
|
|
|
break;
|
2001-09-28 04:58:18 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
case FTP_LIST:
|
|
|
|
case FTP_RETR:
|
|
|
|
result = ftp_state_get_resp(conn, ftpcode, ftp->state);
|
|
|
|
break;
|
2001-09-28 04:58:18 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
case FTP_STOR:
|
|
|
|
result = ftp_state_stor_resp(conn, ftpcode);
|
|
|
|
break;
|
2001-11-26 19:48:45 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
case FTP_QUIT:
|
|
|
|
/* fallthrough, just stop! */
|
|
|
|
default:
|
|
|
|
/* internal error */
|
|
|
|
state(conn, FTP_STOP);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} /* if(ftpcode) */
|
2001-11-26 19:48:45 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
return result;
|
|
|
|
}
|
2001-11-26 19:48:45 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* Returns timeout in ms. 0 or negative number means the timeout has already
|
|
|
|
triggered */
|
|
|
|
static long ftp_state_timeout(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
struct SessionHandle *data=conn->data;
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
|
|
|
long timeout_ms=360000; /* in milliseconds */
|
|
|
|
|
|
|
|
if(data->set.ftp_response_timeout )
|
|
|
|
/* if CURLOPT_FTP_RESPONSE_TIMEOUT is set, use that to determine remaining
|
|
|
|
time. Also, use ftp->response because FTP_RESPONSE_TIMEOUT is supposed
|
|
|
|
to govern the response for any given ftp response, not for the time
|
|
|
|
from connect to the given ftp response. */
|
|
|
|
timeout_ms = data->set.ftp_response_timeout*1000 - /* timeout time */
|
|
|
|
Curl_tvdiff(Curl_tvnow(), ftp->response); /* spent time */
|
|
|
|
else if(data->set.timeout)
|
|
|
|
/* if timeout is requested, find out how much remaining time we have */
|
|
|
|
timeout_ms = data->set.timeout*1000 - /* timeout time */
|
|
|
|
Curl_tvdiff(Curl_tvnow(), conn->now); /* spent time */
|
|
|
|
else
|
|
|
|
/* Without a requested timeout, we only wait 'response_time' seconds for
|
|
|
|
the full response to arrive before we bail out */
|
|
|
|
timeout_ms = ftp->response_time*1000 -
|
|
|
|
Curl_tvdiff(Curl_tvnow(), ftp->response); /* spent time */
|
2001-11-26 19:48:45 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
return timeout_ms;
|
|
|
|
}
|
2001-11-26 19:48:45 -05:00
|
|
|
|
2001-09-28 04:58:18 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* called repeatedly until done from multi.c */
|
|
|
|
CURLcode Curl_ftp_multi_statemach(struct connectdata *conn,
|
|
|
|
bool *done)
|
|
|
|
{
|
|
|
|
curl_socket_t sock = conn->sock[FIRSTSOCKET];
|
|
|
|
int rc;
|
|
|
|
struct SessionHandle *data=conn->data;
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
long timeout_ms = ftp_state_timeout(conn);
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
*done = FALSE; /* default to not done yet */
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(timeout_ms <= 0) {
|
|
|
|
failf(data, "FTP response timeout");
|
|
|
|
return CURLE_OPERATION_TIMEDOUT;
|
|
|
|
}
|
2004-11-29 16:25:07 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
rc = Curl_select(ftp->sendleft?CURL_SOCKET_BAD:sock, /* reading */
|
|
|
|
ftp->sendleft?sock:CURL_SOCKET_BAD, /* writing */
|
|
|
|
0);
|
2004-11-25 17:21:49 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(rc == -1) {
|
|
|
|
failf(data, "select error");
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2001-09-28 04:58:18 -04:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
else if(rc != 0) {
|
|
|
|
result = ftp_statemach_act(conn);
|
|
|
|
*done = (ftp->state == FTP_STOP);
|
2001-09-28 04:58:18 -04:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
/* if rc == 0, then select() timed out */
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
return result;
|
|
|
|
}
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
static CURLcode ftp_easy_statemach(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
curl_socket_t sock = conn->sock[FIRSTSOCKET];
|
|
|
|
int rc;
|
|
|
|
struct SessionHandle *data=conn->data;
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
|
|
|
CURLcode result = CURLE_OK;
|
2001-09-04 22:49:04 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
while(ftp->state != FTP_STOP) {
|
|
|
|
long timeout_ms = ftp_state_timeout(conn);
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(timeout_ms <=0 ) {
|
|
|
|
failf(data, "FTP response timeout");
|
|
|
|
return CURLE_OPERATION_TIMEDOUT; /* already too little time */
|
|
|
|
}
|
2001-11-26 19:48:45 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
rc = Curl_select(ftp->sendleft?CURL_SOCKET_BAD:sock, /* reading */
|
|
|
|
ftp->sendleft?sock:CURL_SOCKET_BAD, /* writing */
|
2005-05-08 18:45:01 -04:00
|
|
|
(int)timeout_ms);
|
2003-11-10 03:12:53 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(rc == -1) {
|
|
|
|
failf(data, "select error");
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2001-09-28 04:58:18 -04:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
else if(rc == 0) {
|
|
|
|
result = CURLE_OPERATION_TIMEDOUT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result = ftp_statemach_act(conn);
|
|
|
|
if(result)
|
|
|
|
break;
|
2001-09-28 04:58:18 -04:00
|
|
|
}
|
2001-11-26 19:48:45 -05:00
|
|
|
}
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
return result;
|
|
|
|
}
|
2003-08-05 10:40:59 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/*
|
|
|
|
* Curl_ftp_connect() should do everything that is to be considered a part of
|
|
|
|
* the connection phase.
|
|
|
|
*
|
|
|
|
* The variable 'done' points to will be TRUE if the protocol-layer connect
|
|
|
|
* phase is done when this function returns, or FALSE is not. When called as
|
|
|
|
* a part of the easy interface, it will always be TRUE.
|
|
|
|
*/
|
|
|
|
CURLcode Curl_ftp_connect(struct connectdata *conn,
|
|
|
|
bool *done) /* see description above */
|
|
|
|
{
|
|
|
|
struct FTP *ftp;
|
|
|
|
CURLcode result;
|
2002-04-25 15:00:57 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
*done = FALSE; /* default to not done yet */
|
2003-08-05 10:40:59 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
ftp = (struct FTP *)calloc(sizeof(struct FTP), 1);
|
|
|
|
if(!ftp)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
conn->proto.ftp = ftp;
|
2002-08-12 05:43:20 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* We always support persistant connections on ftp */
|
|
|
|
conn->bits.close = FALSE;
|
2002-11-05 05:51:41 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* get some initial data into the ftp struct */
|
|
|
|
ftp->bytecountp = &conn->bytecount;
|
2003-09-03 17:44:59 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* no need to duplicate them, this connectdata struct won't change */
|
|
|
|
ftp->user = conn->user;
|
|
|
|
ftp->passwd = conn->passwd;
|
|
|
|
if (isBadFtpString(ftp->user) || isBadFtpString(ftp->passwd))
|
|
|
|
return CURLE_URL_MALFORMAT;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
ftp->response_time = 3600; /* set default response time-out */
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2004-06-09 04:23:55 -04:00
|
|
|
#ifndef CURL_DISABLE_HTTP
|
2005-02-09 08:06:40 -05:00
|
|
|
if (conn->bits.tunnel_proxy) {
|
|
|
|
/* BLOCKING */
|
2001-11-26 19:48:45 -05:00
|
|
|
/* We want "seamless" FTP operations through HTTP proxy tunnel */
|
2005-07-03 18:25:15 -04:00
|
|
|
result = Curl_proxyCONNECT(conn, FIRSTSOCKET,
|
|
|
|
conn->host.name, conn->remote_port);
|
2001-10-02 05:40:06 -04:00
|
|
|
if(CURLE_OK != result)
|
|
|
|
return result;
|
2001-09-28 04:58:18 -04:00
|
|
|
}
|
2004-06-09 04:23:55 -04:00
|
|
|
#endif /* CURL_DISABLE_HTTP */
|
2001-09-28 04:58:18 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(conn->protocol & PROT_FTPS) {
|
|
|
|
/* BLOCKING */
|
|
|
|
/* FTPS is simply ftp with SSL for the control channel */
|
|
|
|
/* now, perform the SSL initialization for this socket */
|
2005-04-07 11:27:13 -04:00
|
|
|
result = Curl_ssl_connect(conn, FIRSTSOCKET);
|
2005-02-09 08:06:40 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* When we connect, we start in the state where we await the 220
|
|
|
|
response */
|
2005-03-29 06:35:25 -05:00
|
|
|
ftp_respinit(conn); /* init the response reader stuff */
|
2005-02-09 08:06:40 -05:00
|
|
|
state(conn, FTP_WAIT220);
|
|
|
|
ftp->response = Curl_tvnow(); /* start response time-out now! */
|
|
|
|
|
|
|
|
if(conn->data->state.used_interface == Curl_if_multi)
|
|
|
|
result = Curl_ftp_multi_statemach(conn, done);
|
|
|
|
else {
|
|
|
|
result = ftp_easy_statemach(conn);
|
|
|
|
if(!result)
|
|
|
|
*done = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2001-09-28 04:58:18 -04:00
|
|
|
}
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* Curl_ftp_done()
|
|
|
|
*
|
|
|
|
* The DONE function. This does what needs to be done after a single DO has
|
|
|
|
* performed.
|
2001-11-01 07:47:22 -05:00
|
|
|
*
|
2005-02-09 08:06:40 -05:00
|
|
|
* Input argument is already checked for validity.
|
2001-11-01 07:47:22 -05:00
|
|
|
*/
|
2005-02-09 08:06:40 -05:00
|
|
|
CURLcode Curl_ftp_done(struct connectdata *conn, CURLcode status)
|
2001-09-28 04:58:18 -04:00
|
|
|
{
|
2005-02-09 08:06:40 -05:00
|
|
|
struct SessionHandle *data = conn->data;
|
2001-09-28 04:58:18 -04:00
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
2005-02-09 08:06:40 -05:00
|
|
|
ssize_t nread;
|
|
|
|
int ftpcode;
|
|
|
|
CURLcode result=CURLE_OK;
|
|
|
|
bool was_ctl_valid = ftp->ctl_valid;
|
|
|
|
size_t flen;
|
|
|
|
size_t dlen;
|
|
|
|
char *path;
|
2002-02-28 18:31:23 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* now store a copy of the directory we are in */
|
|
|
|
if(ftp->prevpath)
|
|
|
|
free(ftp->prevpath);
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
path = curl_unescape(conn->path, 0); /* get the "raw" path */
|
|
|
|
if(!path)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
flen = ftp->file?strlen(ftp->file):0; /* file is "raw" already */
|
|
|
|
dlen = strlen(path)-flen;
|
|
|
|
if(dlen) {
|
|
|
|
ftp->prevpath = path;
|
|
|
|
if(flen)
|
|
|
|
/* if 'path' is not the whole string */
|
|
|
|
ftp->prevpath[dlen]=0; /* terminate */
|
|
|
|
infof(data, "Remembering we are in dir %s\n", ftp->prevpath);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ftp->prevpath = NULL; /* no path */
|
|
|
|
free(path);
|
|
|
|
}
|
|
|
|
/* free the dir tree and file parts */
|
|
|
|
freedirs(ftp);
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
ftp->ctl_valid = FALSE;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(data->set.upload) {
|
|
|
|
if((-1 != data->set.infilesize) &&
|
|
|
|
(data->set.infilesize != *ftp->bytecountp) &&
|
2005-04-05 16:59:12 -04:00
|
|
|
!data->set.crlf &&
|
2005-04-05 17:14:59 -04:00
|
|
|
!ftp->no_transfer) {
|
2005-02-09 08:06:40 -05:00
|
|
|
failf(data, "Uploaded unaligned file size (%" FORMAT_OFF_T
|
|
|
|
" out of %" FORMAT_OFF_T " bytes)",
|
|
|
|
*ftp->bytecountp, data->set.infilesize);
|
|
|
|
conn->bits.close = TRUE; /* close this connection since we don't
|
|
|
|
know what state this error leaves us in */
|
|
|
|
return CURLE_PARTIAL_FILE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if((-1 != conn->size) && (conn->size != *ftp->bytecountp) &&
|
|
|
|
(conn->maxdownload != *ftp->bytecountp)) {
|
|
|
|
failf(data, "Received only partial file: %" FORMAT_OFF_T " bytes",
|
|
|
|
*ftp->bytecountp);
|
|
|
|
conn->bits.close = TRUE; /* close this connection since we don't
|
|
|
|
know what state this error leaves us in */
|
|
|
|
return CURLE_PARTIAL_FILE;
|
|
|
|
}
|
|
|
|
else if(!ftp->dont_check &&
|
|
|
|
!*ftp->bytecountp &&
|
|
|
|
(conn->size>0)) {
|
|
|
|
/* We consider this an error, but there's no true FTP error received
|
|
|
|
why we need to continue to "read out" the server response too.
|
|
|
|
We don't want to leave a "waiting" server reply if we'll get told
|
|
|
|
to make a second request on this same connection! */
|
|
|
|
failf(data, "No data was received!");
|
|
|
|
result = CURLE_FTP_COULDNT_RETR_FILE;
|
|
|
|
}
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
switch(status) {
|
|
|
|
case CURLE_BAD_DOWNLOAD_RESUME:
|
|
|
|
case CURLE_FTP_WEIRD_PASV_REPLY:
|
|
|
|
case CURLE_FTP_PORT_FAILED:
|
|
|
|
case CURLE_FTP_COULDNT_SET_BINARY:
|
|
|
|
case CURLE_FTP_COULDNT_RETR_FILE:
|
|
|
|
case CURLE_FTP_ACCESS_DENIED:
|
|
|
|
/* the connection stays alive fine even though this happened */
|
|
|
|
/* fall-through */
|
|
|
|
case CURLE_OK: /* doesn't affect the control connection's status */
|
|
|
|
ftp->ctl_valid = was_ctl_valid;
|
|
|
|
break;
|
|
|
|
default: /* by default, an error means the control connection is
|
|
|
|
wedged and should not be used anymore */
|
|
|
|
ftp->ctl_valid = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
#ifdef HAVE_KRB4
|
|
|
|
Curl_sec_fflush_fd(conn, conn->sock[SECONDARYSOCKET]);
|
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* shut down the socket to inform the server we're done */
|
2001-05-11 07:38:13 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
#ifdef _WIN32_WCE
|
|
|
|
shutdown(conn->sock[SECONDARYSOCKET],2); /* SD_BOTH */
|
|
|
|
#endif
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
sclose(conn->sock[SECONDARYSOCKET]);
|
2001-05-11 07:38:13 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
conn->sock[SECONDARYSOCKET] = CURL_SOCKET_BAD;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(!ftp->no_transfer && !status) {
|
|
|
|
/* Let's see what the server says about the transfer we just performed,
|
|
|
|
* but lower the timeout as sometimes this connection has died while the
|
|
|
|
* data has been transfered. This happens when doing through NATs etc that
|
|
|
|
* abandon old silent connections.
|
|
|
|
*/
|
|
|
|
ftp->response_time = 60; /* give it only a minute for now */
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2002-12-03 05:25:31 -05:00
|
|
|
result = Curl_GetFTPResponse(&nread, conn, &ftpcode);
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
ftp->response_time = 3600; /* set this back to one hour waits */
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(!nread && (CURLE_OPERATION_TIMEDOUT == result)) {
|
|
|
|
failf(data, "control connection looks dead");
|
|
|
|
return result;
|
2003-12-01 05:14:39 -05:00
|
|
|
}
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(!ftp->dont_check) {
|
|
|
|
/* 226 Transfer complete, 250 Requested file action okay, completed. */
|
|
|
|
if((ftpcode != 226) && (ftpcode != 250)) {
|
|
|
|
failf(data, "server did not report OK, got %d", ftpcode);
|
|
|
|
return CURLE_FTP_WRITE_ERROR;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
2002-02-28 18:31:23 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* clear these for next connection */
|
|
|
|
ftp->no_transfer = FALSE;
|
|
|
|
ftp->dont_check = FALSE;
|
2001-11-28 08:05:39 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if (!result && conn->sec_conn) { /* 3rd party transfer */
|
|
|
|
/* "done" with the secondary connection */
|
|
|
|
result = Curl_ftp_done(conn->sec_conn, status);
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* Send any post-transfer QUOTE strings? */
|
|
|
|
if(!status && !result && data->set.postquote)
|
|
|
|
result = ftp_sendquote(conn, data->set.postquote);
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
return result;
|
|
|
|
}
|
2001-05-11 07:38:13 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* ftp_sendquote()
|
|
|
|
*
|
|
|
|
* Where a 'quote' means a list of custom commands to send to the server.
|
|
|
|
* The quote list is passed as an argument.
|
|
|
|
*/
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
static
|
|
|
|
CURLcode ftp_sendquote(struct connectdata *conn, struct curl_slist *quote)
|
|
|
|
{
|
|
|
|
struct curl_slist *item;
|
|
|
|
ssize_t nread;
|
|
|
|
int ftpcode;
|
|
|
|
CURLcode result;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
item = quote;
|
|
|
|
while (item) {
|
|
|
|
if (item->data) {
|
|
|
|
FTPSENDF(conn, "%s", item->data);
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
result = Curl_GetFTPResponse(&nread, conn, &ftpcode);
|
|
|
|
if (result)
|
|
|
|
return result;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if (ftpcode >= 400) {
|
|
|
|
failf(conn->data, "QUOT string not accepted: %s", item->data);
|
|
|
|
return CURLE_FTP_QUOTE_ERROR;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
item = item->next;
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* ftp_transfertype()
|
|
|
|
*
|
|
|
|
* Set transfer type. We only deal with ASCII or BINARY so this function
|
|
|
|
* sets one of them.
|
|
|
|
*/
|
|
|
|
static CURLcode ftp_transfertype(struct connectdata *conn,
|
|
|
|
bool ascii)
|
|
|
|
{
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
int ftpcode;
|
|
|
|
ssize_t nread;
|
|
|
|
CURLcode result;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
FTPSENDF(conn, "TYPE %s", ascii?"A":"I");
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
result = Curl_GetFTPResponse(&nread, conn, &ftpcode);
|
|
|
|
if(result)
|
|
|
|
return result;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(ftpcode != 200) {
|
|
|
|
failf(data, "Couldn't set %s mode",
|
|
|
|
ascii?"ASCII":"binary");
|
|
|
|
return ascii? CURLE_FTP_COULDNT_SET_ASCII:CURLE_FTP_COULDNT_SET_BINARY;
|
|
|
|
}
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/***************************************************************************
|
|
|
|
*
|
|
|
|
* ftp_pasv_verbose()
|
|
|
|
*
|
|
|
|
* This function only outputs some informationals about this second connection
|
|
|
|
* when we've issued a PASV command before and thus we have connected to a
|
|
|
|
* possibly new IP address.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
ftp_pasv_verbose(struct connectdata *conn,
|
|
|
|
Curl_addrinfo *ai,
|
|
|
|
char *newhost, /* ascii version */
|
|
|
|
int port)
|
|
|
|
{
|
|
|
|
char buf[256];
|
|
|
|
Curl_printable_address(ai, buf, sizeof(buf));
|
|
|
|
infof(conn->data, "Connecting to %s (%s) port %d\n", newhost, buf, port);
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/*
|
|
|
|
Check if this is a range download, and if so, set the internal variables
|
|
|
|
properly.
|
|
|
|
*/
|
2003-02-27 07:50:54 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
static CURLcode ftp_range(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
curl_off_t from, to;
|
|
|
|
curl_off_t totalsize=-1;
|
|
|
|
char *ptr;
|
|
|
|
char *ptr2;
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
2003-02-27 07:50:54 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(conn->bits.use_range && conn->range) {
|
|
|
|
from=curlx_strtoofft(conn->range, &ptr, 0);
|
|
|
|
while(ptr && *ptr && (isspace((int)*ptr) || (*ptr=='-')))
|
|
|
|
ptr++;
|
|
|
|
to=curlx_strtoofft(ptr, &ptr2, 0);
|
|
|
|
if(ptr == ptr2) {
|
|
|
|
/* we didn't get any digit */
|
|
|
|
to=-1;
|
|
|
|
}
|
|
|
|
if((-1 == to) && (from>=0)) {
|
|
|
|
/* X - */
|
|
|
|
conn->resume_from = from;
|
2005-05-07 16:41:16 -04:00
|
|
|
DEBUGF(infof(conn->data, "FTP RANGE %" FORMAT_OFF_T " to end of file\n",
|
|
|
|
from));
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
else if(from < 0) {
|
|
|
|
/* -Y */
|
|
|
|
totalsize = -from;
|
|
|
|
conn->maxdownload = -from;
|
|
|
|
conn->resume_from = from;
|
2005-05-07 16:41:16 -04:00
|
|
|
DEBUGF(infof(conn->data, "FTP RANGE the last %" FORMAT_OFF_T " bytes\n",
|
|
|
|
totalsize));
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* X-Y */
|
|
|
|
totalsize = to-from;
|
|
|
|
conn->maxdownload = totalsize+1; /* include the last mentioned byte */
|
|
|
|
conn->resume_from = from;
|
2005-05-07 16:41:16 -04:00
|
|
|
DEBUGF(infof(conn->data, "FTP RANGE from %" FORMAT_OFF_T
|
2005-05-07 09:57:07 -04:00
|
|
|
" getting %" FORMAT_OFF_T " bytes\n",
|
|
|
|
from, conn->maxdownload));
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
2005-05-07 16:41:16 -04:00
|
|
|
DEBUGF(infof(conn->data, "range-download from %" FORMAT_OFF_T
|
2005-05-07 09:57:07 -04:00
|
|
|
" to %" FORMAT_OFF_T ", totally %" FORMAT_OFF_T " bytes\n",
|
|
|
|
from, to, conn->maxdownload));
|
2005-02-09 08:06:40 -05:00
|
|
|
ftp->dont_check = TRUE; /* dont check for successful transfer */
|
|
|
|
}
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
2004-06-03 07:41:05 -04:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/*
|
|
|
|
* Curl_ftp_nextconnect()
|
|
|
|
*
|
|
|
|
* This function shall be called when the second FTP (data) connection is
|
|
|
|
* connected.
|
|
|
|
*/
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
CURLcode Curl_ftp_nextconnect(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
struct SessionHandle *data=conn->data;
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
|
|
|
|
/* the ftp struct is inited in Curl_ftp_connect() */
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
2003-12-01 05:14:39 -05:00
|
|
|
|
2005-05-07 09:57:07 -04:00
|
|
|
DEBUGF(infof(data, "DO-MORE phase starts\n"));
|
2003-12-03 03:26:31 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(!ftp->no_transfer && !conn->bits.no_body) {
|
|
|
|
/* a transfer is about to take place */
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(data->set.upload) {
|
|
|
|
NBFTPSENDF(conn, "TYPE %c", data->set.ftp_ascii?'A':'I');
|
|
|
|
state(conn, FTP_STOR_TYPE);
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
else {
|
2005-02-09 08:06:40 -05:00
|
|
|
/* download */
|
|
|
|
ftp->downloadsize = -1; /* unknown as of yet */
|
|
|
|
|
|
|
|
result = ftp_range(conn);
|
|
|
|
if(result)
|
|
|
|
;
|
|
|
|
else if((data->set.ftp_list_only) || !ftp->file) {
|
|
|
|
/* The specified path ends with a slash, and therefore we think this
|
|
|
|
is a directory that is requested, use LIST. But before that we
|
|
|
|
need to set ASCII transfer mode. */
|
|
|
|
NBFTPSENDF(conn, "TYPE A", NULL);
|
|
|
|
state(conn, FTP_LIST_TYPE);
|
2003-05-23 07:14:09 -04:00
|
|
|
}
|
|
|
|
else {
|
2005-02-09 08:06:40 -05:00
|
|
|
NBFTPSENDF(conn, "TYPE %c", data->set.ftp_ascii?'A':'I');
|
|
|
|
state(conn, FTP_RETR_TYPE);
|
2003-05-23 07:14:09 -04:00
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
result = ftp_easy_statemach(conn);
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
|
|
|
|
if(ftp->no_transfer)
|
|
|
|
/* no data to transfer. FIX: it feels like a kludge to have this here
|
|
|
|
too! */
|
|
|
|
result=Curl_Transfer(conn, -1, -1, FALSE, NULL, -1, NULL);
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
/* end of transfer */
|
2005-05-07 09:57:07 -04:00
|
|
|
DEBUGF(infof(data, "DO-MORE phase ends\n"));
|
2000-01-10 18:36:14 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
return result;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
|
|
|
|
|
2002-08-12 05:43:20 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* ftp_perform()
|
|
|
|
*
|
|
|
|
* This is the actual DO function for FTP. Get a file/directory according to
|
|
|
|
* the options previously setup.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static
|
|
|
|
CURLcode ftp_perform(struct connectdata *conn,
|
2005-02-09 08:06:40 -05:00
|
|
|
bool *connected, /* connect status after PASV / PORT */
|
|
|
|
bool *dophase_done)
|
2002-08-12 05:43:20 -04:00
|
|
|
{
|
|
|
|
/* this is FTP and no proxy */
|
|
|
|
CURLcode result=CURLE_OK;
|
|
|
|
|
2005-05-07 16:41:16 -04:00
|
|
|
DEBUGF(infof(conn->data, "DO phase starts\n"));
|
2002-08-12 05:43:20 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
*dophase_done = FALSE; /* not done yet */
|
2003-08-08 05:13:19 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* start the first command in the DO phase */
|
|
|
|
result = ftp_state_quote(conn, TRUE, FTP_QUOTE);
|
|
|
|
if(result)
|
2004-10-16 10:06:54 -04:00
|
|
|
return result;
|
2002-08-12 05:43:20 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* run the state-machine */
|
|
|
|
if(conn->data->state.used_interface == Curl_if_multi)
|
|
|
|
result = Curl_ftp_multi_statemach(conn, dophase_done);
|
2002-08-12 05:43:20 -04:00
|
|
|
else {
|
2005-02-09 08:06:40 -05:00
|
|
|
result = ftp_easy_statemach(conn);
|
|
|
|
*dophase_done = TRUE; /* with the easy interface we are done here */
|
2002-08-12 05:43:20 -04:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
*connected = conn->bits.tcpconnect;
|
|
|
|
|
|
|
|
if(*dophase_done)
|
2005-07-21 18:18:35 -04:00
|
|
|
DEBUGF(infof(conn->data, "DO phase is complete\n"));
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2002-08-12 05:43:20 -04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2001-11-01 07:47:22 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* Curl_ftp()
|
|
|
|
*
|
|
|
|
* This function is registered as 'curl_do' function. It decodes the path
|
|
|
|
* parts etc as a wrapper to the actual DO function (ftp_perform).
|
|
|
|
*
|
|
|
|
* The input argument is already checked for validity.
|
|
|
|
*/
|
2005-02-09 08:06:40 -05:00
|
|
|
CURLcode Curl_ftp(struct connectdata *conn, bool *done)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2004-06-03 07:41:05 -04:00
|
|
|
CURLcode retcode = CURLE_OK;
|
2003-07-19 20:18:11 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
*done = FALSE; /* default to false */
|
|
|
|
|
2004-10-16 10:06:54 -04:00
|
|
|
retcode = ftp_parse_url_path(conn);
|
|
|
|
if (retcode)
|
|
|
|
return retcode;
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if (conn->sec_conn) {
|
|
|
|
/* 3rd party transfer */
|
|
|
|
*done = TRUE; /* BLOCKING */
|
2004-06-03 07:41:05 -04:00
|
|
|
retcode = ftp_3rdparty(conn);
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
else
|
2005-02-09 08:06:40 -05:00
|
|
|
retcode = ftp_regular_transfer(conn, done);
|
2004-04-22 09:09:00 -04:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
return retcode;
|
|
|
|
}
|
|
|
|
|
2001-11-01 07:47:22 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
2005-02-09 08:06:40 -05:00
|
|
|
* Curl_(nb)ftpsendf()
|
2001-11-01 07:47:22 -05:00
|
|
|
*
|
|
|
|
* Sends the formated string as a ftp command to a ftp server
|
2001-01-05 05:11:41 -05:00
|
|
|
*
|
|
|
|
* NOTE: we build the command in a fixed-length buffer, which sets length
|
|
|
|
* restrictions on the command!
|
2005-02-09 08:06:40 -05:00
|
|
|
*
|
|
|
|
* The "nb" version is made to Never Block.
|
2001-01-05 05:11:41 -05:00
|
|
|
*/
|
2005-02-09 08:06:40 -05:00
|
|
|
CURLcode Curl_nbftpsendf(struct connectdata *conn,
|
|
|
|
const char *fmt, ...)
|
|
|
|
{
|
|
|
|
ssize_t bytes_written;
|
|
|
|
char s[256];
|
|
|
|
size_t write_len;
|
|
|
|
char *sptr=s;
|
|
|
|
CURLcode res = CURLE_OK;
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
|
|
|
vsnprintf(s, 250, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
strcat(s, "\r\n"); /* append a trailing CRLF */
|
|
|
|
|
|
|
|
bytes_written=0;
|
|
|
|
write_len = strlen(s);
|
|
|
|
|
2005-03-29 06:35:25 -05:00
|
|
|
ftp_respinit(conn);
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
res = Curl_write(conn, conn->sock[FIRSTSOCKET], sptr, write_len,
|
|
|
|
&bytes_written);
|
|
|
|
|
|
|
|
if(CURLE_OK != res)
|
|
|
|
return res;
|
|
|
|
|
|
|
|
if(conn->data->set.verbose)
|
|
|
|
Curl_debug(conn->data, CURLINFO_HEADER_OUT, sptr, bytes_written,
|
|
|
|
conn);
|
|
|
|
|
|
|
|
if(bytes_written != (ssize_t)write_len) {
|
|
|
|
/* the whole chunk was not sent, store the rest of the data */
|
|
|
|
write_len -= bytes_written;
|
|
|
|
sptr += bytes_written;
|
|
|
|
ftp->sendthis = malloc(write_len);
|
|
|
|
if(ftp->sendthis) {
|
|
|
|
memcpy(ftp->sendthis, sptr, write_len);
|
|
|
|
ftp->sendsize=ftp->sendleft=write_len;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
failf(data, "out of memory");
|
|
|
|
res = CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ftp->response = Curl_tvnow();
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2001-10-31 09:56:12 -05:00
|
|
|
CURLcode Curl_ftpsendf(struct connectdata *conn,
|
|
|
|
const char *fmt, ...)
|
2001-01-05 05:11:41 -05:00
|
|
|
{
|
2002-01-16 09:46:00 -05:00
|
|
|
ssize_t bytes_written;
|
2001-01-05 05:11:41 -05:00
|
|
|
char s[256];
|
2004-03-03 08:24:14 -05:00
|
|
|
size_t write_len;
|
2002-01-16 09:46:00 -05:00
|
|
|
char *sptr=s;
|
|
|
|
CURLcode res = CURLE_OK;
|
2001-01-05 05:11:41 -05:00
|
|
|
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
|
|
|
vsnprintf(s, 250, fmt, ap);
|
|
|
|
va_end(ap);
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2001-01-05 05:11:41 -05:00
|
|
|
strcat(s, "\r\n"); /* append a trailing CRLF */
|
|
|
|
|
2001-03-29 03:16:55 -05:00
|
|
|
bytes_written=0;
|
2001-10-31 09:56:12 -05:00
|
|
|
write_len = strlen(s);
|
2001-03-29 03:16:55 -05:00
|
|
|
|
2004-01-29 08:56:45 -05:00
|
|
|
while(1) {
|
2003-11-24 02:15:37 -05:00
|
|
|
res = Curl_write(conn, conn->sock[FIRSTSOCKET], sptr, write_len,
|
2002-01-16 09:46:00 -05:00
|
|
|
&bytes_written);
|
|
|
|
|
|
|
|
if(CURLE_OK != res)
|
|
|
|
break;
|
|
|
|
|
2002-04-12 03:21:11 -04:00
|
|
|
if(conn->data->set.verbose)
|
2005-01-21 04:32:32 -05:00
|
|
|
Curl_debug(conn->data, CURLINFO_HEADER_OUT, sptr, bytes_written, conn);
|
2002-04-12 03:21:11 -04:00
|
|
|
|
2004-03-03 08:24:14 -05:00
|
|
|
if(bytes_written != (ssize_t)write_len) {
|
2002-01-16 09:46:00 -05:00
|
|
|
write_len -= bytes_written;
|
|
|
|
sptr += bytes_written;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
break;
|
2004-01-29 08:56:45 -05:00
|
|
|
}
|
2002-01-16 09:46:00 -05:00
|
|
|
|
|
|
|
return res;
|
2001-01-05 05:11:41 -05:00
|
|
|
}
|
|
|
|
|
2004-01-21 03:50:08 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
2004-04-22 09:09:00 -04:00
|
|
|
* ftp_quit()
|
2004-01-21 03:50:08 -05:00
|
|
|
*
|
|
|
|
* This should be called before calling sclose() on an ftp control connection
|
2004-06-03 07:41:05 -04:00
|
|
|
* (not data connections). We should then wait for the response from the
|
2004-01-21 03:50:08 -05:00
|
|
|
* server before returning. The calling code should then try to close the
|
|
|
|
* connection.
|
|
|
|
*
|
|
|
|
*/
|
2004-04-22 09:09:00 -04:00
|
|
|
static CURLcode ftp_quit(struct connectdata *conn)
|
2004-01-21 03:50:08 -05:00
|
|
|
{
|
2005-02-09 08:06:40 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2004-01-21 03:50:08 -05:00
|
|
|
|
2004-02-27 02:08:37 -05:00
|
|
|
if(conn->proto.ftp->ctl_valid) {
|
2005-02-09 08:06:40 -05:00
|
|
|
NBFTPSENDF(conn, "QUIT", NULL);
|
|
|
|
state(conn, FTP_QUIT);
|
|
|
|
|
|
|
|
result = ftp_easy_statemach(conn);
|
2004-02-27 02:08:37 -05:00
|
|
|
}
|
2004-01-21 03:50:08 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
return result;
|
2004-01-21 03:50:08 -05:00
|
|
|
}
|
|
|
|
|
2001-11-01 07:47:22 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* Curl_ftp_disconnect()
|
|
|
|
*
|
|
|
|
* Disconnect from an FTP server. Cleanup protocol-specific per-connection
|
2005-02-09 08:06:40 -05:00
|
|
|
* resources. BLOCKING.
|
2001-11-01 07:47:22 -05:00
|
|
|
*/
|
2001-03-02 02:44:05 -05:00
|
|
|
CURLcode Curl_ftp_disconnect(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
struct FTP *ftp= conn->proto.ftp;
|
|
|
|
|
2004-01-21 03:50:08 -05:00
|
|
|
/* We cannot send quit unconditionally. If this connection is stale or
|
|
|
|
bad in any way, sending quit and waiting around here will make the
|
|
|
|
disconnect wait in vain and cause more problems than we need to.
|
2004-02-27 02:08:37 -05:00
|
|
|
|
2004-04-22 09:09:00 -04:00
|
|
|
ftp_quit() will check the state of ftp->ctl_valid. If it's ok it
|
2004-02-27 02:08:37 -05:00
|
|
|
will try to send the QUIT command, otherwise it will just return.
|
2004-01-21 03:50:08 -05:00
|
|
|
*/
|
|
|
|
|
2001-04-03 06:20:23 -04:00
|
|
|
/* The FTP session may or may not have been allocated/setup at this point! */
|
|
|
|
if(ftp) {
|
2004-04-22 09:09:00 -04:00
|
|
|
(void)ftp_quit(conn); /* ignore errors on the QUIT */
|
2004-03-01 02:59:25 -05:00
|
|
|
|
2001-04-03 06:20:23 -04:00
|
|
|
if(ftp->entrypath)
|
|
|
|
free(ftp->entrypath);
|
2003-08-05 09:04:10 -04:00
|
|
|
if(ftp->cache) {
|
2001-12-03 08:48:59 -05:00
|
|
|
free(ftp->cache);
|
2003-08-05 09:04:10 -04:00
|
|
|
ftp->cache = NULL;
|
|
|
|
}
|
|
|
|
freedirs(ftp);
|
2004-12-16 13:18:23 -05:00
|
|
|
if(ftp->prevpath) {
|
2004-11-25 17:21:49 -05:00
|
|
|
free(ftp->prevpath);
|
2004-12-16 13:18:23 -05:00
|
|
|
ftp->prevpath = NULL;
|
|
|
|
}
|
2001-04-03 06:20:23 -04:00
|
|
|
}
|
2001-03-02 02:44:05 -05:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
2001-09-04 22:49:04 -04:00
|
|
|
|
2003-08-08 05:13:19 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* ftp_mkd()
|
|
|
|
*
|
|
|
|
* Makes a directory on the FTP server.
|
2003-08-08 05:55:16 -04:00
|
|
|
*
|
|
|
|
* Calls failf()
|
2003-08-08 05:13:19 -04:00
|
|
|
*/
|
2004-06-02 07:34:53 -04:00
|
|
|
static CURLcode ftp_mkd(struct connectdata *conn, char *path)
|
2003-08-08 05:13:19 -04:00
|
|
|
{
|
|
|
|
CURLcode result=CURLE_OK;
|
|
|
|
int ftpcode; /* for ftp status */
|
|
|
|
ssize_t nread;
|
|
|
|
|
|
|
|
/* Create a directory on the remote server */
|
|
|
|
FTPSENDF(conn, "MKD %s", path);
|
|
|
|
|
|
|
|
result = Curl_GetFTPResponse(&nread, conn, &ftpcode);
|
|
|
|
if(result)
|
|
|
|
return result;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2003-08-08 05:13:19 -04:00
|
|
|
switch(ftpcode) {
|
|
|
|
case 257:
|
|
|
|
/* success! */
|
2003-08-08 05:55:16 -04:00
|
|
|
infof( conn->data , "Created remote directory %s\n" , path );
|
|
|
|
break;
|
|
|
|
case 550:
|
|
|
|
failf(conn->data, "Permission denied to make directory %s", path);
|
|
|
|
result = CURLE_FTP_ACCESS_DENIED;
|
2003-08-08 05:13:19 -04:00
|
|
|
break;
|
|
|
|
default:
|
2003-08-08 05:55:16 -04:00
|
|
|
failf(conn->data, "unrecognized MKD response: %d", ftpcode );
|
|
|
|
result = CURLE_FTP_ACCESS_DENIED;
|
2003-08-08 05:13:19 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2003-08-08 05:55:16 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* ftp_cwd()
|
|
|
|
*
|
|
|
|
* Send 'CWD' to the remote server to Change Working Directory. It is the ftp
|
|
|
|
* version of the unix 'cd' command. This function is only called from the
|
2003-08-22 08:35:18 -04:00
|
|
|
* ftp_cwd_and_mkd() function these days.
|
2003-08-08 05:55:16 -04:00
|
|
|
*
|
|
|
|
* This function does NOT call failf().
|
|
|
|
*/
|
2004-06-03 07:41:05 -04:00
|
|
|
static
|
2003-08-08 05:55:16 -04:00
|
|
|
CURLcode ftp_cwd(struct connectdata *conn, char *path)
|
|
|
|
{
|
|
|
|
ssize_t nread;
|
|
|
|
int ftpcode;
|
|
|
|
CURLcode result;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2003-08-08 05:55:16 -04:00
|
|
|
FTPSENDF(conn, "CWD %s", path);
|
|
|
|
result = Curl_GetFTPResponse(&nread, conn, &ftpcode);
|
|
|
|
if (!result) {
|
|
|
|
/* According to RFC959, CWD is supposed to return 250 on success, but
|
|
|
|
there seem to be non-compliant FTP servers out there that return 200,
|
|
|
|
so we accept any '2xy' code here. */
|
|
|
|
if (ftpcode/100 != 2)
|
|
|
|
result = CURLE_FTP_ACCESS_DENIED;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2003-08-08 05:13:19 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* ftp_cwd_and_mkd()
|
|
|
|
*
|
|
|
|
* Change to the given directory. If the directory is not present, and we
|
|
|
|
* have been told to allow it, then create the directory and cd to it.
|
2003-08-08 05:55:16 -04:00
|
|
|
*
|
2003-08-08 05:13:19 -04:00
|
|
|
*/
|
2003-08-22 08:35:18 -04:00
|
|
|
static CURLcode ftp_cwd_and_mkd(struct connectdata *conn, char *path)
|
2003-08-08 05:13:19 -04:00
|
|
|
{
|
|
|
|
CURLcode result;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2003-08-08 05:13:19 -04:00
|
|
|
result = ftp_cwd(conn, path);
|
2003-08-08 05:55:16 -04:00
|
|
|
if (result) {
|
|
|
|
if(conn->data->set.ftp_create_missing_dirs) {
|
|
|
|
result = ftp_mkd(conn, path);
|
|
|
|
if (result)
|
|
|
|
/* ftp_mkd() calls failf() itself */
|
|
|
|
return result;
|
|
|
|
result = ftp_cwd(conn, path);
|
|
|
|
}
|
|
|
|
if(result)
|
2004-09-29 03:21:23 -04:00
|
|
|
failf(conn->data, "Couldn't CWD to %s", path);
|
2003-08-08 05:13:19 -04:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2004-06-03 07:41:05 -04:00
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* ftp_3rdparty_pretransfer()
|
|
|
|
*
|
|
|
|
* Preparation for 3rd party transfer.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static CURLcode ftp_3rdparty_pretransfer(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
struct connectdata *sec_conn = conn->sec_conn;
|
|
|
|
|
2005-01-21 04:32:32 -05:00
|
|
|
conn->xfertype = TARGET3RD;
|
|
|
|
sec_conn->xfertype = SOURCE3RD;
|
|
|
|
|
2004-06-03 07:41:05 -04:00
|
|
|
/* sets transfer type */
|
|
|
|
result = ftp_transfertype(conn, data->set.ftp_ascii);
|
|
|
|
if (result)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
result = ftp_transfertype(sec_conn, data->set.ftp_ascii);
|
|
|
|
if (result)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
/* Send any PREQUOTE strings after transfer type is set? */
|
|
|
|
if (data->set.source_prequote) {
|
|
|
|
/* sends command(s) to source server before file transfer */
|
|
|
|
result = ftp_sendquote(sec_conn, data->set.source_prequote);
|
|
|
|
}
|
|
|
|
if (!result && data->set.prequote)
|
|
|
|
result = ftp_sendquote(conn, data->set.prequote);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* ftp_3rdparty_transfer()
|
|
|
|
*
|
|
|
|
* Performs 3rd party transfer.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static CURLcode ftp_3rdparty_transfer(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
ssize_t nread;
|
|
|
|
int ftpcode, ip[4], port[2];
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
struct connectdata *sec_conn = conn->sec_conn;
|
|
|
|
char *buf = data->state.buffer; /* this is our buffer */
|
|
|
|
char *str = buf;
|
|
|
|
char pasv_port[50];
|
|
|
|
const char *stor_cmd;
|
|
|
|
struct connectdata *pasv_conn;
|
|
|
|
struct connectdata *port_conn;
|
|
|
|
|
2005-01-21 04:32:32 -05:00
|
|
|
if (data->set.ftpport == NULL) {
|
2004-06-03 07:41:05 -04:00
|
|
|
pasv_conn = conn;
|
|
|
|
port_conn = sec_conn;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
pasv_conn = sec_conn;
|
|
|
|
port_conn = conn;
|
|
|
|
}
|
|
|
|
|
2004-10-16 10:06:54 -04:00
|
|
|
result = ftp_cwd_and_create_path(conn);
|
|
|
|
if (result)
|
|
|
|
return result;
|
|
|
|
|
2004-06-03 07:41:05 -04:00
|
|
|
/* sets the passive mode */
|
|
|
|
FTPSENDF(pasv_conn, "%s", "PASV");
|
|
|
|
result = Curl_GetFTPResponse(&nread, pasv_conn, &ftpcode);
|
2005-01-21 04:32:32 -05:00
|
|
|
if (result)
|
|
|
|
return result;
|
|
|
|
|
2004-06-03 07:41:05 -04:00
|
|
|
if (ftpcode != 227) {
|
2005-01-21 04:32:32 -05:00
|
|
|
failf(data, "Odd return code after PASV: %03d", ftpcode);
|
2004-06-03 07:41:05 -04:00
|
|
|
return CURLE_FTP_WEIRD_PASV_REPLY;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (*str) {
|
|
|
|
if (6 == sscanf(str, "%d,%d,%d,%d,%d,%d",
|
|
|
|
&ip[0], &ip[1], &ip[2], &ip[3], &port[0], &port[1]))
|
|
|
|
break;
|
|
|
|
str++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!*str) {
|
2005-01-21 04:32:32 -05:00
|
|
|
failf(pasv_conn->data, "Couldn't interpret the 227-reply");
|
2004-06-03 07:41:05 -04:00
|
|
|
return CURLE_FTP_WEIRD_227_FORMAT;
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf(pasv_port, sizeof(pasv_port), "%d,%d,%d,%d,%d,%d", ip[0], ip[1],
|
|
|
|
ip[2], ip[3], port[0], port[1]);
|
|
|
|
|
|
|
|
/* sets data connection between remote hosts */
|
|
|
|
FTPSENDF(port_conn, "PORT %s", pasv_port);
|
|
|
|
result = Curl_GetFTPResponse(&nread, port_conn, &ftpcode);
|
|
|
|
if (result)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
if (ftpcode != 200) {
|
2005-01-21 04:32:32 -05:00
|
|
|
failf(data, "PORT command attempts failed: %03d", ftpcode);
|
2004-06-03 07:41:05 -04:00
|
|
|
return CURLE_FTP_PORT_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* we might append onto the file instead of overwriting it */
|
|
|
|
stor_cmd = data->set.ftp_append?"APPE":"STOR";
|
|
|
|
|
|
|
|
/* transfers file between remote hosts */
|
2005-01-21 04:32:32 -05:00
|
|
|
/* FIX: this should send a series of CWD commands and then RETR only the
|
|
|
|
ftp->file file. The conn->path "full path" is not unescaped. Test case
|
|
|
|
230 tests this. */
|
|
|
|
FTPSENDF(sec_conn, "RETR %s", sec_conn->path);
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-01-21 04:32:32 -05:00
|
|
|
if(!data->set.ftpport) {
|
2004-06-03 07:41:05 -04:00
|
|
|
|
|
|
|
result = Curl_GetFTPResponse(&nread, sec_conn, &ftpcode);
|
|
|
|
if (result)
|
|
|
|
return result;
|
|
|
|
|
2005-01-21 04:32:32 -05:00
|
|
|
if((ftpcode != 150) && (ftpcode != 125)) {
|
|
|
|
failf(data, "Failed RETR: %03d", ftpcode);
|
2004-06-03 07:41:05 -04:00
|
|
|
return CURLE_FTP_COULDNT_RETR_FILE;
|
|
|
|
}
|
|
|
|
|
2005-01-21 04:32:32 -05:00
|
|
|
result = Curl_ftpsendf(conn, "%s %s", stor_cmd, conn->proto.ftp->file);
|
2004-06-03 07:41:05 -04:00
|
|
|
if(CURLE_OK == result)
|
|
|
|
result = Curl_GetFTPResponse(&nread, conn, &ftpcode);
|
|
|
|
if (result)
|
|
|
|
return result;
|
|
|
|
|
2005-01-21 04:32:32 -05:00
|
|
|
if (ftpcode >= 400) {
|
|
|
|
failf(data, "Failed FTP upload: %03d", ftpcode);
|
2004-06-03 07:41:05 -04:00
|
|
|
return CURLE_FTP_COULDNT_STOR_FILE;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
|
2005-01-21 04:32:32 -05:00
|
|
|
result = Curl_ftpsendf(conn, "%s %s", stor_cmd, conn->proto.ftp->file);
|
2004-06-03 07:41:05 -04:00
|
|
|
if(CURLE_OK == result)
|
|
|
|
result = Curl_GetFTPResponse(&nread, sec_conn, &ftpcode);
|
|
|
|
if (result)
|
|
|
|
return result;
|
|
|
|
|
2005-01-21 04:32:32 -05:00
|
|
|
if (ftpcode >= 400) {
|
|
|
|
failf(data, "Failed FTP upload: %03d", ftpcode);
|
2004-06-03 07:41:05 -04:00
|
|
|
return CURLE_FTP_COULDNT_STOR_FILE;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = Curl_GetFTPResponse(&nread, conn, &ftpcode);
|
|
|
|
if (result)
|
|
|
|
return result;
|
|
|
|
|
2005-01-21 04:32:32 -05:00
|
|
|
if((ftpcode != 150) && (ftpcode != 125)) {
|
|
|
|
failf(data, "Failed FTP upload: %03d", ftpcode);
|
2004-06-03 07:41:05 -04:00
|
|
|
return CURLE_FTP_COULDNT_STOR_FILE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
*
|
2004-10-16 10:06:54 -04:00
|
|
|
* ftp_parse_url_path()
|
2004-06-03 07:41:05 -04:00
|
|
|
*
|
2004-10-16 10:06:54 -04:00
|
|
|
* Parse the URL path into separate path components.
|
2004-06-03 07:41:05 -04:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
static
|
2004-10-16 10:06:54 -04:00
|
|
|
CURLcode ftp_parse_url_path(struct connectdata *conn)
|
2004-06-03 07:41:05 -04:00
|
|
|
{
|
2004-10-16 10:06:54 -04:00
|
|
|
CURLcode retcode = CURLE_OK;
|
2004-06-03 07:41:05 -04:00
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
struct FTP *ftp;
|
2004-12-16 13:18:23 -05:00
|
|
|
size_t dlen;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
|
|
|
char *slash_pos; /* position of the first '/' char in curpos */
|
2004-10-16 10:06:54 -04:00
|
|
|
char *cur_pos = conn->path; /* current position in path. point at the begin
|
|
|
|
of next path component */
|
2004-06-03 07:41:05 -04:00
|
|
|
|
|
|
|
/* the ftp struct is already inited in ftp_connect() */
|
|
|
|
ftp = conn->proto.ftp;
|
|
|
|
ftp->ctl_valid = FALSE;
|
|
|
|
|
|
|
|
ftp->dirdepth = 0;
|
|
|
|
ftp->diralloc = 5; /* default dir depth to allocate */
|
2005-02-08 07:32:28 -05:00
|
|
|
ftp->dirs = (char **)calloc(ftp->diralloc, sizeof(ftp->dirs[0]));
|
2004-06-03 07:41:05 -04:00
|
|
|
if(!ftp->dirs)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
/* parse the URL path into separate path components */
|
|
|
|
while((slash_pos=strchr(cur_pos, '/'))) {
|
|
|
|
/* 1 or 0 to indicate absolute directory */
|
|
|
|
bool absolute_dir = (cur_pos - conn->path > 0) && (ftp->dirdepth == 0);
|
|
|
|
|
|
|
|
/* seek out the next path component */
|
|
|
|
if (slash_pos-cur_pos) {
|
|
|
|
/* we skip empty path components, like "x//y" since the FTP command CWD
|
|
|
|
requires a parameter and a non-existant parameter a) doesn't work on
|
|
|
|
many servers and b) has no effect on the others. */
|
2004-07-01 03:43:20 -04:00
|
|
|
int len = (int)(slash_pos - cur_pos + absolute_dir);
|
|
|
|
ftp->dirs[ftp->dirdepth] = curl_unescape(cur_pos - absolute_dir, len);
|
2004-06-03 07:41:05 -04:00
|
|
|
|
|
|
|
if (!ftp->dirs[ftp->dirdepth]) { /* run out of memory ... */
|
|
|
|
failf(data, "no memory");
|
|
|
|
freedirs(ftp);
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
2005-01-19 16:56:02 -05:00
|
|
|
if (isBadFtpString(ftp->dirs[ftp->dirdepth])) {
|
|
|
|
freedirs(ftp);
|
|
|
|
return CURLE_URL_MALFORMAT;
|
|
|
|
}
|
2004-06-03 07:41:05 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
cur_pos = slash_pos + 1; /* jump to the rest of the string */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!retcode) {
|
|
|
|
cur_pos = slash_pos + 1; /* jump to the rest of the string */
|
|
|
|
if(++ftp->dirdepth >= ftp->diralloc) {
|
|
|
|
/* enlarge array */
|
|
|
|
char *bigger;
|
|
|
|
ftp->diralloc *= 2; /* double the size each time */
|
|
|
|
bigger = realloc(ftp->dirs, ftp->diralloc * sizeof(ftp->dirs[0]));
|
|
|
|
if(!bigger) {
|
2005-02-08 07:32:28 -05:00
|
|
|
ftp->dirdepth--;
|
2004-06-03 07:41:05 -04:00
|
|
|
freedirs(ftp);
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
ftp->dirs = (char **)bigger;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ftp->file = cur_pos; /* the rest is the file name */
|
|
|
|
|
|
|
|
if(*ftp->file) {
|
|
|
|
ftp->file = curl_unescape(ftp->file, 0);
|
|
|
|
if(NULL == ftp->file) {
|
|
|
|
freedirs(ftp);
|
|
|
|
failf(data, "no memory");
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
2005-01-19 16:56:02 -05:00
|
|
|
if (isBadFtpString(ftp->file)) {
|
|
|
|
freedirs(ftp);
|
|
|
|
return CURLE_URL_MALFORMAT;
|
|
|
|
}
|
2004-06-03 07:41:05 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
ftp->file=NULL; /* instead of point to a zero byte, we make it a NULL
|
|
|
|
pointer */
|
|
|
|
|
2004-11-25 17:21:49 -05:00
|
|
|
ftp->cwddone = FALSE; /* default to not done */
|
2004-12-16 13:18:23 -05:00
|
|
|
|
2004-12-16 17:20:33 -05:00
|
|
|
if(ftp->prevpath) {
|
|
|
|
/* prevpath is "raw" so we convert the input path before we compare the
|
|
|
|
strings */
|
|
|
|
char *path = curl_unescape(conn->path, 0);
|
|
|
|
if(!path)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
dlen = strlen(path) - (ftp->file?strlen(ftp->file):0);
|
2004-12-16 13:18:23 -05:00
|
|
|
if((dlen == strlen(ftp->prevpath)) &&
|
2004-12-16 17:20:33 -05:00
|
|
|
curl_strnequal(path, ftp->prevpath, dlen)) {
|
2004-12-16 13:18:23 -05:00
|
|
|
infof(data, "Request has same path as previous transfer\n");
|
|
|
|
ftp->cwddone = TRUE;
|
2004-11-25 17:21:49 -05:00
|
|
|
}
|
2004-12-16 17:20:33 -05:00
|
|
|
free(path);
|
2004-11-25 17:21:49 -05:00
|
|
|
}
|
|
|
|
|
2004-10-16 10:06:54 -04:00
|
|
|
return retcode;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* ftp_cwd_and_create_path()
|
|
|
|
*
|
|
|
|
* Creates full path on remote target host.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static
|
|
|
|
CURLcode ftp_cwd_and_create_path(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
/* the ftp struct is already inited in Curl_ftp_connect() */
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
|
|
|
int i;
|
|
|
|
|
2004-11-25 17:21:49 -05:00
|
|
|
if(ftp->cwddone)
|
|
|
|
/* already done and fine */
|
|
|
|
return CURLE_OK;
|
|
|
|
|
2004-10-16 10:06:54 -04:00
|
|
|
/* This is a re-used connection. Since we change directory to where the
|
|
|
|
transfer is taking place, we must now get back to the original dir
|
|
|
|
where we ended up after login: */
|
|
|
|
if (conn->bits.reuse && ftp->entrypath) {
|
|
|
|
if ((result = ftp_cwd_and_mkd(conn, ftp->entrypath)) != CURLE_OK)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i=0; i < ftp->dirdepth; i++) {
|
|
|
|
/* RFC 1738 says empty components should be respected too, but
|
|
|
|
that is plain stupid since CWD can't be used with an empty argument */
|
|
|
|
if ((result = ftp_cwd_and_mkd(conn, ftp->dirs[i])) != CURLE_OK)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* call this when the DO phase has completed */
|
|
|
|
static CURLcode ftp_dophase_done(struct connectdata *conn,
|
|
|
|
bool connected)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct FTP *ftp = conn->proto.ftp;
|
|
|
|
|
|
|
|
if(connected)
|
|
|
|
result = Curl_ftp_nextconnect(conn);
|
|
|
|
|
|
|
|
if(result && (conn->sock[SECONDARYSOCKET] != CURL_SOCKET_BAD)) {
|
|
|
|
/* Failure detected, close the second socket if it was created already */
|
|
|
|
sclose(conn->sock[SECONDARYSOCKET]);
|
|
|
|
conn->sock[SECONDARYSOCKET] = CURL_SOCKET_BAD;
|
2005-09-14 11:04:01 -04:00
|
|
|
return result;
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if(ftp->no_transfer)
|
|
|
|
/* no data to transfer */
|
|
|
|
result=Curl_Transfer(conn, -1, -1, FALSE, NULL, -1, NULL);
|
|
|
|
else if(!connected)
|
|
|
|
/* since we didn't connect now, we want do_more to get called */
|
|
|
|
conn->bits.do_more = TRUE;
|
|
|
|
|
|
|
|
ftp->ctl_valid = TRUE; /* seems good */
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* called from multi.c while DOing */
|
|
|
|
CURLcode Curl_ftp_doing(struct connectdata *conn,
|
|
|
|
bool *dophase_done)
|
|
|
|
{
|
|
|
|
CURLcode result;
|
|
|
|
result = Curl_ftp_multi_statemach(conn, dophase_done);
|
|
|
|
|
|
|
|
if(*dophase_done) {
|
|
|
|
result = ftp_dophase_done(conn, FALSE /* not connected */);
|
|
|
|
|
2005-07-21 18:18:35 -04:00
|
|
|
DEBUGF(infof(conn->data, "DO phase is complete\n"));
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2004-10-16 10:06:54 -04:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* ftp_regular_transfer()
|
|
|
|
*
|
|
|
|
* The input argument is already checked for validity.
|
2005-02-09 08:06:40 -05:00
|
|
|
*
|
|
|
|
* Performs all commands done before a regular transfer between a local and a
|
|
|
|
* remote host.
|
2004-10-16 10:06:54 -04:00
|
|
|
*
|
|
|
|
* ftp->ctl_valid starts out as FALSE, and gets set to TRUE if we reach the
|
|
|
|
* Curl_ftp_done() function without finding any major problem.
|
|
|
|
*/
|
|
|
|
static
|
2005-02-09 08:06:40 -05:00
|
|
|
CURLcode ftp_regular_transfer(struct connectdata *conn,
|
|
|
|
bool *dophase_done)
|
2004-10-16 10:06:54 -04:00
|
|
|
{
|
2005-02-09 08:06:40 -05:00
|
|
|
CURLcode result=CURLE_OK;
|
2004-10-16 10:06:54 -04:00
|
|
|
bool connected=0;
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
struct FTP *ftp;
|
|
|
|
|
|
|
|
/* the ftp struct is already inited in ftp_connect() */
|
|
|
|
ftp = conn->proto.ftp;
|
|
|
|
conn->size = -1; /* make sure this is unknown at this point */
|
|
|
|
|
|
|
|
Curl_pgrsSetUploadCounter(data, 0);
|
|
|
|
Curl_pgrsSetDownloadCounter(data, 0);
|
|
|
|
Curl_pgrsSetUploadSize(data, 0);
|
|
|
|
Curl_pgrsSetDownloadSize(data, 0);
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
ftp->ctl_valid = TRUE; /* starts good */
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
result = ftp_perform(conn,
|
|
|
|
&connected, /* have we connected after PASV/PORT */
|
|
|
|
dophase_done); /* all commands in the DO-phase done? */
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(CURLE_OK == result) {
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(!*dophase_done)
|
|
|
|
/* the DO phase has not completed yet */
|
|
|
|
return CURLE_OK;
|
|
|
|
|
|
|
|
result = ftp_dophase_done(conn, connected);
|
|
|
|
if(result)
|
|
|
|
return result;
|
2004-06-03 07:41:05 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
freedirs(ftp);
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
return result;
|
2004-06-03 07:41:05 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* ftp_3rdparty()
|
|
|
|
*
|
|
|
|
* The input argument is already checked for validity.
|
|
|
|
* Performs a 3rd party transfer between two remote hosts.
|
|
|
|
*/
|
|
|
|
static CURLcode ftp_3rdparty(struct connectdata *conn)
|
|
|
|
{
|
2005-02-09 08:06:40 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
|
|
|
conn->proto.ftp->ctl_valid = conn->sec_conn->proto.ftp->ctl_valid = TRUE;
|
|
|
|
conn->size = conn->sec_conn->size = -1;
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
result = ftp_3rdparty_pretransfer(conn);
|
|
|
|
if (!result)
|
|
|
|
result = ftp_3rdparty_transfer(conn);
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
return result;
|
2004-06-03 07:41:05 -04:00
|
|
|
}
|
|
|
|
|
2002-06-11 07:13:01 -04:00
|
|
|
#endif /* CURL_DISABLE_FTP */
|