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
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2012-01-16 15:14:05 -05:00
|
|
|
* Copyright (C) 1998 - 2012, 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
|
|
|
*
|
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
|
|
|
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
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
|
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
|
2009-12-30 12:59:56 -05: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
|
1999-12-29 09:20:26 -05:00
|
|
|
|
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 */
|
2007-02-19 06:55:49 -05:00
|
|
|
#include "socks.h"
|
2001-01-05 05:11:41 -05:00
|
|
|
#include "ftp.h"
|
2010-05-12 09:33:22 -04:00
|
|
|
#include "fileinfo.h"
|
|
|
|
#include "ftplistparser.h"
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2007-07-01 18:01:18 -04:00
|
|
|
#if defined(HAVE_KRB4) || defined(HAVE_GSSAPI)
|
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-06-24 03:43:48 -04:00
|
|
|
#include "inet_ntop.h"
|
2008-11-06 12:19:56 -05:00
|
|
|
#include "inet_pton.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 */
|
2005-11-12 17:10:42 -05:00
|
|
|
#include "sockaddr.h" /* required for Curl_sockaddr_storage */
|
2006-04-10 11:00:53 -04:00
|
|
|
#include "multiif.h"
|
2007-10-22 11:05:35 -04:00
|
|
|
#include "url.h"
|
2009-01-20 23:42:47 -05:00
|
|
|
#include "rawstr.h"
|
2009-11-11 04:01:43 -05:00
|
|
|
#include "speedcheck.h"
|
2010-02-23 19:03:06 -05:00
|
|
|
#include "warnless.h"
|
2011-04-04 10:24:37 -04:00
|
|
|
#include "http_proxy.h"
|
2011-04-19 18:48:20 -04:00
|
|
|
#include "non-ascii.h"
|
2001-03-14 13:24:07 -05:00
|
|
|
|
2001-01-08 11:22:55 -05:00
|
|
|
#define _MPRINTF_REPLACE /* use our functions only */
|
|
|
|
#include <curl/mprintf.h>
|
|
|
|
|
2009-04-21 07:46:16 -04:00
|
|
|
#include "curl_memory.h"
|
2000-10-09 07:12:34 -04:00
|
|
|
/* The last #include file should be: */
|
|
|
|
#include "memdebug.h"
|
2000-09-21 04:47:20 -04:00
|
|
|
|
2009-07-04 07:06:00 -04:00
|
|
|
#ifndef NI_MAXHOST
|
|
|
|
#define NI_MAXHOST 1025
|
2004-03-31 05:59:48 -05:00
|
|
|
#endif
|
2009-07-04 07:27:42 -04:00
|
|
|
#ifndef INET_ADDRSTRLEN
|
|
|
|
#define INET_ADDRSTRLEN 16
|
|
|
|
#endif
|
2004-03-31 05:59:48 -05:00
|
|
|
|
2007-03-24 22:30:58 -04:00
|
|
|
#ifdef CURL_DISABLE_VERBOSE_STRINGS
|
2011-09-03 10:06:10 -04:00
|
|
|
#define ftp_pasv_verbose(a,b,c,d) Curl_nop_stmt
|
2007-03-24 22:30:58 -04:00
|
|
|
#endif
|
|
|
|
|
2001-08-15 03:14:51 -04:00
|
|
|
/* Local API functions */
|
2011-12-19 08:35:20 -05:00
|
|
|
static void state(struct connectdata *conn,
|
|
|
|
ftpstate newstate);
|
2003-08-08 05:13:19 -04:00
|
|
|
static CURLcode ftp_sendquote(struct connectdata *conn,
|
|
|
|
struct curl_slist *quote);
|
2004-04-22 09:09:00 -04:00
|
|
|
static CURLcode ftp_quit(struct connectdata *conn);
|
2004-10-16 10:06:54 -04:00
|
|
|
static CURLcode ftp_parse_url_path(struct connectdata *conn);
|
2005-02-09 08:06:40 -05:00
|
|
|
static CURLcode ftp_regular_transfer(struct connectdata *conn, bool *done);
|
2007-03-24 22:30:58 -04:00
|
|
|
#ifndef CURL_DISABLE_VERBOSE_STRINGS
|
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);
|
2007-03-24 22:30:58 -04:00
|
|
|
#endif
|
2005-02-09 08:06:40 -05:00
|
|
|
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);
|
2006-08-19 17:18:36 -04:00
|
|
|
static CURLcode ftp_nb_type(struct connectdata *conn,
|
2007-09-26 22:45:58 -04:00
|
|
|
bool ascii, ftpstate newstate);
|
2006-08-19 17:18:36 -04:00
|
|
|
static int ftp_need_type(struct connectdata *conn,
|
2006-09-07 17:49:20 -04:00
|
|
|
bool ascii);
|
2007-12-08 17:50:55 -05:00
|
|
|
static CURLcode ftp_do(struct connectdata *conn, bool *done);
|
|
|
|
static CURLcode ftp_done(struct connectdata *conn,
|
2009-11-26 14:07:54 -05:00
|
|
|
CURLcode, bool premature);
|
2007-12-08 17:50:55 -05:00
|
|
|
static CURLcode ftp_connect(struct connectdata *conn, bool *done);
|
2010-11-19 07:43:20 -05:00
|
|
|
static CURLcode ftp_disconnect(struct connectdata *conn, bool dead_connection);
|
2011-12-20 06:52:24 -05:00
|
|
|
static CURLcode ftp_do_more(struct connectdata *conn, bool *completed);
|
2007-12-08 17:50:55 -05:00
|
|
|
static CURLcode ftp_multi_statemach(struct connectdata *conn, bool *done);
|
2011-10-21 17:36:54 -04:00
|
|
|
static int ftp_getsock(struct connectdata *conn, curl_socket_t *socks,
|
2009-11-26 14:07:54 -05:00
|
|
|
int numsocks);
|
2011-10-21 17:36:54 -04:00
|
|
|
static int ftp_domore_getsock(struct connectdata *conn, curl_socket_t *socks,
|
|
|
|
int numsocks);
|
2007-12-08 17:50:55 -05:00
|
|
|
static CURLcode ftp_doing(struct connectdata *conn,
|
2009-11-26 14:07:54 -05:00
|
|
|
bool *dophase_done);
|
2007-12-08 17:50:55 -05:00
|
|
|
static CURLcode ftp_setup_connection(struct connectdata * conn);
|
2001-08-15 02:58:56 -04:00
|
|
|
|
2010-05-12 09:33:22 -04:00
|
|
|
static CURLcode init_wc_data(struct connectdata *conn);
|
|
|
|
static CURLcode wc_statemach(struct connectdata *conn);
|
|
|
|
|
2010-05-31 10:24:01 -04:00
|
|
|
static void wc_data_dtor(void *ptr);
|
|
|
|
|
2010-05-12 09:33:22 -04:00
|
|
|
static CURLcode ftp_state_post_retr_size(struct connectdata *conn,
|
|
|
|
curl_off_t filesize);
|
|
|
|
|
2011-12-19 08:35:20 -05:00
|
|
|
static CURLcode ftp_readresp(curl_socket_t sockfd,
|
|
|
|
struct pingpong *pp,
|
|
|
|
int *ftpcode,
|
|
|
|
size_t *size);
|
|
|
|
|
2001-01-05 05:11:41 -05:00
|
|
|
/* easy-to-use macro: */
|
2007-11-05 04:45:09 -05:00
|
|
|
#define FTPSENDF(x,y,z) if((result = Curl_ftpsendf(x,y,z)) != CURLE_OK) \
|
2006-08-29 17:11:55 -04:00
|
|
|
return result
|
2009-12-12 16:54:01 -05:00
|
|
|
#define PPSENDF(x,y,z) if((result = Curl_pp_sendf(x,y,z)) != CURLE_OK) \
|
2006-08-29 17:11:55 -04:00
|
|
|
return result
|
2001-01-05 05:11:41 -05:00
|
|
|
|
2007-08-17 18:22:43 -04:00
|
|
|
|
2007-10-12 09:36:37 -04:00
|
|
|
/*
|
|
|
|
* FTP protocol handler.
|
|
|
|
*/
|
|
|
|
|
|
|
|
const struct Curl_handler Curl_handler_ftp = {
|
2009-12-12 16:54:01 -05:00
|
|
|
"FTP", /* scheme */
|
2007-12-08 17:50:55 -05:00
|
|
|
ftp_setup_connection, /* setup_connection */
|
|
|
|
ftp_do, /* do_it */
|
|
|
|
ftp_done, /* done */
|
2011-12-20 06:52:24 -05:00
|
|
|
ftp_do_more, /* do_more */
|
2007-12-08 17:50:55 -05:00
|
|
|
ftp_connect, /* connect_it */
|
|
|
|
ftp_multi_statemach, /* connecting */
|
|
|
|
ftp_doing, /* doing */
|
|
|
|
ftp_getsock, /* proto_getsock */
|
|
|
|
ftp_getsock, /* doing_getsock */
|
2011-10-21 17:36:54 -04:00
|
|
|
ftp_domore_getsock, /* domore_getsock */
|
2008-12-19 16:14:52 -05:00
|
|
|
ZERO_NULL, /* perform_getsock */
|
2007-12-08 17:50:55 -05:00
|
|
|
ftp_disconnect, /* disconnect */
|
2011-05-05 10:27:03 -04:00
|
|
|
ZERO_NULL, /* readwrite */
|
2008-12-19 16:14:52 -05:00
|
|
|
PORT_FTP, /* defport */
|
2011-03-14 17:52:14 -04:00
|
|
|
CURLPROTO_FTP, /* protocol */
|
2011-11-24 17:28:54 -05:00
|
|
|
PROTOPT_DUAL | PROTOPT_CLOSEACTION | PROTOPT_NEEDSPWD
|
|
|
|
| PROTOPT_NOURLQUERY /* flags */
|
2007-10-12 09:36:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef USE_SSL
|
|
|
|
/*
|
|
|
|
* FTPS protocol handler.
|
|
|
|
*/
|
|
|
|
|
|
|
|
const struct Curl_handler Curl_handler_ftps = {
|
2009-12-12 16:54:01 -05:00
|
|
|
"FTPS", /* scheme */
|
2008-12-09 10:02:37 -05:00
|
|
|
ftp_setup_connection, /* setup_connection */
|
2007-12-08 17:50:55 -05:00
|
|
|
ftp_do, /* do_it */
|
|
|
|
ftp_done, /* done */
|
2011-12-20 06:52:24 -05:00
|
|
|
ftp_do_more, /* do_more */
|
2007-12-08 17:50:55 -05:00
|
|
|
ftp_connect, /* connect_it */
|
|
|
|
ftp_multi_statemach, /* connecting */
|
|
|
|
ftp_doing, /* doing */
|
|
|
|
ftp_getsock, /* proto_getsock */
|
|
|
|
ftp_getsock, /* doing_getsock */
|
2011-10-21 17:36:54 -04:00
|
|
|
ftp_domore_getsock, /* domore_getsock */
|
2008-12-19 16:14:52 -05:00
|
|
|
ZERO_NULL, /* perform_getsock */
|
2007-12-08 17:50:55 -05:00
|
|
|
ftp_disconnect, /* disconnect */
|
2011-05-05 10:27:03 -04:00
|
|
|
ZERO_NULL, /* readwrite */
|
2008-12-19 16:14:52 -05:00
|
|
|
PORT_FTPS, /* defport */
|
2011-03-14 17:52:14 -04:00
|
|
|
CURLPROTO_FTP | CURLPROTO_FTPS, /* protocol */
|
2011-05-05 11:07:21 -04:00
|
|
|
PROTOPT_SSL | PROTOPT_DUAL | PROTOPT_CLOSEACTION |
|
2011-11-24 17:28:54 -05:00
|
|
|
PROTOPT_NEEDSPWD | PROTOPT_NOURLQUERY /* flags */
|
2007-10-12 09:36:37 -04:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef CURL_DISABLE_HTTP
|
|
|
|
/*
|
|
|
|
* HTTP-proxyed FTP protocol handler.
|
|
|
|
*/
|
|
|
|
|
2010-01-25 18:41:02 -05:00
|
|
|
static const struct Curl_handler Curl_handler_ftp_proxy = {
|
2007-10-12 09:36:37 -04:00
|
|
|
"FTP", /* scheme */
|
2007-10-17 12:58:32 -04:00
|
|
|
ZERO_NULL, /* setup_connection */
|
2007-10-12 09:36:37 -04:00
|
|
|
Curl_http, /* do_it */
|
|
|
|
Curl_http_done, /* done */
|
2007-10-17 12:58:32 -04:00
|
|
|
ZERO_NULL, /* do_more */
|
|
|
|
ZERO_NULL, /* connect_it */
|
|
|
|
ZERO_NULL, /* connecting */
|
|
|
|
ZERO_NULL, /* doing */
|
|
|
|
ZERO_NULL, /* proto_getsock */
|
|
|
|
ZERO_NULL, /* doing_getsock */
|
2011-10-21 17:36:54 -04:00
|
|
|
ZERO_NULL, /* domore_getsock */
|
2008-12-19 16:14:52 -05:00
|
|
|
ZERO_NULL, /* perform_getsock */
|
2007-10-17 12:58:32 -04:00
|
|
|
ZERO_NULL, /* disconnect */
|
2011-05-05 10:27:03 -04:00
|
|
|
ZERO_NULL, /* readwrite */
|
2007-10-12 09:36:37 -04:00
|
|
|
PORT_FTP, /* defport */
|
2011-03-14 17:52:14 -04:00
|
|
|
CURLPROTO_HTTP, /* protocol */
|
2011-03-14 17:22:22 -04:00
|
|
|
PROTOPT_NONE /* flags */
|
2007-10-12 09:36:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-10-12 14:49:14 -04:00
|
|
|
#ifdef USE_SSL
|
2007-10-12 09:36:37 -04:00
|
|
|
/*
|
|
|
|
* HTTP-proxyed FTPS protocol handler.
|
|
|
|
*/
|
|
|
|
|
2010-01-25 18:41:02 -05:00
|
|
|
static const struct Curl_handler Curl_handler_ftps_proxy = {
|
2007-10-12 09:36:37 -04:00
|
|
|
"FTPS", /* scheme */
|
2007-10-17 12:58:32 -04:00
|
|
|
ZERO_NULL, /* setup_connection */
|
2007-10-12 09:36:37 -04:00
|
|
|
Curl_http, /* do_it */
|
|
|
|
Curl_http_done, /* done */
|
2007-10-17 12:58:32 -04:00
|
|
|
ZERO_NULL, /* do_more */
|
|
|
|
ZERO_NULL, /* connect_it */
|
|
|
|
ZERO_NULL, /* connecting */
|
|
|
|
ZERO_NULL, /* doing */
|
|
|
|
ZERO_NULL, /* proto_getsock */
|
|
|
|
ZERO_NULL, /* doing_getsock */
|
2011-10-21 17:36:54 -04:00
|
|
|
ZERO_NULL, /* domore_getsock */
|
2008-12-19 16:14:52 -05:00
|
|
|
ZERO_NULL, /* perform_getsock */
|
2007-10-17 12:58:32 -04:00
|
|
|
ZERO_NULL, /* disconnect */
|
2011-05-05 10:27:03 -04:00
|
|
|
ZERO_NULL, /* readwrite */
|
2007-10-12 09:36:37 -04:00
|
|
|
PORT_FTPS, /* defport */
|
2011-03-14 17:52:14 -04:00
|
|
|
CURLPROTO_HTTP, /* protocol */
|
2011-03-14 17:22:22 -04:00
|
|
|
PROTOPT_NONE /* flags */
|
2007-10-12 09:36:37 -04:00
|
|
|
};
|
2007-10-12 14:49:14 -04:00
|
|
|
#endif
|
2007-10-12 09:36:37 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2007-08-17 18:22:43 -04:00
|
|
|
/*
|
|
|
|
* NOTE: back in the old days, we added code in the FTP code that made NOBODY
|
|
|
|
* requests on files respond with headers passed to the client/stdout that
|
|
|
|
* looked like HTTP ones.
|
|
|
|
*
|
|
|
|
* This approach is not very elegant, it causes confusion and is error-prone.
|
|
|
|
* It is subject for removal at the next (or at least a future) soname bump.
|
|
|
|
* Until then you can test the effects of the removal by undefining the
|
|
|
|
* following define named CURL_FTP_HTTPSTYLE_HEAD.
|
|
|
|
*/
|
|
|
|
#define CURL_FTP_HTTPSTYLE_HEAD 1
|
|
|
|
|
2007-10-24 17:14:11 -04:00
|
|
|
static void freedirs(struct ftp_conn *ftpc)
|
2003-08-05 09:04:10 -04:00
|
|
|
{
|
|
|
|
int i;
|
2006-09-07 17:49:20 -04:00
|
|
|
if(ftpc->dirs) {
|
2011-07-04 16:10:32 -04:00
|
|
|
for(i=0; i < ftpc->dirdepth; i++) {
|
2006-09-07 17:49:20 -04:00
|
|
|
if(ftpc->dirs[i]) {
|
|
|
|
free(ftpc->dirs[i]);
|
|
|
|
ftpc->dirs[i]=NULL;
|
2004-04-15 03:52:39 -04:00
|
|
|
}
|
|
|
|
}
|
2006-09-07 17:49:20 -04:00
|
|
|
free(ftpc->dirs);
|
|
|
|
ftpc->dirs = NULL;
|
2008-07-07 16:37:07 -04:00
|
|
|
ftpc->dirdepth = 0;
|
2004-04-15 03:52:39 -04:00
|
|
|
}
|
2007-10-22 11:05:35 -04:00
|
|
|
if(ftpc->file) {
|
|
|
|
free(ftpc->file);
|
|
|
|
ftpc->file = NULL;
|
2003-08-05 09:04:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-07 17:50:47 -04:00
|
|
|
/* Returns non-zero if the given string contains CR (\r) or LF (\n),
|
|
|
|
which are not allowed within RFC 959 <string>.
|
|
|
|
Note: The input string is in the client's encoding which might
|
|
|
|
not be ASCII, so escape sequences \r & \n must be used instead
|
|
|
|
of hex values 0x0d & 0x0a.
|
|
|
|
*/
|
2005-01-19 16:56:02 -05:00
|
|
|
static bool isBadFtpString(const char *string)
|
|
|
|
{
|
2011-09-05 14:46:09 -04:00
|
|
|
return ((NULL != strchr(string, '\r')) ||
|
|
|
|
(NULL != strchr(string, '\n'))) ? TRUE : FALSE;
|
2005-01-19 16:56:02 -05:00
|
|
|
}
|
|
|
|
|
2001-11-01 07:47:22 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
2011-12-19 08:35:20 -05:00
|
|
|
* AcceptServerConnect()
|
2001-11-01 07:47:22 -05:00
|
|
|
*
|
2011-12-19 08:35:20 -05:00
|
|
|
* After connection request is received from the server this function is
|
|
|
|
* called to accept the connection and close the listening socket
|
2001-11-01 07:47:22 -05:00
|
|
|
*
|
|
|
|
*/
|
2011-12-19 08:35:20 -05:00
|
|
|
static CURLcode AcceptServerConnect(struct connectdata *conn)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
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];
|
2009-11-26 14:07:54 -05:00
|
|
|
curl_socket_t s = CURL_SOCKET_BAD;
|
2006-08-22 17:21:01 -04:00
|
|
|
#ifdef ENABLE_IPV6
|
2009-11-26 14:07:54 -05:00
|
|
|
struct Curl_sockaddr_storage add;
|
2006-08-22 17:21:01 -04:00
|
|
|
#else
|
2009-11-26 14:07:54 -05:00
|
|
|
struct sockaddr_in add;
|
2006-08-22 17:21:01 -04:00
|
|
|
#endif
|
2009-11-26 14:07:54 -05:00
|
|
|
curl_socklen_t size = (curl_socklen_t) sizeof(add);
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2011-12-19 08:35:20 -05:00
|
|
|
if(0 == getsockname(sock, (struct sockaddr *) &add, &size)) {
|
|
|
|
size = sizeof(add);
|
|
|
|
|
|
|
|
s=accept(sock, (struct sockaddr *) &add, &size);
|
|
|
|
}
|
|
|
|
Curl_closesocket(conn, sock); /* close the first socket */
|
|
|
|
|
|
|
|
if(CURL_SOCKET_BAD == s) {
|
|
|
|
failf(data, "Error accept()ing server connect");
|
|
|
|
return CURLE_FTP_PORT_FAILED;
|
|
|
|
}
|
|
|
|
infof(data, "Connection accepted from server\n");
|
|
|
|
|
|
|
|
conn->sock[SECONDARYSOCKET] = s;
|
|
|
|
curlx_nonblock(s, TRUE); /* enable non-blocking */
|
|
|
|
conn->sock_accepted[SECONDARYSOCKET] = TRUE;
|
|
|
|
return CURLE_OK;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-12-20 14:55:54 -05:00
|
|
|
/*
|
|
|
|
* ftp_timeleft_accept() returns the amount of milliseconds left allowed for
|
|
|
|
* waiting server to connect. If the value is negative, the timeout time has
|
|
|
|
* already elapsed.
|
|
|
|
*
|
|
|
|
* The start time is stored in progress.t_acceptdata - as set with
|
|
|
|
* Curl_pgrsTime(..., TIMER_STARTACCEPT);
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static long ftp_timeleft_accept(struct SessionHandle *data)
|
|
|
|
{
|
|
|
|
long timeout_ms = DEFAULT_ACCEPT_TIMEOUT;
|
|
|
|
long other;
|
|
|
|
struct timeval now;
|
|
|
|
|
|
|
|
if(data->set.accepttimeout > 0)
|
|
|
|
timeout_ms = data->set.accepttimeout;
|
|
|
|
|
|
|
|
now = Curl_tvnow();
|
|
|
|
|
|
|
|
/* check if the generic timeout possibly is set shorter */
|
|
|
|
other = Curl_timeleft(data, &now, FALSE);
|
|
|
|
if(other && (other < timeout_ms))
|
|
|
|
/* note that this also works fine for when other happens to be negative
|
|
|
|
due to it already having elapsed */
|
|
|
|
timeout_ms = other;
|
|
|
|
else {
|
|
|
|
/* subtract elapsed time */
|
|
|
|
timeout_ms -= Curl_tvdiff(now, data->progress.t_acceptdata);
|
|
|
|
if(!timeout_ms)
|
|
|
|
/* avoid returning 0 as that means no timeout! */
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return timeout_ms;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-19 08:35:20 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* ReceivedServerConnect()
|
|
|
|
*
|
|
|
|
* After allowing server to connect to us from data port, this function
|
|
|
|
* checks both data connection for connection establishment and ctrl
|
|
|
|
* connection for a negative response regarding a failure in connecting
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static CURLcode ReceivedServerConnect(struct connectdata* conn, bool* received)
|
|
|
|
{
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
curl_socket_t ctrl_sock = conn->sock[FIRSTSOCKET];
|
|
|
|
curl_socket_t data_sock = conn->sock[SECONDARYSOCKET];
|
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
|
|
|
struct pingpong *pp = &ftpc->pp;
|
|
|
|
int result;
|
|
|
|
long timeout_ms;
|
|
|
|
ssize_t nread;
|
|
|
|
int ftpcode;
|
|
|
|
|
|
|
|
*received = FALSE;
|
|
|
|
|
2011-12-20 14:55:54 -05:00
|
|
|
timeout_ms = ftp_timeleft_accept(data);
|
2011-12-19 08:35:20 -05:00
|
|
|
infof(data, "Checking for server connect\n");
|
|
|
|
if(timeout_ms < 0) {
|
|
|
|
/* if a timeout was already reached, bail out */
|
|
|
|
failf(data, "Accept timeout occurred while waiting server connect");
|
|
|
|
return CURLE_FTP_ACCEPT_TIMEOUT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* First check whether there is a cached response from server */
|
|
|
|
if(pp->cache_size && pp->cache && pp->cache[0] > '3') {
|
|
|
|
/* Data connection could not be established, let's return */
|
2012-01-16 15:14:05 -05:00
|
|
|
infof(data, "There is negative response in cache while serv connect\n");
|
2011-12-19 08:35:20 -05:00
|
|
|
Curl_GetFTPResponse(&nread, conn, &ftpcode);
|
|
|
|
return CURLE_FTP_ACCEPT_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = Curl_socket_check(ctrl_sock, data_sock, CURL_SOCKET_BAD, 0);
|
|
|
|
|
|
|
|
/* see if the connection request is already here */
|
|
|
|
switch (result) {
|
|
|
|
case -1: /* error */
|
|
|
|
/* let's die here */
|
|
|
|
failf(data, "Error while waiting for server connect");
|
|
|
|
return CURLE_FTP_ACCEPT_FAILED;
|
|
|
|
case 0: /* Server connect is not received yet */
|
|
|
|
break; /* loop */
|
|
|
|
default:
|
|
|
|
|
|
|
|
if(result & CURL_CSELECT_IN2) {
|
|
|
|
infof(data, "Ready to accept data connection from server\n");
|
|
|
|
*received = TRUE;
|
|
|
|
}
|
|
|
|
else if(result & CURL_CSELECT_IN) {
|
|
|
|
infof(data, "Ctrl conn has data while waiting for data conn\n");
|
|
|
|
Curl_GetFTPResponse(&nread, conn, &ftpcode);
|
|
|
|
|
|
|
|
if(ftpcode/100 > 3)
|
|
|
|
return CURLE_FTP_ACCEPT_FAILED;
|
|
|
|
|
|
|
|
return CURLE_FTP_WEIRD_SERVER_REPLY;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
} /* switch() */
|
|
|
|
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* InitiateTransfer()
|
|
|
|
*
|
|
|
|
* After connection from server is accepted this function is called to
|
|
|
|
* setup transfer parameters and initiate the data transfer.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static CURLcode InitiateTransfer(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
struct FTP *ftp = data->state.proto.ftp;
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(conn->proto.ftpc.state_saved == FTP_STOR) {
|
|
|
|
*(ftp->bytecountp)=0;
|
|
|
|
|
|
|
|
/* When we know we're uploading a specified file, we can get the file
|
|
|
|
size prior to the actual upload. */
|
|
|
|
|
|
|
|
Curl_pgrsSetUploadSize(data, data->set.infilesize);
|
|
|
|
|
|
|
|
/* set the SO_SNDBUF for the secondary socket for those who need it */
|
|
|
|
Curl_sndbufset(conn->sock[SECONDARYSOCKET]);
|
|
|
|
|
|
|
|
Curl_setup_transfer(conn, -1, -1, FALSE, NULL, /* no download */
|
|
|
|
SECONDARYSOCKET, ftp->bytecountp);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* FTP download: */
|
|
|
|
Curl_setup_transfer(conn, SECONDARYSOCKET,
|
|
|
|
conn->proto.ftpc.retr_size_saved, FALSE,
|
|
|
|
ftp->bytecountp, -1, NULL); /* no upload here */
|
|
|
|
}
|
|
|
|
|
|
|
|
conn->proto.ftpc.pp.pending_resp = TRUE; /* expect server response */
|
|
|
|
state(conn, FTP_STOP);
|
|
|
|
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
2009-11-26 14:07:54 -05:00
|
|
|
|
2011-12-19 08:35:20 -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 for easy interface
|
|
|
|
* - will check whether data connection is established if so it is accepted
|
|
|
|
* for multi interface
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static CURLcode AllowServerConnect(struct connectdata *conn, bool *connected)
|
|
|
|
{
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
long timeout_ms;
|
|
|
|
long interval_ms;
|
|
|
|
CURLcode ret = CURLE_OK;
|
|
|
|
|
|
|
|
*connected = FALSE;
|
|
|
|
infof(data, "Preparing for accepting server on data port\n");
|
|
|
|
|
|
|
|
/* Save the time we start accepting server connect */
|
|
|
|
Curl_pgrsTime(data, TIMER_STARTACCEPT);
|
|
|
|
|
|
|
|
for(;;) {
|
2011-12-20 14:55:54 -05:00
|
|
|
timeout_ms = ftp_timeleft_accept(data);
|
2010-09-18 17:08:32 -04:00
|
|
|
if(timeout_ms < 0) {
|
2009-11-26 14:07:54 -05:00
|
|
|
/* if a timeout was already reached, bail out */
|
2011-12-19 08:35:20 -05:00
|
|
|
failf(data, "Accept timeout occurred while waiting server connect");
|
|
|
|
return CURLE_FTP_ACCEPT_TIMEOUT;
|
2009-11-26 14:07:54 -05:00
|
|
|
}
|
|
|
|
|
2011-12-19 08:35:20 -05:00
|
|
|
/* see if the connection request is already here */
|
|
|
|
ret = ReceivedServerConnect(conn, connected);
|
|
|
|
if(ret)
|
|
|
|
return ret;
|
2009-11-26 14:07:54 -05:00
|
|
|
|
2011-12-19 08:35:20 -05:00
|
|
|
if(*connected) {
|
|
|
|
ret = AcceptServerConnect(conn);
|
|
|
|
if(ret)
|
|
|
|
return ret;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2011-12-19 08:35:20 -05:00
|
|
|
ret = InitiateTransfer(conn);
|
|
|
|
if(ret)
|
|
|
|
return ret;
|
2000-12-18 11:13:37 -05:00
|
|
|
|
2011-12-19 08:35:20 -05:00
|
|
|
break; /* connection is accepted, break the loop */
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if(data->state.used_interface == Curl_if_easy) {
|
|
|
|
interval_ms = 1000;
|
|
|
|
if(timeout_ms < interval_ms)
|
|
|
|
interval_ms = timeout_ms;
|
|
|
|
|
|
|
|
/* sleep for 1 second and then continue */
|
|
|
|
Curl_socket_ready(CURL_SOCKET_BAD, CURL_SOCKET_BAD, interval_ms);
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2011-12-19 08:35:20 -05:00
|
|
|
else {
|
|
|
|
/* Add timeout to multi handle and break out of the loop */
|
|
|
|
if(ret == CURLE_OK && *connected == FALSE) {
|
|
|
|
if(data->set.accepttimeout > 0)
|
|
|
|
Curl_expire(data, data->set.accepttimeout);
|
|
|
|
else
|
|
|
|
Curl_expire(data, DEFAULT_ACCEPT_TIMEOUT);
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2011-12-19 08:35:20 -05:00
|
|
|
break; /* connection was not accepted immediately */
|
|
|
|
}
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2011-12-19 08:35:20 -05:00
|
|
|
|
|
|
|
return ret;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
2007-08-22 10:18:06 -04:00
|
|
|
/* macro to check for a three-digit ftp status code at the start of the
|
|
|
|
given string */
|
2009-12-12 16:54:01 -05:00
|
|
|
#define STATUSCODE(line) (ISDIGIT(line[0]) && ISDIGIT(line[1]) && \
|
|
|
|
ISDIGIT(line[2]))
|
2007-08-22 10:18:06 -04:00
|
|
|
|
2005-03-29 06:35:25 -05:00
|
|
|
/* macro to check for the last line in an FTP server response */
|
2007-08-22 10:18:06 -04:00
|
|
|
#define LASTLINE(line) (STATUSCODE(line) && (' ' == line[3]))
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
static int ftp_endofresp(struct pingpong *pp,
|
|
|
|
int *code)
|
|
|
|
{
|
|
|
|
char *line = pp->linestart_resp;
|
|
|
|
size_t len = pp->nread_resp;
|
|
|
|
|
|
|
|
if((len > 3) && LASTLINE(line)) {
|
2010-12-01 17:33:43 -05:00
|
|
|
*code = curlx_sltosi(strtol(line, NULL, 10));
|
2009-12-12 16:54:01 -05:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
static CURLcode ftp_readresp(curl_socket_t sockfd,
|
2009-12-12 16:54:01 -05:00
|
|
|
struct pingpong *pp,
|
2005-02-09 08:06:40 -05:00
|
|
|
int *ftpcode, /* return the ftp-code if done */
|
|
|
|
size_t *size) /* size of the response */
|
|
|
|
{
|
2009-12-12 16:54:01 -05:00
|
|
|
struct connectdata *conn = pp->conn;
|
2009-12-14 09:02:43 -05:00
|
|
|
#if defined(HAVE_KRB4) || defined(HAVE_GSSAPI)
|
2005-02-09 08:06:40 -05:00
|
|
|
struct SessionHandle *data = conn->data;
|
2008-08-11 19:16:08 -04:00
|
|
|
char * const buf = data->state.buffer;
|
2009-12-14 09:02:43 -05:00
|
|
|
#endif
|
2005-02-09 08:06:40 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2009-12-12 16:54:01 -05:00
|
|
|
int code;
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
result = Curl_pp_readresp(sockfd, pp, &code, size);
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2007-07-01 18:01:18 -04:00
|
|
|
#if defined(HAVE_KRB4) || defined(HAVE_GSSAPI)
|
2005-02-09 08:06:40 -05:00
|
|
|
/* handle the security-oriented responses 6xx ***/
|
|
|
|
/* FIXME: some errorchecking perhaps... ***/
|
|
|
|
switch(code) {
|
|
|
|
case 631:
|
2010-11-13 17:42:34 -05:00
|
|
|
code = Curl_sec_read_msg(conn, buf, PROT_SAFE);
|
2005-02-09 08:06:40 -05:00
|
|
|
break;
|
|
|
|
case 632:
|
2010-11-13 17:42:34 -05:00
|
|
|
code = Curl_sec_read_msg(conn, buf, PROT_PRIVATE);
|
2005-02-09 08:06:40 -05:00
|
|
|
break;
|
|
|
|
case 633:
|
2010-11-13 17:42:34 -05:00
|
|
|
code = Curl_sec_read_msg(conn, buf, PROT_CONFIDENTIAL);
|
2005-02-09 08:06:40 -05:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* normal ftp stuff we pass through! */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* store the latest code for later retrieval */
|
|
|
|
conn->data->info.httpcode=code;
|
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
if(ftpcode)
|
|
|
|
*ftpcode = code;
|
2009-02-20 03:16:03 -05:00
|
|
|
|
2010-11-09 11:04:04 -05:00
|
|
|
if(421 == code)
|
|
|
|
/* 421 means "Service not available, closing control connection." and FTP
|
|
|
|
* servers use it to signal that idle session timeout has been exceeded.
|
|
|
|
* If we ignored the response, it could end up hanging in some cases. */
|
|
|
|
return CURLE_OPERATION_TIMEDOUT;
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
/* --- parse FTP server responses --- */
|
|
|
|
|
2001-08-23 02:10:01 -04:00
|
|
|
/*
|
2007-08-30 10:06:00 -04:00
|
|
|
* Curl_GetFTPResponse() is a BLOCKING function to read the full response
|
|
|
|
* from a server after a command.
|
|
|
|
*
|
2001-08-23 02:10:01 -04:00
|
|
|
*/
|
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];
|
2007-02-05 17:51:32 -05:00
|
|
|
long timeout; /* timeout in milliseconds */
|
2007-02-06 13:06:37 -05:00
|
|
|
long interval_ms;
|
2001-08-30 18:48:34 -04:00
|
|
|
struct SessionHandle *data = conn->data;
|
2002-12-03 05:25:31 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2006-09-07 17:49:20 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2009-12-12 16:54:01 -05:00
|
|
|
struct pingpong *pp = &ftpc->pp;
|
2007-08-30 10:06:00 -04:00
|
|
|
size_t nread;
|
2007-09-05 17:41:07 -04:00
|
|
|
int cache_skip=0;
|
2008-05-07 17:02:21 -04:00
|
|
|
int value_to_be_ignored=0;
|
2001-12-03 08:48:59 -05:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ftpcode)
|
2001-09-04 22:49:04 -04:00
|
|
|
*ftpcode = 0; /* 0 for errors */
|
2008-05-07 17:02:21 -04:00
|
|
|
else
|
|
|
|
/* make the pointer point to something for the rest of this function */
|
|
|
|
ftpcode = &value_to_be_ignored;
|
2001-04-26 06:29:24 -04:00
|
|
|
|
2002-12-04 03:56:55 -05:00
|
|
|
*nreadp=0;
|
2001-04-26 06:29:24 -04:00
|
|
|
|
2007-08-30 10:06:00 -04:00
|
|
|
while(!*ftpcode && !result) {
|
2002-04-27 09:24:06 -04:00
|
|
|
/* check and reset timeout value every lap */
|
2009-12-12 16:54:01 -05:00
|
|
|
timeout = Curl_pp_state_timeout(pp);
|
2002-12-03 05:25:31 -05:00
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2009-11-26 14:07:54 -05:00
|
|
|
interval_ms = 1000; /* use 1 second timeout intervals */
|
2007-08-30 10:06:00 -04:00
|
|
|
if(timeout < interval_ms)
|
|
|
|
interval_ms = timeout;
|
|
|
|
|
2007-09-05 17:41:07 -04:00
|
|
|
/*
|
|
|
|
* Since this function is blocking, we need to wait here for input on the
|
|
|
|
* connection and only then we call the response reading function. We do
|
|
|
|
* timeout at least every second to make the timeout check run.
|
|
|
|
*
|
|
|
|
* A caution here is that the ftp_readresp() function has a cache that may
|
|
|
|
* contain pieces of a response from the previous invoke and we need to
|
|
|
|
* make sure we don't just wait for input while there is unhandled data in
|
|
|
|
* that cache. But also, if the cache is there, we call ftp_readresp() and
|
|
|
|
* the cache wasn't good enough to continue we must not just busy-loop
|
|
|
|
* around this function.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
if(pp->cache && (cache_skip < 2)) {
|
2007-09-05 17:41:07 -04:00
|
|
|
/*
|
|
|
|
* There's a cache left since before. We then skipping the wait for
|
|
|
|
* socket action, unless this is the same cache like the previous round
|
|
|
|
* as then the cache was deemed not enough to act on and we then need to
|
|
|
|
* wait for more data anyway.
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
else {
|
2011-06-04 15:19:14 -04:00
|
|
|
switch (Curl_socket_ready(sockfd, CURL_SOCKET_BAD, interval_ms)) {
|
2007-09-05 17:41:07 -04:00
|
|
|
case -1: /* select() error, stop reading */
|
|
|
|
failf(data, "FTP response aborted due to select/poll error: %d",
|
|
|
|
SOCKERRNO);
|
|
|
|
return CURLE_RECV_ERROR;
|
|
|
|
|
|
|
|
case 0: /* timeout */
|
|
|
|
if(Curl_pgrsUpdate(conn))
|
|
|
|
return CURLE_ABORTED_BY_CALLBACK;
|
|
|
|
continue; /* just continue in our loop for the timeout duration */
|
|
|
|
|
|
|
|
default: /* for clarity */
|
|
|
|
break;
|
|
|
|
}
|
2002-04-27 09:09:37 -04:00
|
|
|
}
|
2009-12-12 16:54:01 -05:00
|
|
|
result = ftp_readresp(sockfd, pp, ftpcode, &nread);
|
2007-08-30 10:06:00 -04:00
|
|
|
if(result)
|
|
|
|
break;
|
2001-12-03 08:48:59 -05:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
if(!nread && pp->cache)
|
2007-09-05 17:41:07 -04:00
|
|
|
/* bump cache skip counter as on repeated skips we must wait for more
|
|
|
|
data */
|
|
|
|
cache_skip++;
|
|
|
|
else
|
|
|
|
/* when we got data or there is no cache left, we reset the cache skip
|
|
|
|
counter */
|
|
|
|
cache_skip=0;
|
|
|
|
|
2007-08-30 10:06:00 -04:00
|
|
|
*nreadp += nread;
|
2007-09-05 17:41:07 -04:00
|
|
|
|
2001-04-26 06:29:24 -04:00
|
|
|
} /* while there's buffer left and loop is requested */
|
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
pp->pending_resp = FALSE;
|
2009-02-20 03:16:03 -05:00
|
|
|
|
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,
|
2007-09-26 21:45:22 -04:00
|
|
|
ftpstate newstate)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2009-06-09 22:49:42 -04:00
|
|
|
#if defined(DEBUGBUILD) && !defined(CURL_DISABLE_VERBOSE_STRINGS)
|
2005-02-09 08:06:40 -05:00
|
|
|
/* for debug purposes */
|
2007-07-20 22:08:17 -04:00
|
|
|
static const char * const names[]={
|
2005-02-09 08:06:40 -05:00
|
|
|
"STOP",
|
|
|
|
"WAIT220",
|
|
|
|
"AUTH",
|
|
|
|
"USER",
|
|
|
|
"PASS",
|
|
|
|
"ACCT",
|
|
|
|
"PBSZ",
|
|
|
|
"PROT",
|
2007-01-05 18:11:14 -05:00
|
|
|
"CCC",
|
2005-02-09 08:06:40 -05:00
|
|
|
"PWD",
|
2009-08-24 08:57:25 -04:00
|
|
|
"SYST",
|
|
|
|
"NAMEFMT",
|
2005-02-09 08:06:40 -05:00
|
|
|
"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",
|
2010-01-01 09:44:44 -05:00
|
|
|
"PRET",
|
2005-02-09 08:06:40 -05:00
|
|
|
"PASV",
|
|
|
|
"LIST",
|
|
|
|
"RETR",
|
|
|
|
"STOR",
|
|
|
|
"QUIT"
|
2004-12-14 21:32:04 -05:00
|
|
|
};
|
2000-09-21 04:47:20 -04:00
|
|
|
#endif
|
2006-09-07 17:49:20 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2009-06-09 22:49:42 -04:00
|
|
|
#if defined(DEBUGBUILD) && !defined(CURL_DISABLE_VERBOSE_STRINGS)
|
2007-09-26 21:45:22 -04:00
|
|
|
if(ftpc->state != newstate)
|
2005-02-09 08:06:40 -05:00
|
|
|
infof(conn->data, "FTP %p state change from %s to %s\n",
|
2007-09-26 21:45:22 -04:00
|
|
|
ftpc, names[ftpc->state], names[newstate]);
|
2005-02-09 08:06:40 -05:00
|
|
|
#endif
|
2007-09-26 21:45:22 -04:00
|
|
|
ftpc->state = newstate;
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
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;
|
2007-11-24 18:16:55 -05:00
|
|
|
struct FTP *ftp = conn->data->state.proto.ftp;
|
2005-02-09 08:06:40 -05:00
|
|
|
/* send USER */
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&conn->proto.ftpc.pp, "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);
|
2006-07-25 18:45:21 -04:00
|
|
|
conn->data->state.ftp_trying_alternative = FALSE;
|
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 */
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&conn->proto.ftpc.pp, "PWD", NULL);
|
2005-02-09 08:06:40 -05:00
|
|
|
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 */
|
2007-12-08 17:50:55 -05:00
|
|
|
static int ftp_getsock(struct connectdata *conn,
|
2009-12-12 16:54:01 -05:00
|
|
|
curl_socket_t *socks,
|
|
|
|
int numsocks)
|
2005-02-09 08:06:40 -05:00
|
|
|
{
|
2009-12-12 16:54:01 -05:00
|
|
|
return Curl_pp_getsock(&conn->proto.ftpc.pp, socks, numsocks);
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2011-10-21 17:36:54 -04:00
|
|
|
/* For the FTP "DO_MORE" phase only */
|
|
|
|
static int ftp_domore_getsock(struct connectdata *conn, curl_socket_t *socks,
|
|
|
|
int numsocks)
|
|
|
|
{
|
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
|
|
|
|
|
|
|
if(!numsocks)
|
|
|
|
return GETSOCK_BLANK;
|
|
|
|
|
|
|
|
/* When in DO_MORE state, we could be either waiting for us to connect to a
|
|
|
|
remote site, or we could wait for that site to connect to us. Or just
|
|
|
|
handle ordinary commands.
|
|
|
|
|
|
|
|
When waiting for a connect, we will be in FTP_STOP state and then we wait
|
|
|
|
for the secondary socket to become writeable. If we're in another state,
|
|
|
|
we're still handling commands on the control (primary) connection.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
switch(ftpc->state) {
|
|
|
|
case FTP_STOP:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return Curl_pp_getsock(&conn->proto.ftpc.pp, socks, numsocks);
|
|
|
|
}
|
|
|
|
|
|
|
|
socks[0] = conn->sock[SECONDARYSOCKET];
|
2011-12-20 07:06:26 -05:00
|
|
|
if(ftpc->wait_data_conn) {
|
2011-12-19 08:35:20 -05:00
|
|
|
socks[1] = conn->sock[FIRSTSOCKET];
|
|
|
|
return GETSOCK_READSOCK(0) | GETSOCK_READSOCK(1);
|
|
|
|
}
|
2011-10-21 17:36:54 -04:00
|
|
|
|
|
|
|
return GETSOCK_READSOCK(0);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2009-01-19 14:09:39 -05:00
|
|
|
ftp_state_cwd() sends the range of CWD commands to the server to change to
|
2005-02-09 08:06:40 -05:00
|
|
|
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;
|
2006-09-07 17:49:20 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
if(ftpc->cwddone)
|
2005-02-09 08:06:40 -05:00
|
|
|
/* already done and fine */
|
|
|
|
result = ftp_state_post_cwd(conn);
|
|
|
|
else {
|
2009-02-17 04:07:25 -05:00
|
|
|
ftpc->count2 = 0; /* count2 counts failed CWDs */
|
|
|
|
|
|
|
|
/* count3 is set to allow a MKD to fail once. In the case when first CWD
|
|
|
|
fails and then MKD fails (due to another session raced it to create the
|
|
|
|
dir) this then allows for a second try to CWD to it */
|
|
|
|
ftpc->count3 = (conn->data->set.ftp_create_missing_dirs==2)?1:0;
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(conn->bits.reuse && ftpc->entrypath) {
|
2005-02-09 08:06:40 -05:00
|
|
|
/* 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: */
|
2006-09-07 17:49:20 -04:00
|
|
|
ftpc->count1 = 0; /* we count this as the first path, then we add one
|
2005-02-09 08:06:40 -05:00
|
|
|
for all upcoming ones in the ftp->dirs[] array */
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&conn->proto.ftpc.pp, "CWD %s", ftpc->entrypath);
|
2005-02-09 08:06:40 -05:00
|
|
|
state(conn, FTP_CWD);
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
else {
|
2006-09-07 17:49:20 -04:00
|
|
|
if(ftpc->dirdepth) {
|
|
|
|
ftpc->count1 = 1;
|
2005-02-09 08:06:40 -05:00
|
|
|
/* issue the first CWD, the rest is sent when the CWD responses are
|
|
|
|
received... */
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&conn->proto.ftpc.pp, "CWD %s", ftpc->dirs[ftpc->count1 -1]);
|
2005-02-09 08:06:40 -05:00
|
|
|
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
|
|
|
|
2006-01-19 18:52:03 -05:00
|
|
|
typedef enum {
|
|
|
|
EPRT,
|
|
|
|
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;
|
2006-09-07 17:49:20 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2005-02-09 08:06:40 -05:00
|
|
|
struct SessionHandle *data=conn->data;
|
|
|
|
curl_socket_t portsock= CURL_SOCKET_BAD;
|
2006-01-19 18:52:03 -05:00
|
|
|
char myhost[256] = "";
|
2003-12-01 05:14:39 -05:00
|
|
|
|
2005-11-12 17:10:42 -05:00
|
|
|
struct Curl_sockaddr_storage ss;
|
2008-10-30 14:12:08 -04:00
|
|
|
Curl_addrinfo *res, *ai;
|
2009-05-01 22:37:32 -04:00
|
|
|
curl_socklen_t sslen;
|
2005-02-09 08:06:40 -05:00
|
|
|
char hbuf[NI_MAXHOST];
|
2012-06-12 07:12:09 -04:00
|
|
|
struct sockaddr *sa=(struct sockaddr *)&ss;
|
|
|
|
struct sockaddr_in * const sa4 = (void *)sa;
|
|
|
|
#ifdef ENABLE_IPV6
|
|
|
|
struct sockaddr_in6 * const sa6 = (void *)sa;
|
|
|
|
#endif
|
2006-01-19 18:52:03 -05:00
|
|
|
char tmp[1024];
|
2008-10-22 01:46:29 -04:00
|
|
|
static const char mode[][5] = { "EPRT", "PORT" };
|
2005-02-09 08:06:40 -05:00
|
|
|
int rc;
|
|
|
|
int error;
|
2011-10-24 14:42:01 -04:00
|
|
|
char *host = NULL;
|
2009-06-29 16:46:01 -04:00
|
|
|
char *string_ftpport = data->set.str[STRING_FTPPORT];
|
2005-02-09 08:06:40 -05:00
|
|
|
struct Curl_dns_entry *h=NULL;
|
2009-06-29 16:46:01 -04:00
|
|
|
unsigned short port_min = 0;
|
|
|
|
unsigned short port_max = 0;
|
|
|
|
unsigned short port;
|
2011-11-06 10:53:07 -05:00
|
|
|
bool possibly_non_local = TRUE;
|
2006-01-19 18:52:03 -05:00
|
|
|
|
2009-06-29 16:46:01 -04:00
|
|
|
char *addr = NULL;
|
|
|
|
|
|
|
|
/* Step 1, figure out what is requested,
|
|
|
|
* accepted format :
|
|
|
|
* (ipv4|ipv6|domain|interface)?(:port(-range)?)?
|
|
|
|
*/
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2007-08-01 17:20:01 -04:00
|
|
|
if(data->set.str[STRING_FTPPORT] &&
|
|
|
|
(strlen(data->set.str[STRING_FTPPORT]) > 1)) {
|
2009-06-29 16:46:01 -04:00
|
|
|
|
|
|
|
#ifdef ENABLE_IPV6
|
|
|
|
size_t addrlen = INET6_ADDRSTRLEN > strlen(string_ftpport) ?
|
|
|
|
INET6_ADDRSTRLEN : strlen(string_ftpport);
|
|
|
|
#else
|
|
|
|
size_t addrlen = INET_ADDRSTRLEN > strlen(string_ftpport) ?
|
|
|
|
INET_ADDRSTRLEN : strlen(string_ftpport);
|
|
|
|
#endif
|
|
|
|
char *ip_start = string_ftpport;
|
|
|
|
char *ip_end = NULL;
|
|
|
|
char *port_start = NULL;
|
|
|
|
char *port_sep = NULL;
|
|
|
|
|
2009-08-10 22:30:53 -04:00
|
|
|
addr = calloc(addrlen+1, 1);
|
2011-04-20 09:17:42 -04:00
|
|
|
if(!addr)
|
2009-08-10 22:30:53 -04:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2009-06-29 16:46:01 -04:00
|
|
|
|
|
|
|
#ifdef ENABLE_IPV6
|
|
|
|
if(*string_ftpport == '[') {
|
|
|
|
/* [ipv6]:port(-range) */
|
|
|
|
ip_start = string_ftpport + 1;
|
|
|
|
if((ip_end = strchr(string_ftpport, ']')) != NULL )
|
|
|
|
strncpy(addr, ip_start, ip_end - ip_start);
|
2010-01-22 18:21:39 -05:00
|
|
|
}
|
|
|
|
else
|
2009-06-29 16:46:01 -04:00
|
|
|
#endif
|
2011-04-22 17:01:30 -04:00
|
|
|
if(*string_ftpport == ':') {
|
2009-06-29 16:46:01 -04:00
|
|
|
/* :port */
|
|
|
|
ip_end = string_ftpport;
|
2010-01-22 18:21:39 -05:00
|
|
|
}
|
2011-04-22 17:01:30 -04:00
|
|
|
else if((ip_end = strchr(string_ftpport, ':')) != NULL) {
|
2009-06-29 16:46:01 -04:00
|
|
|
/* either ipv6 or (ipv4|domain|interface):port(-range) */
|
|
|
|
#ifdef ENABLE_IPV6
|
2012-06-12 07:12:09 -04:00
|
|
|
if(Curl_inet_pton(AF_INET6, string_ftpport, sa6) == 1) {
|
2009-06-29 16:46:01 -04:00
|
|
|
/* ipv6 */
|
|
|
|
port_min = port_max = 0;
|
|
|
|
strcpy(addr, string_ftpport);
|
|
|
|
ip_end = NULL; /* this got no port ! */
|
2011-04-20 09:17:42 -04:00
|
|
|
}
|
|
|
|
else
|
2009-06-29 16:46:01 -04:00
|
|
|
#endif
|
|
|
|
/* (ipv4|domain|interface):port(-range) */
|
|
|
|
strncpy(addr, string_ftpport, ip_end - ip_start );
|
2010-01-22 18:21:39 -05:00
|
|
|
}
|
|
|
|
else
|
2009-06-29 16:46:01 -04:00
|
|
|
/* ipv4|interface */
|
|
|
|
strcpy(addr, string_ftpport);
|
|
|
|
|
|
|
|
/* parse the port */
|
2011-04-22 17:01:30 -04:00
|
|
|
if(ip_end != NULL) {
|
2009-06-29 16:46:01 -04:00
|
|
|
if((port_start = strchr(ip_end, ':')) != NULL) {
|
2010-02-23 19:03:06 -05:00
|
|
|
port_min = curlx_ultous(strtoul(port_start+1, NULL, 10));
|
2009-06-29 16:46:01 -04:00
|
|
|
if((port_sep = strchr(port_start, '-')) != NULL) {
|
2010-02-23 19:03:06 -05:00
|
|
|
port_max = curlx_ultous(strtoul(port_sep + 1, NULL, 10));
|
2009-06-29 16:46:01 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
port_max = port_min;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* correct errors like:
|
|
|
|
* :1234-1230
|
|
|
|
* :-4711 , in this case port_min is (unsigned)-1,
|
|
|
|
* therefore port_min > port_max for all cases
|
|
|
|
* but port_max = (unsigned)-1
|
|
|
|
*/
|
|
|
|
if(port_min > port_max )
|
|
|
|
port_min = port_max = 0;
|
|
|
|
|
|
|
|
|
|
|
|
if(*addr != '\0') {
|
|
|
|
/* attempt to get the address of the given interface name */
|
|
|
|
if(!Curl_if2ip(conn->ip_addr->ai_family, addr,
|
|
|
|
hbuf, sizeof(hbuf)))
|
|
|
|
/* not an interface, use the given string as host name instead */
|
|
|
|
host = addr;
|
|
|
|
else
|
|
|
|
host = hbuf; /* use the hbuf for host name */
|
2011-09-07 16:46:06 -04:00
|
|
|
}
|
|
|
|
else
|
2009-06-29 16:46:01 -04:00
|
|
|
/* there was only a port(-range) given, default the host */
|
|
|
|
host = NULL;
|
2005-02-09 08:06:40 -05:00
|
|
|
} /* 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);
|
2012-06-12 07:12:09 -04:00
|
|
|
if(getsockname(conn->sock[FIRSTSOCKET], sa, &sslen)) {
|
2006-09-08 18:17:39 -04:00
|
|
|
failf(data, "getsockname() failed: %s",
|
2007-02-16 13:19:35 -05:00
|
|
|
Curl_strerror(conn, SOCKERRNO) );
|
2011-10-24 14:42:01 -04:00
|
|
|
Curl_safefree(addr);
|
2005-02-09 08:06:40 -05:00
|
|
|
return CURLE_FTP_PORT_FAILED;
|
|
|
|
}
|
2012-06-12 07:12:09 -04:00
|
|
|
switch(sa->sa_family) {
|
2009-07-03 21:04:23 -04:00
|
|
|
#ifdef ENABLE_IPV6
|
2011-04-20 09:17:42 -04:00
|
|
|
case AF_INET6:
|
2012-06-12 07:12:09 -04:00
|
|
|
Curl_inet_ntop(sa->sa_family, &sa6->sin6_addr, hbuf, sizeof(hbuf));
|
2011-04-20 09:17:42 -04:00
|
|
|
break;
|
2009-07-03 21:04:23 -04:00
|
|
|
#endif
|
2011-04-20 09:17:42 -04:00
|
|
|
default:
|
2012-06-12 07:12:09 -04:00
|
|
|
Curl_inet_ntop(sa->sa_family, &sa4->sin_addr, hbuf, sizeof(hbuf));
|
2011-04-20 09:17:42 -04:00
|
|
|
break;
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
host = hbuf; /* use this host name */
|
2011-11-06 10:53:07 -05:00
|
|
|
possibly_non_local = FALSE; /* we know it is local now */
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
|
2009-06-29 16:46:01 -04:00
|
|
|
/* resolv ip/host to ip */
|
2005-02-09 08:06:40 -05:00
|
|
|
rc = Curl_resolv(conn, host, 0, &h);
|
|
|
|
if(rc == CURLRESOLV_PENDING)
|
2011-01-30 18:10:35 -05:00
|
|
|
(void)Curl_resolver_wait_resolv(conn, &h);
|
2005-02-09 08:06:40 -05:00
|
|
|
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! */
|
|
|
|
|
2011-04-20 09:17:42 -04:00
|
|
|
if(res == NULL) {
|
2011-10-04 10:24:50 -04:00
|
|
|
failf(data, "failed to resolve the address provided to PORT: %s", host);
|
2011-10-24 14:42:01 -04:00
|
|
|
Curl_safefree(addr);
|
2009-06-29 16:46:01 -04:00
|
|
|
return CURLE_FTP_PORT_FAILED;
|
|
|
|
}
|
2006-01-19 18:52:03 -05:00
|
|
|
|
2011-10-24 14:42:01 -04:00
|
|
|
Curl_safefree(addr);
|
|
|
|
host = NULL;
|
|
|
|
|
2006-01-19 18:52:03 -05:00
|
|
|
/* step 2, create a socket for the requested address */
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
portsock = CURL_SOCKET_BAD;
|
|
|
|
error = 0;
|
2011-04-20 09:17:42 -04:00
|
|
|
for(ai = res; ai; ai = ai->ai_next) {
|
2011-12-05 05:42:10 -05:00
|
|
|
result = Curl_socket(conn, ai, NULL, &portsock);
|
|
|
|
if(result) {
|
2007-02-16 13:19:35 -05:00
|
|
|
error = SOCKERRNO;
|
2005-02-09 08:06:40 -05:00
|
|
|
continue;
|
|
|
|
}
|
2006-01-19 18:52:03 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(!ai) {
|
|
|
|
failf(data, "socket failure: %s", Curl_strerror(conn, error));
|
|
|
|
return CURLE_FTP_PORT_FAILED;
|
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2006-01-19 18:52:03 -05:00
|
|
|
/* step 3, bind to a suitable local address */
|
|
|
|
|
2012-06-12 07:12:09 -04:00
|
|
|
memcpy(sa, ai->ai_addr, ai->ai_addrlen);
|
2009-06-29 16:46:01 -04:00
|
|
|
sslen = ai->ai_addrlen;
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2011-04-22 17:01:30 -04:00
|
|
|
for(port = port_min; port <= port_max;) {
|
2012-06-12 07:12:09 -04:00
|
|
|
if(sa->sa_family == AF_INET)
|
|
|
|
sa4->sin_port = htons(port);
|
2009-06-29 16:46:01 -04:00
|
|
|
#ifdef ENABLE_IPV6
|
2006-01-19 18:52:03 -05:00
|
|
|
else
|
2012-06-12 07:12:09 -04:00
|
|
|
sa6->sin6_port = htons(port);
|
2009-06-29 16:46:01 -04:00
|
|
|
#endif
|
|
|
|
/* Try binding the given address. */
|
2012-06-12 07:12:09 -04:00
|
|
|
if(bind(portsock, sa, sslen) ) {
|
2009-06-29 16:46:01 -04:00
|
|
|
/* It failed. */
|
2010-01-29 11:38:43 -05:00
|
|
|
error = SOCKERRNO;
|
2011-11-06 10:53:07 -05:00
|
|
|
if(possibly_non_local && (error == EADDRNOTAVAIL)) {
|
2010-02-02 03:48:58 -05:00
|
|
|
/* The requested bind address is not local. Use the address used for
|
|
|
|
* the control connection instead and restart the port loop
|
2009-06-29 16:46:01 -04:00
|
|
|
*/
|
2011-11-06 10:53:07 -05:00
|
|
|
|
2012-01-16 15:14:05 -05:00
|
|
|
infof(data, "bind(port=%hu) on non-local address failed: %s\n", port,
|
2010-01-29 11:38:43 -05:00
|
|
|
Curl_strerror(conn, error) );
|
2009-06-29 16:46:01 -04:00
|
|
|
|
|
|
|
sslen = sizeof(ss);
|
2012-06-12 07:12:09 -04:00
|
|
|
if(getsockname(conn->sock[FIRSTSOCKET], sa, &sslen)) {
|
2009-06-29 16:46:01 -04:00
|
|
|
failf(data, "getsockname() failed: %s",
|
|
|
|
Curl_strerror(conn, SOCKERRNO) );
|
2011-05-16 17:46:43 -04:00
|
|
|
Curl_closesocket(conn, portsock);
|
2009-06-29 16:46:01 -04:00
|
|
|
return CURLE_FTP_PORT_FAILED;
|
|
|
|
}
|
|
|
|
port = port_min;
|
2011-11-06 10:53:07 -05:00
|
|
|
possibly_non_local = FALSE; /* don't try this again */
|
2009-06-29 16:46:01 -04:00
|
|
|
continue;
|
2010-02-02 03:48:58 -05:00
|
|
|
}
|
|
|
|
else if(error != EADDRINUSE && error != EACCES) {
|
2010-02-04 14:44:31 -05:00
|
|
|
failf(data, "bind(port=%hu) failed: %s", port,
|
2010-01-29 11:38:43 -05:00
|
|
|
Curl_strerror(conn, error) );
|
2011-05-16 17:46:43 -04:00
|
|
|
Curl_closesocket(conn, portsock);
|
2009-06-29 16:46:01 -04:00
|
|
|
return CURLE_FTP_PORT_FAILED;
|
|
|
|
}
|
2010-01-22 18:21:39 -05:00
|
|
|
}
|
|
|
|
else
|
2009-06-29 16:46:01 -04:00
|
|
|
break;
|
2006-09-08 18:17:39 -04:00
|
|
|
|
2009-06-29 16:46:01 -04:00
|
|
|
port++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* maybe all ports were in use already*/
|
2011-04-20 09:17:42 -04:00
|
|
|
if(port > port_max) {
|
2009-06-29 16:46:01 -04:00
|
|
|
failf(data, "bind() failed, we ran out of ports!");
|
2011-05-16 17:46:43 -04:00
|
|
|
Curl_closesocket(conn, portsock);
|
2009-06-29 16:46:01 -04:00
|
|
|
return CURLE_FTP_PORT_FAILED;
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
|
2006-01-19 18:52:03 -05:00
|
|
|
/* get the name again after the bind() so that we can extract the
|
|
|
|
port number it uses now */
|
|
|
|
sslen = sizeof(ss);
|
2012-06-12 07:12:09 -04:00
|
|
|
if(getsockname(portsock, (struct sockaddr *)sa, &sslen)) {
|
2006-01-19 18:52:03 -05:00
|
|
|
failf(data, "getsockname() failed: %s",
|
2007-02-16 13:19:35 -05:00
|
|
|
Curl_strerror(conn, SOCKERRNO) );
|
2011-05-16 17:46:43 -04:00
|
|
|
Curl_closesocket(conn, portsock);
|
2005-02-09 08:06:40 -05:00
|
|
|
return CURLE_FTP_PORT_FAILED;
|
|
|
|
}
|
|
|
|
|
2006-01-19 18:52:03 -05:00
|
|
|
/* step 4, listen on the socket */
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(listen(portsock, 1)) {
|
2007-02-16 13:19:35 -05:00
|
|
|
failf(data, "socket failure: %s", Curl_strerror(conn, SOCKERRNO));
|
2011-05-16 17:46:43 -04:00
|
|
|
Curl_closesocket(conn, portsock);
|
2005-02-09 08:06:40 -05:00
|
|
|
return CURLE_FTP_PORT_FAILED;
|
|
|
|
}
|
|
|
|
|
2006-01-19 18:52:03 -05:00
|
|
|
/* step 5, send the proper FTP command */
|
|
|
|
|
|
|
|
/* get a plain printable version of the numerical address to work with
|
|
|
|
below */
|
|
|
|
Curl_printable_address(ai, myhost, sizeof(myhost));
|
|
|
|
|
2009-06-30 17:30:39 -04:00
|
|
|
#ifdef ENABLE_IPV6
|
2005-02-09 08:06:40 -05:00
|
|
|
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
|
|
|
|
|
2011-04-20 09:17:42 -04:00
|
|
|
for(; fcmd != DONE; fcmd++) {
|
2005-02-09 08:06:40 -05:00
|
|
|
|
|
|
|
if(!conn->bits.ftp_use_eprt && (EPRT == fcmd))
|
|
|
|
/* if disabled, goto next */
|
|
|
|
continue;
|
|
|
|
|
2012-06-12 07:12:09 -04:00
|
|
|
if((PORT == fcmd) && sa->sa_family != AF_INET)
|
2009-06-29 16:46:01 -04:00
|
|
|
/* PORT is ipv4 only */
|
|
|
|
continue;
|
|
|
|
|
2012-06-12 07:12:09 -04:00
|
|
|
switch (sa->sa_family) {
|
2005-02-09 08:06:40 -05:00
|
|
|
case AF_INET:
|
2012-06-12 07:12:09 -04:00
|
|
|
port = ntohs(sa4->sin_port);
|
2005-02-09 08:06:40 -05:00
|
|
|
break;
|
2009-06-30 17:30:39 -04:00
|
|
|
#ifdef ENABLE_IPV6
|
2005-02-09 08:06:40 -05:00
|
|
|
case AF_INET6:
|
2012-06-12 07:12:09 -04:00
|
|
|
port = ntohs(sa6->sin6_port);
|
2005-02-09 08:06:40 -05:00
|
|
|
break;
|
2009-06-30 17:30:39 -04:00
|
|
|
#endif
|
2005-02-09 08:06:40 -05:00
|
|
|
default:
|
2009-06-30 17:30:39 -04:00
|
|
|
continue; /* might as well skip this */
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(EPRT == fcmd) {
|
2006-01-19 18:52:03 -05:00
|
|
|
/*
|
|
|
|
* Two fine examples from RFC2428;
|
|
|
|
*
|
|
|
|
* EPRT |1|132.235.1.2|6275|
|
|
|
|
*
|
|
|
|
* EPRT |2|1080::8:800:200C:417A|5282|
|
|
|
|
*/
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2010-02-04 14:44:31 -05:00
|
|
|
result = Curl_pp_sendf(&ftpc->pp, "%s |%d|%s|%hu|", mode[fcmd],
|
2012-06-12 07:12:09 -04:00
|
|
|
sa->sa_family == AF_INET?1:2,
|
2009-12-12 16:54:01 -05:00
|
|
|
myhost, port);
|
2011-09-12 09:16:07 -04:00
|
|
|
if(result) {
|
2011-09-14 04:36:29 -04:00
|
|
|
failf(data, "Failure sending EPRT command: %s",
|
|
|
|
curl_easy_strerror(result));
|
2011-09-12 09:16:07 -04:00
|
|
|
Curl_closesocket(conn, portsock);
|
|
|
|
/* don't retry using PORT */
|
|
|
|
ftpc->count1 = PORT;
|
|
|
|
/* bail out */
|
|
|
|
state(conn, FTP_STOP);
|
2005-02-09 08:06:40 -05:00
|
|
|
return result;
|
2011-09-12 09:16:07 -04:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
break;
|
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
else if(PORT == fcmd) {
|
2006-01-19 18:52:03 -05:00
|
|
|
char *source = myhost;
|
|
|
|
char *dest = tmp;
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2006-01-19 18:52:03 -05:00
|
|
|
/* translate x.x.x.x to x,x,x,x */
|
|
|
|
while(source && *source) {
|
|
|
|
if(*source == '.')
|
|
|
|
*dest=',';
|
2005-02-09 08:06:40 -05:00
|
|
|
else
|
2006-01-19 18:52:03 -05:00
|
|
|
*dest = *source;
|
|
|
|
dest++;
|
|
|
|
source++;
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
2006-01-19 18:52:03 -05:00
|
|
|
*dest = 0;
|
2010-02-04 14:44:31 -05:00
|
|
|
snprintf(dest, 20, ",%d,%d", (int)(port>>8), (int)(port&0xff));
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
result = Curl_pp_sendf(&ftpc->pp, "%s %s", mode[fcmd], tmp);
|
2011-09-12 09:16:07 -04:00
|
|
|
if(result) {
|
2011-09-14 04:36:29 -04:00
|
|
|
failf(data, "Failure sending PORT command: %s",
|
|
|
|
curl_easy_strerror(result));
|
2011-09-12 09:16:07 -04:00
|
|
|
Curl_closesocket(conn, portsock);
|
|
|
|
/* bail out */
|
|
|
|
state(conn, FTP_STOP);
|
2005-02-09 08:06:40 -05:00
|
|
|
return result;
|
2011-09-12 09:16:07 -04:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* store which command was sent */
|
2006-09-07 17:49:20 -04:00
|
|
|
ftpc->count1 = fcmd;
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2011-09-09 23:05:27 -04:00
|
|
|
/* 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 */
|
|
|
|
if(CURL_SOCKET_BAD != conn->sock[SECONDARYSOCKET])
|
|
|
|
Curl_closesocket(conn, conn->sock[SECONDARYSOCKET]);
|
|
|
|
conn->sock[SECONDARYSOCKET] = portsock;
|
|
|
|
|
2006-12-05 08:49:29 -05:00
|
|
|
/* this tcpconnect assignment below is a hackish work-around to make the
|
|
|
|
multi interface with active FTP work - as it will not wait for a
|
|
|
|
(passive) connect in Curl_is_connected().
|
|
|
|
|
|
|
|
The *proper* fix is to make sure that the active connection from the
|
|
|
|
server is done in a non-blocking way. Currently, it is still BLOCKING.
|
|
|
|
*/
|
2011-08-18 17:35:15 -04:00
|
|
|
conn->bits.tcpconnect[SECONDARYSOCKET] = TRUE;
|
2006-12-05 08:49:29 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
state(conn, FTP_PORT);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CURLcode ftp_state_use_pasv(struct connectdata *conn)
|
|
|
|
{
|
2006-09-07 17:49:20 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2005-02-09 08:06:40 -05:00
|
|
|
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|)
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2008-10-22 01:46:29 -04:00
|
|
|
static const char mode[][5] = { "EPSV", "PASV" };
|
2005-02-09 08:06:40 -05:00
|
|
|
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;
|
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&ftpc->pp, "%s", mode[modeoff]);
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
ftpc->count1 = modeoff;
|
2005-02-09 08:06:40 -05:00
|
|
|
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;
|
2007-11-24 18:16:55 -05:00
|
|
|
struct FTP *ftp = conn->data->state.proto.ftp;
|
2005-02-09 08:06:40 -05:00
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
|
2007-09-26 08:00:01 -04:00
|
|
|
if(ftp->transfer != FTPTRANSFER_BODY) {
|
2005-02-09 08:06:40 -05:00
|
|
|
/* doesn't transfer any data */
|
2006-08-08 18:56:46 -04:00
|
|
|
|
|
|
|
/* still possibly do PRE QUOTE jobs */
|
|
|
|
state(conn, FTP_RETR_PREQUOTE);
|
|
|
|
result = ftp_state_quote(conn, TRUE, FTP_RETR_PREQUOTE);
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
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 */
|
2010-01-01 09:44:44 -05:00
|
|
|
if(data->set.ftp_use_pret) {
|
|
|
|
/* The user has requested that we send a PRET command
|
|
|
|
to prepare the server for the upcoming PASV */
|
|
|
|
if(!conn->proto.ftpc.file) {
|
2010-01-22 18:21:39 -05:00
|
|
|
PPSENDF(&conn->proto.ftpc.pp, "PRET %s",
|
|
|
|
data->set.str[STRING_CUSTOMREQUEST]?
|
|
|
|
data->set.str[STRING_CUSTOMREQUEST]:
|
|
|
|
(data->set.ftp_list_only?"NLST":"LIST"));
|
2010-01-01 09:44:44 -05:00
|
|
|
}
|
|
|
|
else if(data->set.upload) {
|
|
|
|
PPSENDF(&conn->proto.ftpc.pp, "PRET STOR %s", conn->proto.ftpc.file);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
PPSENDF(&conn->proto.ftpc.pp, "PRET RETR %s", conn->proto.ftpc.file);
|
|
|
|
}
|
|
|
|
state(conn, FTP_PRET);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result = ftp_state_use_pasv(conn);
|
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CURLcode ftp_state_post_size(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
2007-11-24 18:16:55 -05:00
|
|
|
struct FTP *ftp = conn->data->state.proto.ftp;
|
2007-10-22 11:05:35 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2007-10-22 11:05:35 -04:00
|
|
|
if((ftp->transfer != FTPTRANSFER_BODY) && ftpc->file) {
|
2007-08-17 18:22:43 -04:00
|
|
|
/* if a "head"-like request is being made (on a file) */
|
2005-02-09 08:06:40 -05:00
|
|
|
|
|
|
|
/* Determine if server can respond to REST command and therefore
|
|
|
|
whether it supports range */
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&conn->proto.ftpc.pp, "REST %d", 0);
|
2005-02-09 08:06:40 -05:00
|
|
|
|
|
|
|
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;
|
2007-11-24 18:16:55 -05:00
|
|
|
struct FTP *ftp = conn->data->state.proto.ftp;
|
2007-10-22 11:05:35 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2007-10-22 11:05:35 -04:00
|
|
|
if((ftp->transfer == FTPTRANSFER_INFO) && ftpc->file) {
|
2007-08-17 18:22:43 -04:00
|
|
|
/* if a "head"-like request is being made (on a file) */
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2007-10-22 11:05:35 -04:00
|
|
|
/* we know ftpc->file is a valid pointer to a file name */
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&ftpc->pp, "SIZE %s", ftpc->file);
|
2005-02-09 08:06:40 -05:00
|
|
|
|
|
|
|
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... */
|
|
|
|
|
2007-09-24 17:47:35 -04:00
|
|
|
/*
|
|
|
|
if FTPFILE_NOCWD was specified, we are currently in
|
|
|
|
the user's home directory, so we should add the path
|
|
|
|
as argument for the LIST / NLST / or custom command.
|
|
|
|
Whether the server will support this, is uncertain.
|
|
|
|
|
|
|
|
The other ftp_filemethods will CWD into dir/dir/ first and
|
|
|
|
then just do LIST (in that case: nothing to do here)
|
|
|
|
*/
|
|
|
|
char *cmd,*lstArg,*slashPos;
|
|
|
|
|
|
|
|
lstArg = NULL;
|
|
|
|
if((data->set.ftp_filemethod == FTPFILE_NOCWD) &&
|
2007-11-24 18:16:55 -05:00
|
|
|
data->state.path &&
|
|
|
|
data->state.path[0] &&
|
|
|
|
strchr(data->state.path,'/')) {
|
2007-09-24 17:47:35 -04:00
|
|
|
|
2007-11-24 18:16:55 -05:00
|
|
|
lstArg = strdup(data->state.path);
|
2007-09-24 17:47:35 -04:00
|
|
|
if(!lstArg)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
/* Check if path does not end with /, as then we cut off the file part */
|
|
|
|
if(lstArg[strlen(lstArg) - 1] != '/') {
|
|
|
|
|
|
|
|
/* chop off the file part if format is dir/dir/file */
|
|
|
|
slashPos = strrchr(lstArg,'/');
|
2008-10-09 22:14:46 -04:00
|
|
|
if(slashPos)
|
|
|
|
*(slashPos+1) = '\0';
|
2007-09-24 17:47:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd = aprintf( "%s%s%s",
|
|
|
|
data->set.str[STRING_CUSTOMREQUEST]?
|
|
|
|
data->set.str[STRING_CUSTOMREQUEST]:
|
|
|
|
(data->set.ftp_list_only?"NLST":"LIST"),
|
|
|
|
lstArg? " ": "",
|
|
|
|
lstArg? lstArg: "" );
|
|
|
|
|
2007-10-02 15:19:47 -04:00
|
|
|
if(!cmd) {
|
|
|
|
if(lstArg)
|
|
|
|
free(lstArg);
|
2007-09-24 17:47:35 -04:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2007-10-02 15:19:47 -04:00
|
|
|
}
|
2007-09-24 17:47:35 -04:00
|
|
|
|
2011-08-30 19:58:06 -04:00
|
|
|
result = Curl_pp_sendf(&conn->proto.ftpc.pp, "%s", cmd);
|
2007-09-24 17:47:35 -04:00
|
|
|
|
|
|
|
if(lstArg)
|
|
|
|
free(lstArg);
|
|
|
|
|
|
|
|
free(cmd);
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2011-08-30 19:58:06 -04:00
|
|
|
if(result != CURLE_OK)
|
|
|
|
return result;
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
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;
|
2007-11-24 18:16:55 -05:00
|
|
|
struct FTP *ftp = conn->data->state.proto.ftp;
|
2005-02-09 08:06:40 -05:00
|
|
|
struct SessionHandle *data = conn->data;
|
2007-10-22 11:05:35 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2005-02-09 08:06:40 -05:00
|
|
|
|
|
|
|
/* 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. */
|
2008-01-31 07:04:33 -05:00
|
|
|
if(data->set.opt_no_body && ftpc->file &&
|
2006-08-19 17:18:36 -04:00
|
|
|
ftp_need_type(conn, data->set.prefer_ascii)) {
|
2005-02-09 08:06:40 -05:00
|
|
|
/* 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! */
|
|
|
|
|
2007-09-26 08:00:01 -04:00
|
|
|
ftp->transfer = FTPTRANSFER_INFO;
|
|
|
|
/* this means no actual transfer will be made */
|
2005-02-09 08:06:40 -05:00
|
|
|
|
|
|
|
/* Some servers return different sizes for different modes, and thus we
|
|
|
|
must set the proper type before we check the size */
|
2006-08-19 17:18:36 -04:00
|
|
|
result = ftp_nb_type(conn, data->set.prefer_ascii, FTP_TYPE);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(result)
|
2006-08-19 17:18:36 -04:00
|
|
|
return result;
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
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 SessionHandle *data = conn->data;
|
2007-10-22 11:05:35 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2005-02-09 08:06:40 -05:00
|
|
|
|
|
|
|
/* Requested time of file or time-depended transfer? */
|
2007-10-22 11:05:35 -04:00
|
|
|
if((data->set.get_filetime || data->set.timecondition) && ftpc->file) {
|
2005-02-09 08:06:40 -05:00
|
|
|
|
|
|
|
/* we have requested to get the modified-time of the file, this is a white
|
|
|
|
spot as the MDTM is not mentioned in RFC959 */
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&ftpc->pp, "MDTM %s", ftpc->file);
|
2005-02-09 08:06:40 -05:00
|
|
|
|
|
|
|
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;
|
2007-11-24 18:16:55 -05:00
|
|
|
struct FTP *ftp = conn->data->state.proto.ftp;
|
2005-02-09 08:06:40 -05:00
|
|
|
struct SessionHandle *data = conn->data;
|
2007-10-22 11:05:35 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2009-04-28 07:19:10 -04:00
|
|
|
int seekerr = CURL_SEEKFUNC_OK;
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2007-11-24 18:16:55 -05:00
|
|
|
if((data->state.resume_from && !sizechecked) ||
|
|
|
|
((data->state.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 */
|
|
|
|
|
2007-11-24 18:16:55 -05:00
|
|
|
if(data->state.resume_from < 0 ) {
|
2005-02-09 08:06:40 -05:00
|
|
|
/* Got no given size to start from, figure it out */
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&ftpc->pp, "SIZE %s", ftpc->file);
|
2005-02-09 08:06:40 -05:00
|
|
|
state(conn, FTP_STOR_SIZE);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* enable append */
|
|
|
|
data->set.ftp_append = TRUE;
|
|
|
|
|
2008-01-10 05:30:19 -05:00
|
|
|
/* Let's read off the proper amount of bytes from the input. */
|
|
|
|
if(conn->seek_func) {
|
2009-04-28 07:19:10 -04:00
|
|
|
seekerr = conn->seek_func(conn->seek_client, data->state.resume_from,
|
|
|
|
SEEK_SET);
|
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2009-04-28 07:19:10 -04:00
|
|
|
if(seekerr != CURL_SEEKFUNC_OK) {
|
|
|
|
if(seekerr != CURL_SEEKFUNC_CANTSEEK) {
|
2008-01-10 05:30:19 -05:00
|
|
|
failf(data, "Could not seek stream");
|
2005-02-09 08:06:40 -05:00
|
|
|
return CURLE_FTP_COULDNT_USE_REST;
|
|
|
|
}
|
2009-04-28 07:19:10 -04:00
|
|
|
/* seekerr == CURL_SEEKFUNC_CANTSEEK (can't seek to offset) */
|
|
|
|
else {
|
|
|
|
curl_off_t passed=0;
|
|
|
|
do {
|
2010-12-03 23:53:07 -05:00
|
|
|
size_t readthisamountnow =
|
|
|
|
(data->state.resume_from - passed > CURL_OFF_T_C(BUFSIZE)) ?
|
|
|
|
BUFSIZE : curlx_sotouz(data->state.resume_from - passed);
|
2009-04-28 07:19:10 -04:00
|
|
|
|
2010-12-03 23:53:07 -05:00
|
|
|
size_t actuallyread =
|
|
|
|
conn->fread_func(data->state.buffer, 1, readthisamountnow,
|
2009-04-28 07:19:10 -04:00
|
|
|
conn->fread_in);
|
|
|
|
|
|
|
|
passed += actuallyread;
|
2010-12-03 23:53:07 -05:00
|
|
|
if((actuallyread == 0) || (actuallyread > readthisamountnow)) {
|
2009-04-28 07:19:10 -04:00
|
|
|
/* this checks for greater-than only to make sure that the
|
|
|
|
CURL_READFUNC_ABORT return code still aborts */
|
|
|
|
failf(data, "Failed to read data");
|
|
|
|
return CURLE_FTP_COULDNT_USE_REST;
|
|
|
|
}
|
|
|
|
} while(passed < data->state.resume_from);
|
|
|
|
}
|
2008-01-10 05:30:19 -05:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
/* now, decrease the size of the read */
|
|
|
|
if(data->set.infilesize>0) {
|
2007-11-24 18:16:55 -05:00
|
|
|
data->set.infilesize -= data->state.resume_from;
|
2005-02-09 08:06:40 -05:00
|
|
|
|
|
|
|
if(data->set.infilesize <= 0) {
|
|
|
|
infof(data, "File already completely uploaded\n");
|
|
|
|
|
|
|
|
/* no data to transfer */
|
2010-04-16 17:43:04 -04:00
|
|
|
Curl_setup_transfer(conn, -1, -1, FALSE, NULL, -1, NULL);
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2007-09-26 08:00:01 -04:00
|
|
|
/* Set ->transfer so that we won't get any error in
|
2007-12-08 17:50:55 -05:00
|
|
|
* ftp_done() because we didn't transfer anything! */
|
2007-09-26 08:00:01 -04:00
|
|
|
ftp->transfer = FTPTRANSFER_NONE;
|
2005-02-09 08:06:40 -05:00
|
|
|
|
|
|
|
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 */
|
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&ftpc->pp, data->set.ftp_append?"APPE %s":"STOR %s",
|
|
|
|
ftpc->file);
|
2005-02-09 08:06:40 -05:00
|
|
|
|
|
|
|
state(conn, FTP_STOR);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CURLcode ftp_state_quote(struct connectdata *conn,
|
|
|
|
bool init,
|
|
|
|
ftpstate instate)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct SessionHandle *data = conn->data;
|
2007-11-24 18:16:55 -05:00
|
|
|
struct FTP *ftp = data->state.proto.ftp;
|
2006-09-07 17:49:20 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2005-02-09 08:06:40 -05:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2010-04-09 10:54:52 -04:00
|
|
|
/*
|
|
|
|
* This state uses:
|
|
|
|
* 'count1' to iterate over the commands to send
|
|
|
|
* 'count2' to store wether to allow commands to fail
|
|
|
|
*/
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(init)
|
2006-09-07 17:49:20 -04:00
|
|
|
ftpc->count1 = 0;
|
2005-02-09 08:06:40 -05:00
|
|
|
else
|
2006-09-07 17:49:20 -04:00
|
|
|
ftpc->count1++;
|
2005-02-09 08:06:40 -05:00
|
|
|
|
|
|
|
if(item) {
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
/* Skip count1 items in the linked list */
|
2006-09-07 17:49:20 -04:00
|
|
|
while((i< ftpc->count1) && item) {
|
2005-02-09 08:06:40 -05:00
|
|
|
item = item->next;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
if(item) {
|
2010-04-09 10:54:52 -04:00
|
|
|
char *cmd = item->data;
|
|
|
|
if(cmd[0] == '*') {
|
|
|
|
cmd++;
|
|
|
|
ftpc->count2 = 1; /* the sent command is allowed to fail */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ftpc->count2 = 0; /* failure means cancel operation */
|
|
|
|
|
|
|
|
PPSENDF(&ftpc->pp, "%s", cmd);
|
2005-02-09 08:06:40 -05:00
|
|
|
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:
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ftp->transfer != FTPTRANSFER_BODY)
|
2006-08-08 18:56:46 -04:00
|
|
|
state(conn, FTP_STOP);
|
|
|
|
else {
|
2010-05-12 09:33:22 -04:00
|
|
|
if(ftpc->known_filesize != -1) {
|
|
|
|
Curl_pgrsSetDownloadSize(data, ftpc->known_filesize);
|
|
|
|
result = ftp_state_post_retr_size(conn, ftpc->known_filesize);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
PPSENDF(&ftpc->pp, "SIZE %s", ftpc->file);
|
|
|
|
state(conn, FTP_RETR_SIZE);
|
|
|
|
}
|
2006-08-08 18:56:46 -04:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
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)
|
|
|
|
{
|
2006-09-07 17:49:20 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2005-02-09 08:06:40 -05:00
|
|
|
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 */
|
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
if((ftpc->count1 == 0) &&
|
2005-02-09 08:06:40 -05:00
|
|
|
(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) {
|
2007-02-01 10:36:56 -05:00
|
|
|
newport = (unsigned short)(num & 0xffff);
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(conn->bits.tunnel_proxy ||
|
2011-04-27 08:44:00 -04:00
|
|
|
conn->proxytype == CURLPROXY_SOCKS5 ||
|
|
|
|
conn->proxytype == CURLPROXY_SOCKS5_HOSTNAME ||
|
|
|
|
conn->proxytype == CURLPROXY_SOCKS4 ||
|
|
|
|
conn->proxytype == CURLPROXY_SOCKS4A)
|
2006-01-12 17:18:38 -05:00
|
|
|
/* proxy tunnel -> use other host info because ip_addr_str is the
|
|
|
|
proxy address not the ftp host */
|
|
|
|
snprintf(newhost, sizeof(newhost), "%s", conn->host.name);
|
|
|
|
else
|
|
|
|
/* use the same IP we are already connected to */
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2006-09-07 17:49:20 -04:00
|
|
|
else if((ftpc->count1 == 1) &&
|
2005-02-09 08:06:40 -05:00
|
|
|
(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) {
|
2007-11-05 04:45:09 -05:00
|
|
|
if(6 == sscanf(str, "%d,%d,%d,%d,%d,%d",
|
2005-02-09 08:06:40 -05:00
|
|
|
&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);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(conn->bits.tunnel_proxy ||
|
2011-04-27 08:44:00 -04:00
|
|
|
conn->proxytype == CURLPROXY_SOCKS5 ||
|
|
|
|
conn->proxytype == CURLPROXY_SOCKS5_HOSTNAME ||
|
|
|
|
conn->proxytype == CURLPROXY_SOCKS4 ||
|
|
|
|
conn->proxytype == CURLPROXY_SOCKS4A)
|
2006-01-12 17:18:38 -05:00
|
|
|
/* proxy tunnel -> use other host info because ip_addr_str is the
|
|
|
|
proxy address not the ftp host */
|
|
|
|
snprintf(newhost, sizeof(newhost), "%s", conn->host.name);
|
|
|
|
else
|
|
|
|
snprintf(newhost, sizeof(newhost), "%s", conn->ip_addr_str);
|
2005-09-04 01:16:06 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
snprintf(newhost, sizeof(newhost),
|
|
|
|
"%d.%d.%d.%d", ip[0], ip[1], ip[2], ip[3]);
|
2007-02-01 10:36:56 -05:00
|
|
|
newport = (unsigned short)(((port[0]<<8) + port[1]) & 0xffff);
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
2006-09-07 17:49:20 -04:00
|
|
|
else if(ftpc->count1 == 0) {
|
2005-02-09 08:06:40 -05:00
|
|
|
/* EPSV failed, move on to PASV */
|
|
|
|
|
|
|
|
/* disable it for next transfer */
|
|
|
|
conn->bits.ftp_use_epsv = FALSE;
|
|
|
|
infof(data, "disabling EPSV usage\n");
|
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&ftpc->pp, "PASV", NULL);
|
2006-09-07 17:49:20 -04:00
|
|
|
ftpc->count1++;
|
2005-02-09 08:06:40 -05:00
|
|
|
/* remain in the FTP_PASV state */
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
failf(data, "Bad PASV/EPSV response: %03d", ftpcode);
|
|
|
|
return CURLE_FTP_WEIRD_PASV_REPLY;
|
|
|
|
}
|
|
|
|
|
2007-08-01 17:20:01 -04:00
|
|
|
if(data->set.str[STRING_PROXY] && *data->set.str[STRING_PROXY]) {
|
2005-02-09 08:06:40 -05:00
|
|
|
/*
|
|
|
|
* 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)
|
2010-04-16 17:02:15 -04:00
|
|
|
/* BLOCKING, ignores the return code but 'addr' will be NULL in
|
|
|
|
case of failure */
|
2011-01-30 18:10:35 -05:00
|
|
|
(void)Curl_resolver_wait_resolv(conn, &addr);
|
2005-02-09 08:06:40 -05:00
|
|
|
|
|
|
|
connectport =
|
|
|
|
(unsigned short)conn->port; /* we connect to the proxy's port */
|
|
|
|
|
2008-09-02 19:12:00 -04:00
|
|
|
if(!addr) {
|
2010-02-04 14:44:31 -05:00
|
|
|
failf(data, "Can't resolve proxy host %s:%hu",
|
2008-09-02 19:12:00 -04:00
|
|
|
conn->proxy.name, connectport);
|
|
|
|
return CURLE_FTP_CANT_GET_HOST;
|
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* normal, direct, ftp connection */
|
|
|
|
rc = Curl_resolv(conn, newhost, newport, &addr);
|
|
|
|
if(rc == CURLRESOLV_PENDING)
|
|
|
|
/* BLOCKING */
|
2011-01-30 18:10:35 -05:00
|
|
|
(void)Curl_resolver_wait_resolv(conn, &addr);
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2008-09-02 19:12:00 -04:00
|
|
|
connectport = newport; /* we connect to the remote port */
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(!addr) {
|
2010-02-04 14:44:31 -05:00
|
|
|
failf(data, "Can't resolve new host %s:%hu", newhost, connectport);
|
2005-02-09 08:06:40 -05:00
|
|
|
return CURLE_FTP_CANT_GET_HOST;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(result && ftpc->count1 == 0 && ftpcode == 229) {
|
2006-01-24 09:40:43 -05:00
|
|
|
infof(data, "got positive EPSV response, but can't connect. "
|
|
|
|
"Disabling EPSV\n");
|
|
|
|
/* disable it for next transfer */
|
|
|
|
conn->bits.ftp_use_epsv = FALSE;
|
|
|
|
data->state.errorbuf = FALSE; /* allow error message to get rewritten */
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&ftpc->pp, "PASV", NULL);
|
2006-09-07 17:49:20 -04:00
|
|
|
ftpc->count1++;
|
2006-01-24 09:40:43 -05:00
|
|
|
/* remain in the FTP_PASV state */
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2002-12-03 05:25:31 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
2001-03-02 02:44:05 -05:00
|
|
|
|
2011-08-18 17:35:15 -04:00
|
|
|
conn->bits.tcpconnect[SECONDARYSOCKET] = connected;
|
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);
|
|
|
|
|
2011-04-27 08:44:00 -04:00
|
|
|
switch(conn->proxytype) {
|
2009-05-12 14:56:33 -04:00
|
|
|
/* FIX: this MUST wait for a proper connect first if 'connected' is
|
|
|
|
* FALSE */
|
|
|
|
case CURLPROXY_SOCKS5:
|
|
|
|
case CURLPROXY_SOCKS5_HOSTNAME:
|
|
|
|
result = Curl_SOCKS5(conn->proxyuser, conn->proxypasswd, newhost, newport,
|
|
|
|
SECONDARYSOCKET, conn);
|
|
|
|
break;
|
|
|
|
case CURLPROXY_SOCKS4:
|
|
|
|
result = Curl_SOCKS4(conn->proxyuser, newhost, newport,
|
|
|
|
SECONDARYSOCKET, conn, FALSE);
|
|
|
|
break;
|
|
|
|
case CURLPROXY_SOCKS4A:
|
|
|
|
result = Curl_SOCKS4(conn->proxyuser, newhost, newport,
|
|
|
|
SECONDARYSOCKET, conn, TRUE);
|
|
|
|
break;
|
|
|
|
case CURLPROXY_HTTP:
|
|
|
|
case CURLPROXY_HTTP_1_0:
|
|
|
|
/* do nothing here. handled later. */
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
failf(data, "unknown proxytype option given");
|
|
|
|
result = CURLE_COULDNT_CONNECT;
|
|
|
|
break;
|
|
|
|
}
|
2011-04-04 10:24:37 -04:00
|
|
|
|
2011-08-18 17:35:15 -04:00
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
2006-02-11 17:35:16 -05:00
|
|
|
if(conn->bits.tunnel_proxy && conn->bits.httpproxy) {
|
2005-02-09 08:06:40 -05:00
|
|
|
/* FIX: this MUST wait for a proper connect first if 'connected' is
|
|
|
|
* FALSE */
|
|
|
|
|
|
|
|
/* BLOCKING */
|
|
|
|
/* We want "seamless" FTP operations through HTTP proxy tunnel */
|
2006-01-12 07:40:04 -05:00
|
|
|
|
|
|
|
/* Curl_proxyCONNECT is based on a pointer to a struct HTTP at the member
|
|
|
|
* conn->proto.http; we want FTP through HTTP and we have to change the
|
|
|
|
* member temporarily for connecting to the HTTP proxy. After
|
|
|
|
* Curl_proxyCONNECT we have to set back the member to the original struct
|
|
|
|
* FTP pointer
|
|
|
|
*/
|
|
|
|
struct HTTP http_proxy;
|
2007-11-24 18:16:55 -05:00
|
|
|
struct FTP *ftp_save = data->state.proto.ftp;
|
2006-01-12 07:40:04 -05:00
|
|
|
memset(&http_proxy, 0, sizeof(http_proxy));
|
2007-11-24 18:16:55 -05:00
|
|
|
data->state.proto.http = &http_proxy;
|
2006-01-12 07:40:04 -05:00
|
|
|
|
2005-07-03 18:25:15 -04:00
|
|
|
result = Curl_proxyCONNECT(conn, SECONDARYSOCKET, newhost, newport);
|
2006-01-12 07:40:04 -05:00
|
|
|
|
2007-11-24 18:16:55 -05:00
|
|
|
data->state.proto.ftp = ftp_save;
|
2006-01-12 07:40:04 -05:00
|
|
|
|
2011-08-18 17:35:15 -04:00
|
|
|
if(result)
|
2005-02-09 08:06:40 -05:00
|
|
|
return result;
|
|
|
|
}
|
2011-04-04 10:24:37 -04:00
|
|
|
|
2011-08-18 17:35:15 -04:00
|
|
|
conn->bits.tcpconnect[SECONDARYSOCKET] = TRUE;
|
2005-02-09 08:06:40 -05:00
|
|
|
|
|
|
|
state(conn, FTP_STOP); /* this phase is completed */
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CURLcode ftp_state_port_resp(struct connectdata *conn,
|
|
|
|
int ftpcode)
|
|
|
|
{
|
|
|
|
struct SessionHandle *data = conn->data;
|
2006-09-07 17:49:20 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
|
|
|
ftpport fcmd = (ftpport)ftpc->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
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(EPRT == fcmd) {
|
2005-02-09 08:06:40 -05:00
|
|
|
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
|
|
|
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;
|
|
|
|
struct SessionHandle *data=conn->data;
|
2007-11-24 18:16:55 -05:00
|
|
|
struct FTP *ftp = data->state.proto.ftp;
|
2007-10-22 11:05:35 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
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
|
|
|
|
2007-08-17 18:22:43 -04:00
|
|
|
#ifdef CURL_FTP_HTTPSTYLE_HEAD
|
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
|
|
|
|
2008-01-31 07:04:33 -05:00
|
|
|
if(data->set.opt_no_body &&
|
2007-10-22 11:05:35 -04:00
|
|
|
ftpc->file &&
|
2005-03-08 03:09:14 -05:00
|
|
|
data->set.get_filetime &&
|
|
|
|
(data->info.filetime>=0) ) {
|
2007-09-26 21:45:22 -04:00
|
|
|
time_t filetime = (time_t)data->info.filetime;
|
2005-02-09 08:06:40 -05:00
|
|
|
struct tm buffer;
|
2011-02-07 09:00:48 -05:00
|
|
|
const struct tm *tm = &buffer;
|
|
|
|
|
|
|
|
result = Curl_gmtime(filetime, &buffer);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* 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);
|
2006-08-19 17:18:36 -04:00
|
|
|
result = Curl_client_write(conn, CLIENTWRITE_BOTH, buf, 0);
|
2005-02-09 08:06:40 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
2005-03-08 03:09:14 -05:00
|
|
|
} /* end of a ridiculous amount of conditionals */
|
2007-08-17 18:22:43 -04:00
|
|
|
#endif
|
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");
|
2010-01-22 18:21:39 -05:00
|
|
|
ftp->transfer = FTPTRANSFER_NONE; /* mark to not transfer data */
|
2009-02-11 16:47:14 -05:00
|
|
|
data->info.timecond = TRUE;
|
2005-02-09 08:06:40 -05:00
|
|
|
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");
|
2010-01-22 18:21:39 -05:00
|
|
|
ftp->transfer = FTPTRANSFER_NONE; /* mark to not transfer data */
|
2009-02-11 16:47:14 -05:00
|
|
|
data->info.timecond = TRUE;
|
2005-02-09 08:06:40 -05:00
|
|
|
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");
|
2007-08-30 16:34:57 -04:00
|
|
|
return CURLE_FTP_COULDNT_SET_TYPE;
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
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;
|
2007-11-24 18:16:55 -05:00
|
|
|
struct FTP *ftp = data->state.proto.ftp;
|
2007-10-22 11:05:35 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2000-05-22 10:12:12 -04:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(data->set.max_filesize && (filesize > data->set.max_filesize)) {
|
2005-02-09 08:06:40 -05:00
|
|
|
failf(data, "Maximum file size exceeded");
|
|
|
|
return CURLE_FILESIZE_EXCEEDED;
|
|
|
|
}
|
|
|
|
ftp->downloadsize = filesize;
|
2002-12-04 03:56:55 -05:00
|
|
|
|
2007-11-24 18:16:55 -05:00
|
|
|
if(data->state.resume_from) {
|
2005-02-09 08:06:40 -05:00
|
|
|
/* 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. */
|
2007-11-24 18:16:55 -05:00
|
|
|
if(data->state.resume_from< 0) {
|
2005-02-09 08:06:40 -05:00
|
|
|
/* We're supposed to download the last abs(from) bytes */
|
2007-11-24 18:16:55 -05:00
|
|
|
if(filesize < -data->state.resume_from) {
|
2008-08-15 21:33:59 -04:00
|
|
|
failf(data, "Offset (%" FORMAT_OFF_T
|
|
|
|
") was beyond file size (%" FORMAT_OFF_T ")",
|
2007-11-24 18:16:55 -05:00
|
|
|
data->state.resume_from, filesize);
|
2005-02-09 08:06:40 -05:00
|
|
|
return CURLE_BAD_DOWNLOAD_RESUME;
|
|
|
|
}
|
|
|
|
/* convert to size to download */
|
2007-11-24 18:16:55 -05:00
|
|
|
ftp->downloadsize = -data->state.resume_from;
|
2005-02-09 08:06:40 -05:00
|
|
|
/* download from where? */
|
2007-11-24 18:16:55 -05:00
|
|
|
data->state.resume_from = filesize - ftp->downloadsize;
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
else {
|
2007-11-24 18:16:55 -05:00
|
|
|
if(filesize < data->state.resume_from) {
|
2008-08-15 21:33:59 -04:00
|
|
|
failf(data, "Offset (%" FORMAT_OFF_T
|
|
|
|
") was beyond file size (%" FORMAT_OFF_T ")",
|
2007-11-24 18:16:55 -05:00
|
|
|
data->state.resume_from, filesize);
|
2005-02-09 08:06:40 -05:00
|
|
|
return CURLE_BAD_DOWNLOAD_RESUME;
|
|
|
|
}
|
|
|
|
/* Now store the number of bytes we are expected to download */
|
2007-11-24 18:16:55 -05:00
|
|
|
ftp->downloadsize = filesize-data->state.resume_from;
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
}
|
2002-12-04 03:56:55 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(ftp->downloadsize == 0) {
|
|
|
|
/* no data to transfer */
|
2010-04-16 17:43:04 -04:00
|
|
|
Curl_setup_transfer(conn, -1, -1, FALSE, NULL, -1, NULL);
|
2005-02-09 08:06:40 -05:00
|
|
|
infof(data, "File already completely downloaded\n");
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2007-12-08 17:50:55 -05:00
|
|
|
/* Set ->transfer so that we won't get any error in ftp_done()
|
2005-02-09 08:06:40 -05:00
|
|
|
* because we didn't transfer the any file */
|
2007-09-26 08:00:01 -04:00
|
|
|
ftp->transfer = FTPTRANSFER_NONE;
|
2005-02-09 08:06:40 -05:00
|
|
|
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 */
|
2008-08-15 21:33:59 -04:00
|
|
|
infof(data, "Instructs server to resume from offset %" FORMAT_OFF_T
|
|
|
|
"\n", data->state.resume_from);
|
2000-08-31 08:04:55 -04:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&ftpc->pp, "REST %" FORMAT_OFF_T, data->state.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 */
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&ftpc->pp, "RETR %s", ftpc->file);
|
2005-02-09 08:06:40 -05:00
|
|
|
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) {
|
2007-08-17 18:22:43 -04:00
|
|
|
#ifdef CURL_FTP_HTTPSTYLE_HEAD
|
2005-02-09 08:06:40 -05:00
|
|
|
if(-1 != filesize) {
|
|
|
|
snprintf(buf, sizeof(data->state.buffer),
|
2008-08-15 21:33:59 -04:00
|
|
|
"Content-Length: %" FORMAT_OFF_T "\r\n", filesize);
|
2006-08-19 17:18:36 -04:00
|
|
|
result = Curl_client_write(conn, CLIENTWRITE_BOTH, buf, 0);
|
2005-02-09 08:06:40 -05:00
|
|
|
if(result)
|
2002-12-03 05:25:31 -05:00
|
|
|
return result;
|
2001-08-15 02:52:42 -04:00
|
|
|
}
|
2007-08-17 18:22:43 -04:00
|
|
|
#endif
|
2007-08-20 17:54:00 -04:00
|
|
|
Curl_pgrsSetDownloadSize(data, filesize);
|
2005-02-09 08:06:40 -05:00
|
|
|
result = ftp_state_post_size(conn);
|
|
|
|
}
|
2007-08-20 17:54:00 -04:00
|
|
|
else if(instate == FTP_RETR_SIZE) {
|
|
|
|
Curl_pgrsSetDownloadSize(data, filesize);
|
2005-02-09 08:06:40 -05:00
|
|
|
result = ftp_state_post_retr_size(conn, filesize);
|
2007-08-20 17:54:00 -04:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
else if(instate == FTP_STOR_SIZE) {
|
2007-11-24 18:16:55 -05:00
|
|
|
data->state.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;
|
2007-10-22 11:05:35 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2001-08-23 02:10:01 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
switch(instate) {
|
|
|
|
case FTP_REST:
|
|
|
|
default:
|
2007-08-17 18:22:43 -04:00
|
|
|
#ifdef CURL_FTP_HTTPSTYLE_HEAD
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ftpcode == 350) {
|
2007-08-17 18:31:51 -04:00
|
|
|
char buffer[24]= { "Accept-ranges: bytes\r\n" };
|
|
|
|
result = Curl_client_write(conn, CLIENTWRITE_BOTH, buffer, 0);
|
2005-02-09 08:06:40 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
2007-08-17 18:22:43 -04:00
|
|
|
#endif
|
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:
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ftpcode != 350) {
|
2005-02-09 08:06:40 -05:00
|
|
|
failf(conn->data, "Couldn't use REST");
|
|
|
|
result = CURLE_FTP_COULDNT_USE_REST;
|
|
|
|
}
|
|
|
|
else {
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&ftpc->pp, "RETR %s", ftpc->file);
|
2005-02-09 08:06:40 -05:00
|
|
|
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,
|
2011-12-19 08:35:20 -05:00
|
|
|
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;
|
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! */
|
2007-07-13 16:04:53 -04:00
|
|
|
return CURLE_UPLOAD_FAILED;
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
2001-08-23 02:10:01 -04:00
|
|
|
|
2011-12-19 08:35:20 -05:00
|
|
|
conn->proto.ftpc.state_saved = instate;
|
|
|
|
|
|
|
|
/* PORT means we are now awaiting the server to connect to us. */
|
2005-02-09 08:06:40 -05:00
|
|
|
if(data->set.ftp_use_port) {
|
2011-12-19 08:35:20 -05:00
|
|
|
bool connected;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2011-12-19 08:35:20 -05:00
|
|
|
result = AllowServerConnect(conn, &connected);
|
2005-09-27 04:46:54 -04:00
|
|
|
if(result)
|
|
|
|
return result;
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2011-12-19 08:35:20 -05:00
|
|
|
if(!connected) {
|
2011-12-20 07:06:26 -05:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2011-12-19 08:35:20 -05:00
|
|
|
infof(data, "Data conn was not available immediately\n");
|
2011-12-20 06:52:24 -05:00
|
|
|
/* as there's not necessarily an immediate action on the control
|
|
|
|
connection now, we halt the state machine */
|
2011-12-19 08:35:20 -05:00
|
|
|
state(conn, FTP_STOP);
|
2011-12-20 07:06:26 -05:00
|
|
|
ftpc->wait_data_conn = TRUE;
|
2011-12-19 08:35:20 -05:00
|
|
|
}
|
2009-02-20 03:16:03 -05:00
|
|
|
|
2011-12-19 08:35:20 -05:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return InitiateTransfer(conn);
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* 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;
|
2007-11-24 18:16:55 -05:00
|
|
|
struct FTP *ftp = data->state.proto.ftp;
|
2005-02-09 08:06:40 -05:00
|
|
|
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
|
2011-04-19 09:54:13 -04:00
|
|
|
bytes). (ok, the file is being transferred)
|
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:
|
2011-04-20 09:17:42 -04:00
|
|
|
150 Opening ASCII mode data connection for [file] (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) &&
|
2006-08-19 17:18:36 -04:00
|
|
|
!data->set.prefer_ascii &&
|
2005-02-09 08:06:40 -05:00
|
|
|
(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
|
2011-04-19 09:54:13 -04:00
|
|
|
* that the transferred amount of data is not the same as this line
|
2005-02-09 08:06:40 -05:00
|
|
|
* 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 */
|
2006-10-17 17:32:56 -04:00
|
|
|
if(!ISDIGIT(*bytes)) {
|
2005-02-09 08:06:40 -05:00
|
|
|
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
|
|
|
|
2007-11-24 18:16:55 -05:00
|
|
|
if(size > data->req.maxdownload && data->req.maxdownload > 0)
|
|
|
|
size = data->req.size = data->req.maxdownload;
|
2010-01-19 16:39:10 -05:00
|
|
|
else if((instate != FTP_LIST) && (data->set.prefer_ascii))
|
|
|
|
size = -1; /* kludge for servers that understate ASCII mode file size */
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2008-08-15 21:33:59 -04:00
|
|
|
infof(data, "Maxdownload = %" FORMAT_OFF_T "\n", data->req.maxdownload);
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
if(instate != FTP_LIST)
|
2008-08-15 21:33:59 -04:00
|
|
|
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: */
|
2011-12-19 08:35:20 -05:00
|
|
|
conn->proto.ftpc.state_saved = instate;
|
|
|
|
conn->proto.ftpc.retr_size_saved = size;
|
|
|
|
|
|
|
|
if(data->set.ftp_use_port) {
|
|
|
|
bool connected;
|
|
|
|
|
|
|
|
result = AllowServerConnect(conn, &connected);
|
|
|
|
if(result)
|
|
|
|
return result;
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2011-12-19 08:35:20 -05:00
|
|
|
if(!connected) {
|
2011-12-20 07:06:26 -05:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2011-12-19 08:35:20 -05:00
|
|
|
infof(data, "Data conn was not available immediately\n");
|
|
|
|
state(conn, FTP_STOP);
|
2011-12-20 07:06:26 -05:00
|
|
|
ftpc->wait_data_conn = TRUE;
|
2011-12-19 08:35:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return InitiateTransfer(conn);
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if((instate == FTP_LIST) && (ftpcode == 450)) {
|
|
|
|
/* simply no matching files in the dir listing */
|
2007-09-26 08:00:01 -04:00
|
|
|
ftp->transfer = FTPTRANSFER_NONE; /* don't download anything */
|
2005-02-09 08:06:40 -05:00
|
|
|
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);
|
2010-01-22 18:21:39 -05:00
|
|
|
return instate == FTP_RETR && ftpcode == 550?
|
|
|
|
CURLE_REMOTE_FILE_NOT_FOUND:
|
|
|
|
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
|
2007-07-01 18:01:18 -04:00
|
|
|
if(conn->data->set.krb) {
|
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.
|
|
|
|
*/
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&conn->proto.ftpc.pp, "PBSZ %d", 0);
|
2005-02-09 08:06:40 -05:00
|
|
|
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;
|
2007-11-24 18:16:55 -05:00
|
|
|
struct FTP *ftp = data->state.proto.ftp;
|
2006-09-07 17:49:20 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2005-02-09 08:06:40 -05:00
|
|
|
(void)instate; /* no use for this yet */
|
|
|
|
|
2007-07-01 18:01:18 -04:00
|
|
|
/* some need password anyway, and others just return 2xx ignored */
|
2007-07-20 05:35:58 -04:00
|
|
|
if((ftpcode == 331) && (ftpc->state == FTP_USER)) {
|
2005-02-09 08:06:40 -05:00
|
|
|
/* 331 Password required for ...
|
|
|
|
(the server requires to send the user's password too) */
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&ftpc->pp, "PASS %s", ftp->passwd?ftp->passwd:"");
|
2005-02-09 08:06:40 -05:00
|
|
|
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) {
|
2007-08-01 17:20:01 -04:00
|
|
|
if(data->set.str[STRING_FTP_ACCOUNT]) {
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&ftpc->pp, "ACCT %s", data->set.str[STRING_FTP_ACCOUNT]);
|
2005-02-09 08:06:40 -05:00
|
|
|
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) */
|
2006-07-25 18:45:21 -04:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(conn->data->set.str[STRING_FTP_ALTERNATIVE_TO_USER] &&
|
2006-07-25 18:45:21 -04:00
|
|
|
!conn->data->state.ftp_trying_alternative) {
|
|
|
|
/* Ok, USER failed. Let's try the supplied command. */
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&conn->proto.ftpc.pp, "%s",
|
|
|
|
conn->data->set.str[STRING_FTP_ALTERNATIVE_TO_USER]);
|
2006-07-25 18:45:21 -04:00
|
|
|
conn->data->state.ftp_trying_alternative = TRUE;
|
|
|
|
state(conn, FTP_USER);
|
|
|
|
result = CURLE_OK;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
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;
|
2006-09-07 17:49:20 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2009-12-12 16:54:01 -05:00
|
|
|
struct pingpong *pp = &ftpc->pp;
|
2008-10-22 01:46:29 -04:00
|
|
|
static const char ftpauth[][4] = { "SSL", "TLS" };
|
2005-05-14 02:00:40 -04:00
|
|
|
size_t nread = 0;
|
2004-11-25 17:21:49 -05:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
if(pp->sendleft)
|
|
|
|
return Curl_pp_flushsend(pp);
|
2001-02-05 18:04:44 -05:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
result = ftp_readresp(sock, pp, &ftpcode, &nread);
|
2005-02-09 08:06:40 -05:00
|
|
|
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 */
|
2006-09-07 17:49:20 -04:00
|
|
|
switch(ftpc->state) {
|
2005-02-09 08:06:40 -05:00
|
|
|
case FTP_WAIT220:
|
|
|
|
if(ftpcode != 220) {
|
2008-04-05 17:02:38 -04:00
|
|
|
failf(data, "Got a %03d ftp-server response when 220 was expected",
|
|
|
|
ftpcode);
|
2005-02-09 08:06:40 -05:00
|
|
|
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. */
|
2007-07-01 18:01:18 -04:00
|
|
|
#if defined(HAVE_KRB4) || defined(HAVE_GSSAPI)
|
|
|
|
if(data->set.krb) {
|
2005-02-09 08:06:40 -05:00
|
|
|
/* 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 */
|
2007-08-24 10:00:42 -04:00
|
|
|
Curl_sec_request_prot(conn, data->set.str[STRING_KRB_LEVEL]);
|
2001-09-04 22:49:04 -04:00
|
|
|
|
2010-09-26 22:14:50 -04:00
|
|
|
if(Curl_sec_login(conn) != CURLE_OK)
|
2005-02-09 08:06:40 -05:00
|
|
|
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
|
|
|
|
2011-11-03 04:54:12 -04:00
|
|
|
if(data->set.use_ssl && !conn->ssl[FIRSTSOCKET].use) {
|
2005-02-09 08:06:40 -05:00
|
|
|
/* We don't have a SSL/TLS connection yet, but FTPS is
|
|
|
|
requested. Try a FTPS connection now */
|
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
ftpc->count3=0;
|
2005-02-09 08:06:40 -05:00
|
|
|
switch(data->set.ftpsslauth) {
|
|
|
|
case CURLFTPAUTH_DEFAULT:
|
|
|
|
case CURLFTPAUTH_SSL:
|
2006-09-07 17:49:20 -04:00
|
|
|
ftpc->count2 = 1; /* add one to get next */
|
|
|
|
ftpc->count1 = 0;
|
2005-02-09 08:06:40 -05:00
|
|
|
break;
|
|
|
|
case CURLFTPAUTH_TLS:
|
2006-09-07 17:49:20 -04:00
|
|
|
ftpc->count2 = -1; /* subtract one to get next */
|
|
|
|
ftpc->count1 = 1;
|
2005-02-09 08:06:40 -05:00
|
|
|
break;
|
|
|
|
default:
|
2008-01-15 18:19:02 -05:00
|
|
|
failf(data, "unsupported parameter to CURLOPT_FTPSSLAUTH: %d",
|
2010-02-04 14:44:31 -05:00
|
|
|
(int)data->set.ftpsslauth);
|
2011-04-05 09:14:02 -04:00
|
|
|
return CURLE_UNKNOWN_OPTION; /* we don't know what to do */
|
2001-09-04 22:49:04 -04:00
|
|
|
}
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&ftpc->pp, "AUTH %s", ftpauth[ftpc->count1]);
|
2005-02-09 08:06:40 -05:00
|
|
|
state(conn, FTP_AUTH);
|
2001-09-28 04:58:18 -04:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
else {
|
2006-03-13 18:33:46 -05:00
|
|
|
result = ftp_state_user(conn);
|
2005-02-09 08:06:40 -05:00
|
|
|
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->ssl[SECONDARYSOCKET].use = FALSE; /* clear-text data */
|
|
|
|
result = ftp_state_user(conn);
|
|
|
|
}
|
2004-11-25 17:21:49 -05:00
|
|
|
}
|
2006-09-07 17:49:20 -04:00
|
|
|
else if(ftpc->count3 < 1) {
|
|
|
|
ftpc->count3++;
|
|
|
|
ftpc->count1 += ftpc->count2; /* get next attempt */
|
2009-12-12 16:54:01 -05:00
|
|
|
result = Curl_pp_sendf(&ftpc->pp, "AUTH %s", ftpauth[ftpc->count1]);
|
2005-02-09 08:06:40 -05:00
|
|
|
/* remain in this same state */
|
|
|
|
}
|
2006-03-20 17:51:08 -05:00
|
|
|
else {
|
2011-11-03 04:54:12 -04:00
|
|
|
if(data->set.use_ssl > CURLUSESSL_TRY)
|
2007-08-31 15:36:32 -04:00
|
|
|
/* we failed and CURLUSESSL_CONTROL or CURLUSESSL_ALL is set */
|
|
|
|
result = CURLE_USE_SSL_FAILED;
|
2006-03-20 17:51:08 -05:00
|
|
|
else
|
|
|
|
/* ignore the failure and continue */
|
|
|
|
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:
|
2006-09-07 17:49:20 -04:00
|
|
|
result = ftp_state_user_resp(conn, ftpcode, ftpc->state);
|
2005-02-09 08:06:40 -05:00
|
|
|
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:
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&ftpc->pp, "PROT %c",
|
2011-11-03 04:54:12 -04:00
|
|
|
data->set.use_ssl == CURLUSESSL_CONTROL ? 'C' : 'P');
|
2008-12-09 10:02:37 -05:00
|
|
|
state(conn, FTP_PROT);
|
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! */
|
2006-03-07 17:28:08 -05:00
|
|
|
conn->ssl[SECONDARYSOCKET].use =
|
2011-11-03 04:54:12 -04:00
|
|
|
(data->set.use_ssl != CURLUSESSL_CONTROL) ? TRUE : FALSE;
|
2005-02-09 08:06:40 -05:00
|
|
|
/* FTP servers typically responds with 500 if they decide to reject
|
|
|
|
our 'P' request */
|
2011-11-03 04:54:12 -04:00
|
|
|
else if(data->set.use_ssl > CURLUSESSL_CONTROL)
|
2005-02-09 08:06:40 -05:00
|
|
|
/* we failed and bails out */
|
2007-08-31 15:36:32 -04:00
|
|
|
return CURLE_USE_SSL_FAILED;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2007-02-20 17:02:11 -05:00
|
|
|
if(data->set.ftp_ccc) {
|
2007-01-05 18:11:14 -05:00
|
|
|
/* CCC - Clear Command Channel
|
|
|
|
*/
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&ftpc->pp, "CCC", NULL);
|
2007-01-05 18:11:14 -05:00
|
|
|
state(conn, FTP_CCC);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result = ftp_state_pwd(conn);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FTP_CCC:
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ftpcode < 500) {
|
2007-08-24 10:00:42 -04:00
|
|
|
/* First shut down the SSL layer (note: this call will block) */
|
|
|
|
result = Curl_ssl_shutdown(conn, FIRSTSOCKET);
|
2007-01-24 14:09:12 -05:00
|
|
|
|
2007-08-24 10:00:42 -04:00
|
|
|
if(result) {
|
|
|
|
failf(conn->data, "Failed to clear the command channel (CCC)");
|
|
|
|
return result;
|
|
|
|
}
|
2007-01-08 06:24:11 -05:00
|
|
|
}
|
2007-01-05 18:11:14 -05:00
|
|
|
|
|
|
|
/* Then continue as normal */
|
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 *ptr=&data->state.buffer[4]; /* start on the first letter */
|
2009-08-24 08:57:25 -04:00
|
|
|
char *dir;
|
|
|
|
char *store;
|
2002-08-01 10:25:12 -04:00
|
|
|
|
2009-08-24 08:57:25 -04:00
|
|
|
dir = malloc(nread + 1);
|
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++;
|
2011-04-20 09:17:42 -04:00
|
|
|
for(store = dir; *ptr;) {
|
2005-02-09 08:06:40 -05:00
|
|
|
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++;
|
|
|
|
}
|
2009-08-24 08:57:25 -04:00
|
|
|
|
|
|
|
/* If the path name does not look like an absolute path (i.e.: it
|
|
|
|
does not start with a '/'), we probably need some server-dependent
|
|
|
|
adjustments. For example, this is the case when connecting to
|
|
|
|
an OS400 FTP server: this server supports two name syntaxes,
|
|
|
|
the default one being incompatible with standard pathes. In
|
|
|
|
addition, this server switches automatically to the regular path
|
|
|
|
syntax when one is encountered in a command: this results in
|
|
|
|
having an entrypath in the wrong syntax when later used in CWD.
|
|
|
|
The method used here is to check the server OS: we do it only
|
|
|
|
if the path name looks strange to minimize overhead on other
|
|
|
|
systems. */
|
|
|
|
|
2011-08-31 12:14:38 -04:00
|
|
|
if(!ftpc->server_os && dir[0] != '/') {
|
2011-08-30 19:58:06 -04:00
|
|
|
|
|
|
|
result = Curl_pp_sendf(&ftpc->pp, "SYST", NULL);
|
|
|
|
if(result != CURLE_OK) {
|
2011-08-31 12:14:38 -04:00
|
|
|
free(dir);
|
2011-08-30 19:58:06 -04:00
|
|
|
return result;
|
|
|
|
}
|
2011-08-31 12:14:38 -04:00
|
|
|
Curl_safefree(ftpc->entrypath);
|
|
|
|
ftpc->entrypath = dir; /* remember this */
|
|
|
|
infof(data, "Entry path is '%s'\n", ftpc->entrypath);
|
|
|
|
/* also save it where getinfo can access it: */
|
|
|
|
data->state.most_recent_ftp_entrypath = ftpc->entrypath;
|
2009-08-24 08:57:25 -04:00
|
|
|
state(conn, FTP_SYST);
|
|
|
|
break;
|
|
|
|
}
|
2011-08-31 12:14:38 -04:00
|
|
|
|
|
|
|
Curl_safefree(ftpc->entrypath);
|
|
|
|
ftpc->entrypath = dir; /* remember this */
|
|
|
|
infof(data, "Entry path is '%s'\n", ftpc->entrypath);
|
|
|
|
/* also save it where getinfo can access it: */
|
|
|
|
data->state.most_recent_ftp_entrypath = ftpc->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;
|
|
|
|
|
2009-08-24 08:57:25 -04:00
|
|
|
case FTP_SYST:
|
|
|
|
if(ftpcode == 215) {
|
|
|
|
char *ptr=&data->state.buffer[4]; /* start on the first letter */
|
|
|
|
char *os;
|
|
|
|
char *store;
|
|
|
|
|
|
|
|
os = malloc(nread + 1);
|
|
|
|
if(!os)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
/* Reply format is like
|
|
|
|
215<space><OS-name><space><commentary>
|
|
|
|
*/
|
2011-04-20 09:17:42 -04:00
|
|
|
while(*ptr == ' ')
|
2009-08-24 08:57:25 -04:00
|
|
|
ptr++;
|
2011-04-20 09:17:42 -04:00
|
|
|
for(store = os; *ptr && *ptr != ' ';)
|
2009-08-24 08:57:25 -04:00
|
|
|
*store++ = *ptr++;
|
|
|
|
*store = '\0'; /* zero terminate */
|
|
|
|
|
|
|
|
/* Check for special servers here. */
|
|
|
|
|
2011-08-31 12:14:38 -04:00
|
|
|
if(strequal(os, "OS/400")) {
|
2009-08-24 08:57:25 -04:00
|
|
|
/* Force OS400 name format 1. */
|
2011-08-30 19:58:06 -04:00
|
|
|
result = Curl_pp_sendf(&ftpc->pp, "SITE NAMEFMT 1", NULL);
|
|
|
|
if(result != CURLE_OK) {
|
2011-08-31 12:14:38 -04:00
|
|
|
free(os);
|
2011-08-30 19:58:06 -04:00
|
|
|
return result;
|
|
|
|
}
|
2011-08-31 12:14:38 -04:00
|
|
|
/* remember target server OS */
|
|
|
|
Curl_safefree(ftpc->server_os);
|
|
|
|
ftpc->server_os = os;
|
2009-08-24 08:57:25 -04:00
|
|
|
state(conn, FTP_NAMEFMT);
|
|
|
|
break;
|
|
|
|
}
|
2011-08-31 12:14:38 -04:00
|
|
|
else {
|
|
|
|
/* Nothing special for the target server. */
|
|
|
|
/* remember target server OS */
|
|
|
|
Curl_safefree(ftpc->server_os);
|
|
|
|
ftpc->server_os = os;
|
|
|
|
}
|
2009-08-24 08:57:25 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* Cannot identify server OS. Continue anyway and cross fingers. */
|
|
|
|
}
|
|
|
|
|
|
|
|
state(conn, FTP_STOP); /* we are done with the CONNECT phase! */
|
|
|
|
DEBUGF(infof(data, "protocol connect phase DONE\n"));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FTP_NAMEFMT:
|
|
|
|
if(ftpcode == 250) {
|
|
|
|
/* Name format change successful: reload initial path. */
|
|
|
|
ftp_state_pwd(conn);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
state(conn, FTP_STOP); /* we are done with the CONNECT phase! */
|
|
|
|
DEBUGF(infof(data, "protocol connect phase DONE\n"));
|
|
|
|
break;
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
case FTP_QUOTE:
|
|
|
|
case FTP_POSTQUOTE:
|
|
|
|
case FTP_RETR_PREQUOTE:
|
|
|
|
case FTP_STOR_PREQUOTE:
|
2010-04-09 10:54:52 -04:00
|
|
|
if((ftpcode >= 400) && !ftpc->count2) {
|
2011-04-19 09:54:13 -04:00
|
|
|
/* failure response code, and not allowed to fail */
|
2005-02-09 08:06:40 -05:00
|
|
|
failf(conn->data, "QUOT command failed with %03d", ftpcode);
|
2007-08-30 16:34:57 -04:00
|
|
|
return CURLE_QUOTE_ERROR;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2006-09-07 17:49:20 -04:00
|
|
|
result = ftp_state_quote(conn, FALSE, ftpc->state);
|
2005-02-09 08:06:40 -05:00
|
|
|
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 &&
|
2006-09-07 17:49:20 -04:00
|
|
|
ftpc->count1 && !ftpc->count2) {
|
2005-02-09 08:06:40 -05:00
|
|
|
/* try making it */
|
2006-09-07 17:49:20 -04:00
|
|
|
ftpc->count2++; /* counter to prevent CWD-MKD loops */
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&ftpc->pp, "MKD %s", ftpc->dirs[ftpc->count1 - 1]);
|
2005-02-09 08:06:40 -05:00
|
|
|
state(conn, FTP_MKD);
|
|
|
|
}
|
2005-11-13 19:18:12 -05:00
|
|
|
else {
|
2005-02-09 08:06:40 -05:00
|
|
|
/* return failure */
|
2005-11-13 19:18:12 -05:00
|
|
|
failf(data, "Server denied you to change to the given directory");
|
2006-09-07 17:49:20 -04:00
|
|
|
ftpc->cwdfail = TRUE; /* don't remember this path as we failed
|
|
|
|
to enter it */
|
2007-08-30 16:34:57 -04:00
|
|
|
return CURLE_REMOTE_ACCESS_DENIED;
|
2005-11-13 19:18:12 -05:00
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* success */
|
2006-09-07 17:49:20 -04:00
|
|
|
ftpc->count2=0;
|
|
|
|
if(++ftpc->count1 <= ftpc->dirdepth) {
|
2005-02-09 08:06:40 -05:00
|
|
|
/* send next CWD */
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&ftpc->pp, "CWD %s", ftpc->dirs[ftpc->count1 - 1]);
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
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:
|
2009-02-17 04:07:25 -05:00
|
|
|
if((ftpcode/100 != 2) && !ftpc->count3--) {
|
2005-02-09 08:06:40 -05:00
|
|
|
/* failure to MKD the dir */
|
|
|
|
failf(data, "Failed to MKD dir: %03d", ftpcode);
|
2007-08-30 16:34:57 -04:00
|
|
|
return CURLE_REMOTE_ACCESS_DENIED;
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
state(conn, FTP_CWD);
|
|
|
|
/* send CWD */
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&ftpc->pp, "CWD %s", ftpc->dirs[ftpc->count1 - 1]);
|
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_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:
|
2006-09-07 17:49:20 -04:00
|
|
|
result = ftp_state_type_resp(conn, ftpcode, ftpc->state);
|
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_SIZE:
|
|
|
|
case FTP_RETR_SIZE:
|
|
|
|
case FTP_STOR_SIZE:
|
2006-09-07 17:49:20 -04:00
|
|
|
result = ftp_state_size_resp(conn, ftpcode, ftpc->state);
|
2005-02-09 08:06:40 -05:00
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
case FTP_REST:
|
|
|
|
case FTP_RETR_REST:
|
2006-09-07 17:49:20 -04:00
|
|
|
result = ftp_state_rest_resp(conn, ftpcode, ftpc->state);
|
2005-02-09 08:06:40 -05:00
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2010-01-01 09:44:44 -05:00
|
|
|
case FTP_PRET:
|
|
|
|
if(ftpcode != 200) {
|
2011-04-20 09:17:42 -04:00
|
|
|
/* there only is this one standard OK return code. */
|
2010-01-01 09:44:44 -05:00
|
|
|
failf(data, "PRET command not accepted: %03d", ftpcode);
|
|
|
|
return CURLE_FTP_PRET_FAILED;
|
|
|
|
}
|
|
|
|
result = ftp_state_use_pasv(conn);
|
|
|
|
break;
|
|
|
|
|
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:
|
2006-09-07 17:49:20 -04:00
|
|
|
result = ftp_state_get_resp(conn, ftpcode, ftpc->state);
|
2005-02-09 08:06:40 -05:00
|
|
|
break;
|
2001-09-28 04:58:18 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
case FTP_STOR:
|
2011-12-19 08:35:20 -05:00
|
|
|
result = ftp_state_stor_resp(conn, ftpcode, ftpc->state);
|
2005-02-09 08:06:40 -05:00
|
|
|
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
|
|
|
|
2001-09-28 04:58:18 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* called repeatedly until done from multi.c */
|
2007-12-08 17:50:55 -05:00
|
|
|
static CURLcode ftp_multi_statemach(struct connectdata *conn,
|
2009-12-12 16:54:01 -05:00
|
|
|
bool *done)
|
2005-02-09 08:06:40 -05:00
|
|
|
{
|
2006-09-07 17:49:20 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2009-12-12 16:54:01 -05:00
|
|
|
CURLcode result = Curl_pp_multi_statemach(&ftpc->pp);
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2009-08-31 16:49:30 -04:00
|
|
|
/* Check for the state outside of the Curl_socket_ready() return code checks
|
|
|
|
since at times we are in fact already in this state when this function
|
|
|
|
gets called. */
|
2011-09-05 14:46:09 -04:00
|
|
|
*done = (ftpc->state == FTP_STOP) ? TRUE : FALSE;
|
2009-08-31 16:49:30 -04: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)
|
|
|
|
{
|
2006-09-07 17:49:20 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2009-12-12 16:54:01 -05:00
|
|
|
struct pingpong *pp = &ftpc->pp;
|
2005-02-09 08:06:40 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2001-09-04 22:49:04 -04:00
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
while(ftpc->state != FTP_STOP) {
|
2009-12-12 16:54:01 -05:00
|
|
|
result = Curl_pp_easy_statemach(pp);
|
2009-11-26 14:07:54 -05:00
|
|
|
if(result)
|
|
|
|
break;
|
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
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
/*
|
|
|
|
* Allocate and initialize the struct FTP for the current SessionHandle. If
|
|
|
|
* need be.
|
|
|
|
*/
|
2010-02-05 04:32:11 -05:00
|
|
|
|
|
|
|
#if defined(__INTEL_COMPILER) && (__INTEL_COMPILER == 910) && \
|
|
|
|
defined(__OPTIMIZE__) && defined(__unix__) && defined(__i386__)
|
|
|
|
/* workaround icc 9.1 optimizer issue */
|
2010-03-18 13:37:00 -04:00
|
|
|
#pragma optimize("", off)
|
2010-02-05 04:32:11 -05:00
|
|
|
#endif
|
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
static CURLcode ftp_init(struct connectdata *conn)
|
|
|
|
{
|
2010-03-18 13:37:00 -04:00
|
|
|
struct FTP *ftp;
|
2009-11-19 12:21:56 -05:00
|
|
|
|
|
|
|
if(NULL == conn->data->state.proto.ftp) {
|
|
|
|
conn->data->state.proto.ftp = malloc(sizeof(struct FTP));
|
|
|
|
if(NULL == conn->data->state.proto.ftp)
|
2008-04-28 17:29:17 -04:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2009-11-19 12:21:56 -05:00
|
|
|
ftp = conn->data->state.proto.ftp;
|
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
/* get some initial data into the ftp struct */
|
2009-11-19 12:21:56 -05:00
|
|
|
ftp->bytecountp = &conn->data->req.bytecount;
|
|
|
|
ftp->transfer = FTPTRANSFER_BODY;
|
|
|
|
ftp->downloadsize = 0;
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2008-04-28 17:29:17 -04:00
|
|
|
/* No need to duplicate user+password, the connectdata struct won't change
|
|
|
|
during a session, but we re-init them here since on subsequent inits
|
|
|
|
since the conn struct may have changed or been replaced.
|
|
|
|
*/
|
2006-09-07 17:49:20 -04:00
|
|
|
ftp->user = conn->user;
|
|
|
|
ftp->passwd = conn->passwd;
|
2011-09-05 14:46:09 -04:00
|
|
|
if(isBadFtpString(ftp->user))
|
2009-04-19 01:20:04 -04:00
|
|
|
return CURLE_URL_MALFORMAT;
|
2011-09-05 14:46:09 -04:00
|
|
|
if(isBadFtpString(ftp->passwd))
|
2006-09-07 17:49:20 -04:00
|
|
|
return CURLE_URL_MALFORMAT;
|
|
|
|
|
2010-05-12 09:33:22 -04:00
|
|
|
conn->proto.ftpc.known_filesize = -1; /* unknown size for now */
|
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2010-03-18 13:37:00 -04:00
|
|
|
#if defined(__INTEL_COMPILER) && (__INTEL_COMPILER == 910) && \
|
|
|
|
defined(__OPTIMIZE__) && defined(__unix__) && defined(__i386__)
|
|
|
|
/* workaround icc 9.1 optimizer issue */
|
|
|
|
#pragma optimize("", on)
|
|
|
|
#endif
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/*
|
2007-12-08 17:50:55 -05:00
|
|
|
* ftp_connect() should do everything that is to be considered a part of
|
2005-02-09 08:06:40 -05:00
|
|
|
* 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.
|
|
|
|
*/
|
2007-12-08 17:50:55 -05:00
|
|
|
static CURLcode ftp_connect(struct connectdata *conn,
|
2007-10-12 09:36:37 -04:00
|
|
|
bool *done) /* see description above */
|
2005-02-09 08:06:40 -05:00
|
|
|
{
|
|
|
|
CURLcode result;
|
2006-09-07 17:49:20 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
|
|
|
struct SessionHandle *data=conn->data;
|
2009-12-12 16:54:01 -05:00
|
|
|
struct pingpong *pp = &ftpc->pp;
|
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
|
|
|
|
2007-10-22 11:05:35 -04:00
|
|
|
/* If there already is a protocol-specific struct allocated for this
|
|
|
|
sessionhandle, deal with it */
|
|
|
|
Curl_reset_reqproto(conn);
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
result = ftp_init(conn);
|
2009-04-19 01:20:04 -04:00
|
|
|
if(CURLE_OK != result)
|
2006-09-07 17:49:20 -04:00
|
|
|
return result;
|
2002-08-12 05:43:20 -04:00
|
|
|
|
2011-04-19 09:54:13 -04:00
|
|
|
/* We always support persistent connections on ftp */
|
2005-02-09 08:06:40 -05:00
|
|
|
conn->bits.close = FALSE;
|
2002-11-05 05:51:41 -05:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
pp->response_time = RESP_TIMEOUT; /* set default response time-out */
|
|
|
|
pp->statemach_act = ftp_statemach_act;
|
|
|
|
pp->endofresp = ftp_endofresp;
|
|
|
|
pp->conn = conn;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2011-05-05 09:49:43 -04:00
|
|
|
if(conn->handler->flags & PROTOPT_SSL) {
|
2005-02-09 08:06:40 -05:00
|
|
|
/* BLOCKING */
|
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;
|
|
|
|
}
|
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
Curl_pp_init(pp); /* init the generic pingpong data */
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* When we connect, we start in the state where we await the 220
|
|
|
|
response */
|
|
|
|
state(conn, FTP_WAIT220);
|
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
if(data->state.used_interface == Curl_if_multi)
|
2007-12-08 17:50:55 -05:00
|
|
|
result = ftp_multi_statemach(conn, done);
|
2005-02-09 08:06:40 -05:00
|
|
|
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
|
|
|
/***********************************************************************
|
|
|
|
*
|
2007-12-08 17:50:55 -05:00
|
|
|
* ftp_done()
|
2005-02-09 08:06:40 -05:00
|
|
|
*
|
|
|
|
* 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
|
|
|
*/
|
2007-12-08 17:50:55 -05:00
|
|
|
static CURLcode ftp_done(struct connectdata *conn, CURLcode status,
|
2007-10-12 09:36:37 -04:00
|
|
|
bool premature)
|
2001-09-28 04:58:18 -04:00
|
|
|
{
|
2005-02-09 08:06:40 -05:00
|
|
|
struct SessionHandle *data = conn->data;
|
2007-11-24 18:16:55 -05:00
|
|
|
struct FTP *ftp = data->state.proto.ftp;
|
2006-09-07 17:49:20 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2009-12-12 16:54:01 -05:00
|
|
|
struct pingpong *pp = &ftpc->pp;
|
2005-02-09 08:06:40 -05:00
|
|
|
ssize_t nread;
|
|
|
|
int ftpcode;
|
2011-10-24 14:42:01 -04:00
|
|
|
CURLcode result = CURLE_OK;
|
2006-09-07 17:49:20 -04:00
|
|
|
bool was_ctl_valid = ftpc->ctl_valid;
|
2005-02-09 08:06:40 -05:00
|
|
|
char *path;
|
2008-10-07 21:17:51 -04:00
|
|
|
const char *path_to_use = data->state.path;
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2006-09-16 16:57:59 -04:00
|
|
|
if(!ftp)
|
|
|
|
/* When the easy handle is removed from the multi while libcurl is still
|
|
|
|
* trying to resolve the host name, it seems that the ftp struct is not
|
|
|
|
* yet initialized, but the removal action calls Curl_done() which calls
|
|
|
|
* this function. So we simply return success if no ftp pointer is set.
|
|
|
|
*/
|
|
|
|
return CURLE_OK;
|
|
|
|
|
2006-12-11 04:32:58 -05:00
|
|
|
switch(status) {
|
|
|
|
case CURLE_BAD_DOWNLOAD_RESUME:
|
|
|
|
case CURLE_FTP_WEIRD_PASV_REPLY:
|
|
|
|
case CURLE_FTP_PORT_FAILED:
|
2011-12-19 08:35:20 -05:00
|
|
|
case CURLE_FTP_ACCEPT_FAILED:
|
|
|
|
case CURLE_FTP_ACCEPT_TIMEOUT:
|
2007-08-30 16:34:57 -04:00
|
|
|
case CURLE_FTP_COULDNT_SET_TYPE:
|
2006-12-11 04:32:58 -05:00
|
|
|
case CURLE_FTP_COULDNT_RETR_FILE:
|
2012-01-07 16:13:57 -05:00
|
|
|
case CURLE_PARTIAL_FILE:
|
2007-07-13 16:04:53 -04:00
|
|
|
case CURLE_UPLOAD_FAILED:
|
2007-08-30 16:34:57 -04:00
|
|
|
case CURLE_REMOTE_ACCESS_DENIED:
|
2007-03-29 21:13:47 -04:00
|
|
|
case CURLE_FILESIZE_EXCEEDED:
|
2009-02-18 06:40:16 -05:00
|
|
|
case CURLE_REMOTE_FILE_NOT_FOUND:
|
2009-02-20 03:16:03 -05:00
|
|
|
case CURLE_WRITE_ERROR:
|
2006-12-11 04:32:58 -05:00
|
|
|
/* the connection stays alive fine even though this happened */
|
|
|
|
/* fall-through */
|
|
|
|
case CURLE_OK: /* doesn't affect the control connection's status */
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!premature) {
|
2007-01-16 17:22:10 -05:00
|
|
|
ftpc->ctl_valid = was_ctl_valid;
|
|
|
|
break;
|
|
|
|
}
|
2007-02-25 23:24:26 -05:00
|
|
|
/* until we cope better with prematurely ended requests, let them
|
2007-01-16 17:22:10 -05:00
|
|
|
* fallback as if in complete failure */
|
2006-12-11 04:32:58 -05:00
|
|
|
default: /* by default, an error means the control connection is
|
|
|
|
wedged and should not be used anymore */
|
|
|
|
ftpc->ctl_valid = FALSE;
|
|
|
|
ftpc->cwdfail = TRUE; /* set this TRUE to prevent us to remember the
|
|
|
|
current path, as this connection is going */
|
|
|
|
conn->bits.close = TRUE; /* marked for closure */
|
2009-04-20 17:41:17 -04:00
|
|
|
result = status; /* use the already set error code */
|
2006-12-11 04:32:58 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* now store a copy of the directory we are in */
|
2006-09-07 17:49:20 -04:00
|
|
|
if(ftpc->prevpath)
|
|
|
|
free(ftpc->prevpath);
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2010-05-12 09:33:22 -04:00
|
|
|
if(data->set.wildcardmatch) {
|
|
|
|
if(data->set.chunk_end && ftpc->file) {
|
|
|
|
data->set.chunk_end(data->wildcard.customptr);
|
|
|
|
}
|
|
|
|
ftpc->known_filesize = -1;
|
|
|
|
}
|
|
|
|
|
2006-04-07 17:50:47 -04:00
|
|
|
/* get the "raw" path */
|
2006-09-07 17:49:20 -04:00
|
|
|
path = curl_easy_unescape(data, path_to_use, 0, NULL);
|
2007-04-11 21:26:02 -04:00
|
|
|
if(!path) {
|
|
|
|
/* out of memory, but we can limp along anyway (and should try to
|
2011-10-24 14:42:01 -04:00
|
|
|
* since we may already be in the out of memory cleanup path) */
|
|
|
|
if(!result)
|
|
|
|
result = CURLE_OUT_OF_MEMORY;
|
|
|
|
ftpc->ctl_valid = FALSE; /* mark control connection as bad */
|
|
|
|
conn->bits.close = TRUE; /* mark for connection closure */
|
|
|
|
ftpc->prevpath = NULL; /* no path remembering */
|
2010-01-22 18:21:39 -05:00
|
|
|
}
|
|
|
|
else {
|
2007-10-22 11:05:35 -04:00
|
|
|
size_t flen = ftpc->file?strlen(ftpc->file):0; /* file is "raw" already */
|
2007-04-11 21:26:02 -04:00
|
|
|
size_t dlen = strlen(path)-flen;
|
2007-09-11 18:21:39 -04:00
|
|
|
if(!ftpc->cwdfail) {
|
2007-09-24 17:47:35 -04:00
|
|
|
if(dlen && (data->set.ftp_filemethod != FTPFILE_NOCWD)) {
|
2007-09-11 18:21:39 -04:00
|
|
|
ftpc->prevpath = path;
|
|
|
|
if(flen)
|
|
|
|
/* if 'path' is not the whole string */
|
|
|
|
ftpc->prevpath[dlen]=0; /* terminate */
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* we never changed dir */
|
|
|
|
ftpc->prevpath=strdup("");
|
|
|
|
free(path);
|
|
|
|
}
|
2009-04-01 08:15:37 -04:00
|
|
|
if(ftpc->prevpath)
|
|
|
|
infof(data, "Remembering we are in dir \"%s\"\n", ftpc->prevpath);
|
2007-04-11 21:26:02 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
ftpc->prevpath = NULL; /* no path */
|
|
|
|
free(path);
|
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
/* free the dir tree and file parts */
|
2007-10-24 17:14:11 -04:00
|
|
|
freedirs(ftpc);
|
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
|
|
|
|
2008-08-11 19:16:08 -04:00
|
|
|
if(conn->sock[SECONDARYSOCKET] != CURL_SOCKET_BAD) {
|
2010-11-04 16:44:02 -04:00
|
|
|
if(!result && ftpc->dont_check && data->req.maxdownload > 0)
|
|
|
|
/* partial download completed */
|
|
|
|
result = Curl_pp_sendf(pp, "ABOR");
|
2011-10-24 14:42:01 -04:00
|
|
|
if(result) {
|
|
|
|
failf(data, "Failure sending ABOR command: %s",
|
|
|
|
curl_easy_strerror(result));
|
|
|
|
ftpc->ctl_valid = FALSE; /* mark control connection as bad */
|
|
|
|
conn->bits.close = TRUE; /* mark for connection closure */
|
|
|
|
}
|
2010-10-27 04:54:35 -04:00
|
|
|
|
2008-08-11 19:16:08 -04:00
|
|
|
if(conn->ssl[SECONDARYSOCKET].use) {
|
2010-01-22 18:21:39 -05:00
|
|
|
/* The secondary socket is using SSL so we must close down that part
|
|
|
|
first before we close the socket for real */
|
2008-08-11 19:16:08 -04:00
|
|
|
Curl_ssl_close(conn, SECONDARYSOCKET);
|
2007-07-29 08:54:05 -04:00
|
|
|
|
2008-08-11 19:16:08 -04:00
|
|
|
/* Note that we keep "use" set to TRUE since that (next) connection is
|
|
|
|
still requested to use SSL */
|
|
|
|
}
|
2009-05-19 16:54:31 -04:00
|
|
|
if(CURL_SOCKET_BAD != conn->sock[SECONDARYSOCKET]) {
|
2011-05-16 17:46:43 -04:00
|
|
|
Curl_closesocket(conn, conn->sock[SECONDARYSOCKET]);
|
2009-05-19 16:54:31 -04:00
|
|
|
conn->sock[SECONDARYSOCKET] = CURL_SOCKET_BAD;
|
2011-10-24 14:42:01 -04:00
|
|
|
conn->bits.tcpconnect[SECONDARYSOCKET] = FALSE;
|
2009-05-19 16:54:31 -04:00
|
|
|
}
|
2008-08-11 19:16:08 -04:00
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2010-10-27 04:54:35 -04:00
|
|
|
if(!result && (ftp->transfer == FTPTRANSFER_BODY) && ftpc->ctl_valid &&
|
2009-12-12 16:54:01 -05:00
|
|
|
pp->pending_resp && !premature) {
|
2006-04-18 19:14:30 -04:00
|
|
|
/*
|
|
|
|
* Let's see what the server says about the transfer we just performed,
|
2005-02-09 08:06:40 -05:00
|
|
|
* but lower the timeout as sometimes this connection has died while the
|
2011-04-19 09:54:13 -04:00
|
|
|
* data has been transferred. This happens when doing through NATs etc that
|
2005-02-09 08:06:40 -05:00
|
|
|
* abandon old silent connections.
|
|
|
|
*/
|
2009-12-12 16:54:01 -05:00
|
|
|
long old_time = pp->response_time;
|
2006-04-18 19:14:30 -04:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
pp->response_time = 60*1000; /* give it only a minute for now */
|
2010-03-02 08:26:23 -05:00
|
|
|
pp->response = Curl_tvnow(); /* timeout relative 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
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
pp->response_time = old_time; /* set this back to previous value */
|
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");
|
2006-09-07 17:49:20 -04:00
|
|
|
ftpc->ctl_valid = FALSE; /* mark control connection as bad */
|
2007-07-17 16:59:53 -04:00
|
|
|
conn->bits.close = TRUE; /* mark for closure */
|
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
|
|
|
|
2010-11-04 16:44:02 -04:00
|
|
|
if(ftpc->dont_check && data->req.maxdownload > 0) {
|
|
|
|
/* we have just sent ABOR and there is no reliable way to check if it was
|
|
|
|
* successful or not; we have to close the connection now */
|
|
|
|
infof(data, "partial download completed, closing connection\n");
|
|
|
|
conn->bits.close = TRUE; /* mark for closure */
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
if(!ftpc->dont_check) {
|
2005-02-09 08:06:40 -05:00
|
|
|
/* 226 Transfer complete, 250 Requested file action okay, completed. */
|
|
|
|
if((ftpcode != 226) && (ftpcode != 250)) {
|
|
|
|
failf(data, "server did not report OK, got %d", ftpcode);
|
2006-04-18 19:14:30 -04:00
|
|
|
result = CURLE_PARTIAL_FILE;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
2002-02-28 18:31:23 -05:00
|
|
|
|
2007-01-16 17:22:10 -05:00
|
|
|
if(result || premature)
|
2006-04-18 19:14:30 -04:00
|
|
|
/* the response code from the transfer showed an error already so no
|
|
|
|
use checking further */
|
|
|
|
;
|
|
|
|
else if(data->set.upload) {
|
|
|
|
if((-1 != data->set.infilesize) &&
|
|
|
|
(data->set.infilesize != *ftp->bytecountp) &&
|
|
|
|
!data->set.crlf &&
|
2007-09-26 08:00:01 -04:00
|
|
|
(ftp->transfer == FTPTRANSFER_BODY)) {
|
2008-08-15 21:33:59 -04:00
|
|
|
failf(data, "Uploaded unaligned file size (%" FORMAT_OFF_T
|
|
|
|
" out of %" FORMAT_OFF_T " bytes)",
|
2006-04-18 19:14:30 -04:00
|
|
|
*ftp->bytecountp, data->set.infilesize);
|
|
|
|
result = CURLE_PARTIAL_FILE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2007-11-24 18:16:55 -05:00
|
|
|
if((-1 != data->req.size) &&
|
|
|
|
(data->req.size != *ftp->bytecountp) &&
|
2006-04-26 03:40:37 -04:00
|
|
|
#ifdef CURL_DO_LINEEND_CONV
|
|
|
|
/* Most FTP servers don't adjust their file SIZE response for CRLFs, so
|
|
|
|
* we'll check to see if the discrepancy can be explained by the number
|
|
|
|
* of CRLFs we've changed to LFs.
|
|
|
|
*/
|
2007-11-24 18:16:55 -05:00
|
|
|
((data->req.size + data->state.crlf_conversions) !=
|
|
|
|
*ftp->bytecountp) &&
|
2006-04-26 03:40:37 -04:00
|
|
|
#endif /* CURL_DO_LINEEND_CONV */
|
2007-11-24 18:16:55 -05:00
|
|
|
(data->req.maxdownload != *ftp->bytecountp)) {
|
2008-08-15 21:33:59 -04:00
|
|
|
failf(data, "Received only partial file: %" FORMAT_OFF_T " bytes",
|
2006-04-18 19:14:30 -04:00
|
|
|
*ftp->bytecountp);
|
|
|
|
result = CURLE_PARTIAL_FILE;
|
|
|
|
}
|
2006-09-07 17:49:20 -04:00
|
|
|
else if(!ftpc->dont_check &&
|
2006-04-18 19:14:30 -04:00
|
|
|
!*ftp->bytecountp &&
|
2007-11-24 18:16:55 -05:00
|
|
|
(data->req.size>0)) {
|
2006-04-18 19:14:30 -04:00
|
|
|
failf(data, "No data was received!");
|
|
|
|
result = CURLE_FTP_COULDNT_RETR_FILE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* clear these for next connection */
|
2007-09-26 08:00:01 -04:00
|
|
|
ftp->transfer = FTPTRANSFER_BODY;
|
2006-09-07 17:49:20 -04:00
|
|
|
ftpc->dont_check = FALSE;
|
2001-11-28 08:05:39 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
/* Send any post-transfer QUOTE strings? */
|
2007-01-16 17:22:10 -05:00
|
|
|
if(!status && !result && !premature && data->set.postquote)
|
2005-02-09 08:06:40 -05:00
|
|
|
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.
|
2009-07-27 14:36:56 -04:00
|
|
|
*
|
|
|
|
* BLOCKING
|
2005-02-09 08:06:40 -05:00
|
|
|
*/
|
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;
|
2010-07-17 18:44:25 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
|
|
|
struct pingpong *pp = &ftpc->pp;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
item = quote;
|
2007-11-05 04:45:09 -05:00
|
|
|
while(item) {
|
|
|
|
if(item->data) {
|
2009-07-27 14:36:56 -04:00
|
|
|
char *cmd = item->data;
|
|
|
|
bool acceptfail = FALSE;
|
|
|
|
|
|
|
|
/* if a command starts with an asterisk, which a legal FTP command never
|
|
|
|
can, the command will be allowed to fail without it causing any
|
|
|
|
aborts or cancels etc. It will cause libcurl to act as if the command
|
|
|
|
is successful, whatever the server reponds. */
|
|
|
|
|
|
|
|
if(cmd[0] == '*') {
|
|
|
|
cmd++;
|
|
|
|
acceptfail = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
FTPSENDF(conn, "%s", cmd);
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2010-07-17 18:44:25 -04:00
|
|
|
pp->response = Curl_tvnow(); /* timeout relative now */
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
result = Curl_GetFTPResponse(&nread, conn, &ftpcode);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(result)
|
2005-02-09 08:06:40 -05:00
|
|
|
return result;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2009-07-27 14:36:56 -04:00
|
|
|
if(!acceptfail && (ftpcode >= 400)) {
|
|
|
|
failf(conn->data, "QUOT string not accepted: %s", cmd);
|
2007-08-30 16:34:57 -04:00
|
|
|
return CURLE_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
|
|
|
|
2006-08-19 17:18:36 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* ftp_need_type()
|
|
|
|
*
|
|
|
|
* Returns TRUE if we in the current situation should send TYPE
|
|
|
|
*/
|
|
|
|
static int ftp_need_type(struct connectdata *conn,
|
|
|
|
bool ascii_wanted)
|
|
|
|
{
|
2006-09-07 17:49:20 -04:00
|
|
|
return conn->proto.ftpc.transfertype != (ascii_wanted?'A':'I');
|
2006-08-19 17:18:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* ftp_nb_type()
|
|
|
|
*
|
|
|
|
* Set TYPE. We only deal with ASCII or BINARY so this function
|
|
|
|
* sets one of them.
|
|
|
|
* If the transfer type is not sent, simulate on OK response in newstate
|
|
|
|
*/
|
|
|
|
static CURLcode ftp_nb_type(struct connectdata *conn,
|
|
|
|
bool ascii, ftpstate newstate)
|
|
|
|
{
|
2006-09-07 17:49:20 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2006-08-19 17:18:36 -04:00
|
|
|
CURLcode result;
|
2007-10-02 11:26:30 -04:00
|
|
|
char want = (char)(ascii?'A':'I');
|
2006-08-19 17:18:36 -04:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ftpc->transfertype == want) {
|
2006-08-19 17:18:36 -04:00
|
|
|
state(conn, newstate);
|
|
|
|
return ftp_state_type_resp(conn, 200, newstate);
|
|
|
|
}
|
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
PPSENDF(&ftpc->pp, "TYPE %c", want);
|
2006-08-19 17:18:36 -04:00
|
|
|
state(conn, newstate);
|
|
|
|
|
|
|
|
/* keep track of our current transfer type */
|
2007-08-27 02:31:28 -04:00
|
|
|
ftpc->transfertype = want;
|
2006-08-19 17:18:36 -04:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
*
|
|
|
|
*/
|
2007-03-24 22:30:58 -04:00
|
|
|
#ifndef CURL_DISABLE_VERBOSE_STRINGS
|
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)
|
|
|
|
{
|
|
|
|
char buf[256];
|
|
|
|
Curl_printable_address(ai, buf, sizeof(buf));
|
|
|
|
infof(conn->data, "Connecting to %s (%s) port %d\n", newhost, buf, port);
|
|
|
|
}
|
2007-03-24 22:30:58 -04:00
|
|
|
#endif
|
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;
|
|
|
|
char *ptr;
|
|
|
|
char *ptr2;
|
2006-09-07 17:49:20 -04:00
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2003-02-27 07:50:54 -05:00
|
|
|
|
2007-11-24 18:16:55 -05:00
|
|
|
if(data->state.use_range && data->state.range) {
|
|
|
|
from=curlx_strtoofft(data->state.range, &ptr, 0);
|
2010-04-16 17:20:07 -04:00
|
|
|
while(*ptr && (ISSPACE(*ptr) || (*ptr=='-')))
|
2005-02-09 08:06:40 -05:00
|
|
|
ptr++;
|
|
|
|
to=curlx_strtoofft(ptr, &ptr2, 0);
|
|
|
|
if(ptr == ptr2) {
|
|
|
|
/* we didn't get any digit */
|
|
|
|
to=-1;
|
|
|
|
}
|
|
|
|
if((-1 == to) && (from>=0)) {
|
|
|
|
/* X - */
|
2007-11-24 18:16:55 -05:00
|
|
|
data->state.resume_from = from;
|
2008-08-15 21:33:59 -04:00
|
|
|
DEBUGF(infof(conn->data, "FTP RANGE %" FORMAT_OFF_T " to end of file\n",
|
2005-05-07 16:41:16 -04:00
|
|
|
from));
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
else if(from < 0) {
|
|
|
|
/* -Y */
|
2007-11-24 18:16:55 -05:00
|
|
|
data->req.maxdownload = -from;
|
|
|
|
data->state.resume_from = from;
|
2008-08-15 21:33:59 -04:00
|
|
|
DEBUGF(infof(conn->data, "FTP RANGE the last %" FORMAT_OFF_T " bytes\n",
|
2010-04-16 17:00:21 -04:00
|
|
|
-from));
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* X-Y */
|
2010-04-16 17:00:21 -04:00
|
|
|
data->req.maxdownload = (to-from)+1; /* include last byte */
|
2007-11-24 18:16:55 -05:00
|
|
|
data->state.resume_from = from;
|
2008-08-15 21:33:59 -04:00
|
|
|
DEBUGF(infof(conn->data, "FTP RANGE from %" FORMAT_OFF_T
|
|
|
|
" getting %" FORMAT_OFF_T " bytes\n",
|
2007-11-24 18:16:55 -05:00
|
|
|
from, data->req.maxdownload));
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
2008-08-15 21:33:59 -04:00
|
|
|
DEBUGF(infof(conn->data, "range-download from %" FORMAT_OFF_T
|
|
|
|
" to %" FORMAT_OFF_T ", totally %" FORMAT_OFF_T " bytes\n",
|
2007-11-24 18:16:55 -05:00
|
|
|
from, to, data->req.maxdownload));
|
2006-09-07 17:49:20 -04:00
|
|
|
ftpc->dont_check = TRUE; /* dont check for successful transfer */
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
2007-02-16 10:37:05 -05:00
|
|
|
else
|
2007-11-24 18:16:55 -05:00
|
|
|
data->req.maxdownload = -1;
|
2005-02-09 08:06:40 -05:00
|
|
|
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
|
|
|
/*
|
2011-12-20 06:52:24 -05:00
|
|
|
* ftp_do_more()
|
2005-02-09 08:06:40 -05:00
|
|
|
*
|
|
|
|
* This function shall be called when the second FTP (data) connection is
|
|
|
|
* connected.
|
|
|
|
*/
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2011-12-20 06:52:24 -05:00
|
|
|
static CURLcode ftp_do_more(struct connectdata *conn, bool *complete)
|
2005-02-09 08:06:40 -05:00
|
|
|
{
|
|
|
|
struct SessionHandle *data=conn->data;
|
2007-10-22 11:05:35 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2005-02-09 08:06:40 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2011-12-20 06:52:24 -05:00
|
|
|
bool connected = FALSE;
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2007-12-08 17:50:55 -05:00
|
|
|
/* the ftp struct is inited in ftp_connect() */
|
2007-11-24 18:16:55 -05:00
|
|
|
struct FTP *ftp = data->state.proto.ftp;
|
2003-12-01 05:14:39 -05:00
|
|
|
|
2011-12-20 06:52:24 -05:00
|
|
|
/* if the second connection isn't done yet, wait for it */
|
|
|
|
if(!conn->bits.tcpconnect[SECONDARYSOCKET]) {
|
|
|
|
result = Curl_is_connected(conn, SECONDARYSOCKET, &connected);
|
|
|
|
|
|
|
|
/* Ready to do more? */
|
|
|
|
if(connected) {
|
|
|
|
DEBUGF(infof(data, "DO-MORE connected phase starts\n"));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return result;
|
|
|
|
}
|
2003-12-03 03:26:31 -05:00
|
|
|
|
2007-09-26 08:00:01 -04:00
|
|
|
if(ftp->transfer <= FTPTRANSFER_INFO) {
|
|
|
|
/* a transfer is about to take place, or if not a file name was given
|
|
|
|
so we'll do a SIZE on it later and then we need the right TYPE first */
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2011-12-20 07:06:26 -05:00
|
|
|
if(ftpc->wait_data_conn == TRUE) {
|
2011-12-19 08:35:20 -05:00
|
|
|
bool serv_conned;
|
|
|
|
|
|
|
|
result = ReceivedServerConnect(conn, &serv_conned);
|
|
|
|
if(result)
|
|
|
|
return result; /* Failed to accept data connection */
|
|
|
|
|
|
|
|
if(serv_conned) {
|
|
|
|
/* It looks data connection is established */
|
|
|
|
result = AcceptServerConnect(conn);
|
2011-12-20 07:06:26 -05:00
|
|
|
ftpc->wait_data_conn = FALSE;
|
2011-12-19 08:35:20 -05:00
|
|
|
if(result == CURLE_OK)
|
|
|
|
result = InitiateTransfer(conn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(data->set.upload) {
|
2007-09-26 08:00:01 -04:00
|
|
|
result = ftp_nb_type(conn, data->set.prefer_ascii, FTP_STOR_TYPE);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(result)
|
2006-08-19 17:18:36 -04:00
|
|
|
return result;
|
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)
|
|
|
|
;
|
2007-10-22 11:05:35 -04:00
|
|
|
else if(data->set.ftp_list_only || !ftpc->file) {
|
2005-02-09 08:06:40 -05:00
|
|
|
/* 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. */
|
2007-09-26 08:00:01 -04:00
|
|
|
|
|
|
|
/* But only if a body transfer was requested. */
|
|
|
|
if(ftp->transfer == FTPTRANSFER_BODY) {
|
2009-08-11 16:43:12 -04:00
|
|
|
result = ftp_nb_type(conn, TRUE, FTP_LIST_TYPE);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(result)
|
2007-09-26 08:00:01 -04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
/* otherwise just fall through */
|
2003-05-23 07:14:09 -04:00
|
|
|
}
|
|
|
|
else {
|
2006-08-19 17:18:36 -04:00
|
|
|
result = ftp_nb_type(conn, data->set.prefer_ascii, FTP_RETR_TYPE);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(result)
|
2006-08-19 17:18:36 -04:00
|
|
|
return result;
|
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
|
|
|
|
2007-11-02 19:34:00 -04:00
|
|
|
if((result == CURLE_OK) && (ftp->transfer != FTPTRANSFER_BODY))
|
2005-02-09 08:06:40 -05:00
|
|
|
/* no data to transfer. FIX: it feels like a kludge to have this here
|
|
|
|
too! */
|
2010-04-16 17:43:04 -04:00
|
|
|
Curl_setup_transfer(conn, -1, -1, FALSE, NULL, -1, NULL);
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2011-12-20 07:06:26 -05:00
|
|
|
if(!ftpc->wait_data_conn) {
|
2011-12-20 06:52:24 -05:00
|
|
|
/* no waiting for the data connection so this is now complete */
|
|
|
|
*complete = TRUE;
|
|
|
|
DEBUGF(infof(data, "DO-MORE phase ends with %d\n", (int)result));
|
|
|
|
}
|
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
|
|
|
|
2008-01-31 07:04:33 -05:00
|
|
|
if(conn->data->set.opt_no_body) {
|
2007-06-24 15:32:33 -04:00
|
|
|
/* requested no body means no transfer... */
|
2007-11-24 18:16:55 -05:00
|
|
|
struct FTP *ftp = conn->data->state.proto.ftp;
|
2007-09-26 08:00:01 -04:00
|
|
|
ftp->transfer = FTPTRANSFER_INFO;
|
2007-06-24 15:32:33 -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)
|
2007-12-08 17:50:55 -05:00
|
|
|
result = 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
|
|
|
}
|
2011-08-18 17:35:15 -04:00
|
|
|
*connected = conn->bits.tcpconnect[FIRSTSOCKET];
|
2005-02-09 08:06:40 -05:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2010-05-31 10:24:01 -04:00
|
|
|
static void wc_data_dtor(void *ptr)
|
2010-05-12 09:33:22 -04:00
|
|
|
{
|
|
|
|
struct ftp_wc_tmpdata *tmp = ptr;
|
|
|
|
if(tmp)
|
2010-06-09 09:45:46 -04:00
|
|
|
Curl_ftp_parselist_data_free(&tmp->parser);
|
2010-05-12 09:33:22 -04:00
|
|
|
Curl_safefree(tmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static CURLcode init_wc_data(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
char *last_slash;
|
|
|
|
char *path = conn->data->state.path;
|
|
|
|
struct WildcardData *wildcard = &(conn->data->wildcard);
|
|
|
|
CURLcode ret = CURLE_OK;
|
|
|
|
struct ftp_wc_tmpdata *ftp_tmp;
|
|
|
|
|
|
|
|
last_slash = strrchr(conn->data->state.path, '/');
|
|
|
|
if(last_slash) {
|
|
|
|
last_slash++;
|
|
|
|
if(last_slash[0] == '\0') {
|
|
|
|
wildcard->state = CURLWC_CLEAN;
|
|
|
|
ret = ftp_parse_url_path(conn);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
wildcard->pattern = strdup(last_slash);
|
2011-04-20 09:17:42 -04:00
|
|
|
if(!wildcard->pattern)
|
2010-05-12 09:33:22 -04:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
last_slash[0] = '\0'; /* cut file from path */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else { /* there is only 'wildcard pattern' or nothing */
|
|
|
|
if(path[0]) {
|
|
|
|
wildcard->pattern = strdup(path);
|
2011-04-20 09:17:42 -04:00
|
|
|
if(!wildcard->pattern)
|
2010-05-12 09:33:22 -04:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
path[0] = '\0';
|
|
|
|
}
|
|
|
|
else { /* only list */
|
2010-06-24 04:10:29 -04:00
|
|
|
wildcard->state = CURLWC_CLEAN;
|
2010-05-12 09:33:22 -04:00
|
|
|
ret = ftp_parse_url_path(conn);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* program continues only if URL is not ending with slash, allocate needed
|
|
|
|
resources for wildcard transfer */
|
|
|
|
|
|
|
|
/* allocate ftp protocol specific temporary wildcard data */
|
2012-04-04 11:30:12 -04:00
|
|
|
ftp_tmp = calloc(1, sizeof(struct ftp_wc_tmpdata));
|
2010-05-12 09:33:22 -04:00
|
|
|
if(!ftp_tmp) {
|
2012-04-04 11:30:12 -04:00
|
|
|
Curl_safefree(wildcard->pattern);
|
2010-05-12 09:33:22 -04:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* INITIALIZE parselist structure */
|
2010-06-09 09:45:46 -04:00
|
|
|
ftp_tmp->parser = Curl_ftp_parselist_data_alloc();
|
2010-06-17 13:56:25 -04:00
|
|
|
if(!ftp_tmp->parser) {
|
2012-04-04 11:30:12 -04:00
|
|
|
Curl_safefree(wildcard->pattern);
|
|
|
|
Curl_safefree(ftp_tmp);
|
2010-05-12 09:33:22 -04:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2010-06-17 13:56:25 -04:00
|
|
|
}
|
2010-05-12 09:33:22 -04:00
|
|
|
|
|
|
|
wildcard->tmp = ftp_tmp; /* put it to the WildcardData tmp pointer */
|
2010-05-31 10:24:01 -04:00
|
|
|
wildcard->tmp_dtor = wc_data_dtor;
|
2010-05-12 09:33:22 -04:00
|
|
|
|
|
|
|
/* wildcard does not support NOCWD option (assert it?) */
|
|
|
|
if(conn->data->set.ftp_filemethod == FTPFILE_NOCWD)
|
|
|
|
conn->data->set.ftp_filemethod = FTPFILE_MULTICWD;
|
|
|
|
|
|
|
|
/* try to parse ftp url */
|
|
|
|
ret = ftp_parse_url_path(conn);
|
|
|
|
if(ret) {
|
2012-04-04 11:30:12 -04:00
|
|
|
Curl_safefree(wildcard->pattern);
|
|
|
|
wildcard->tmp_dtor(wildcard->tmp);
|
|
|
|
wildcard->tmp_dtor = ZERO_NULL;
|
|
|
|
wildcard->tmp = NULL;
|
2010-05-12 09:33:22 -04:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-04-04 11:30:12 -04:00
|
|
|
wildcard->path = strdup(conn->data->state.path);
|
|
|
|
if(!wildcard->path) {
|
|
|
|
Curl_safefree(wildcard->pattern);
|
|
|
|
wildcard->tmp_dtor(wildcard->tmp);
|
|
|
|
wildcard->tmp_dtor = ZERO_NULL;
|
|
|
|
wildcard->tmp = NULL;
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
2010-05-12 09:33:22 -04:00
|
|
|
/* backup old write_function */
|
|
|
|
ftp_tmp->backup.write_function = conn->data->set.fwrite_func;
|
2011-04-20 09:17:42 -04:00
|
|
|
/* parsing write function */
|
2010-06-09 09:45:46 -04:00
|
|
|
conn->data->set.fwrite_func = Curl_ftp_parselist;
|
2010-05-12 09:33:22 -04:00
|
|
|
/* backup old file descriptor */
|
|
|
|
ftp_tmp->backup.file_descriptor = conn->data->set.out;
|
|
|
|
/* let the writefunc callback know what curl pointer is working with */
|
|
|
|
conn->data->set.out = conn;
|
|
|
|
|
|
|
|
infof(conn->data, "Wildcard - Parsing started\n");
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2010-10-20 21:15:14 -04:00
|
|
|
/* This is called recursively */
|
2010-05-12 09:33:22 -04:00
|
|
|
static CURLcode wc_statemach(struct connectdata *conn)
|
|
|
|
{
|
2010-10-20 21:15:14 -04:00
|
|
|
struct WildcardData * const wildcard = &(conn->data->wildcard);
|
2010-05-12 09:33:22 -04:00
|
|
|
CURLcode ret = CURLE_OK;
|
2010-10-20 21:15:14 -04:00
|
|
|
|
2010-05-12 09:33:22 -04:00
|
|
|
switch (wildcard->state) {
|
|
|
|
case CURLWC_INIT:
|
|
|
|
ret = init_wc_data(conn);
|
|
|
|
if(wildcard->state == CURLWC_CLEAN)
|
|
|
|
/* only listing! */
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
wildcard->state = ret ? CURLWC_ERROR : CURLWC_MATCHING;
|
|
|
|
break;
|
|
|
|
|
2010-10-20 21:15:14 -04:00
|
|
|
case CURLWC_MATCHING: {
|
2010-05-12 09:33:22 -04:00
|
|
|
/* In this state is LIST response successfully parsed, so lets restore
|
|
|
|
previous WRITEFUNCTION callback and WRITEDATA pointer */
|
2010-10-20 21:15:14 -04:00
|
|
|
struct ftp_wc_tmpdata *ftp_tmp = wildcard->tmp;
|
2010-05-12 09:33:22 -04:00
|
|
|
conn->data->set.fwrite_func = ftp_tmp->backup.write_function;
|
|
|
|
conn->data->set.out = ftp_tmp->backup.file_descriptor;
|
2012-04-04 11:30:12 -04:00
|
|
|
ftp_tmp->backup.write_function = ZERO_NULL;
|
|
|
|
ftp_tmp->backup.file_descriptor = NULL;
|
2010-05-12 09:33:22 -04:00
|
|
|
wildcard->state = CURLWC_DOWNLOADING;
|
|
|
|
|
2010-06-09 09:45:46 -04:00
|
|
|
if(Curl_ftp_parselist_geterror(ftp_tmp->parser)) {
|
2010-05-12 09:33:22 -04:00
|
|
|
/* error found in LIST parsing */
|
|
|
|
wildcard->state = CURLWC_CLEAN;
|
|
|
|
return wc_statemach(conn);
|
|
|
|
}
|
|
|
|
else if(wildcard->filelist->size == 0) {
|
|
|
|
/* no corresponding file */
|
|
|
|
wildcard->state = CURLWC_CLEAN;
|
|
|
|
return CURLE_REMOTE_FILE_NOT_FOUND;
|
|
|
|
}
|
2010-10-20 21:15:14 -04:00
|
|
|
return wc_statemach(conn);
|
2010-12-02 10:35:02 -05:00
|
|
|
}
|
2010-05-12 09:33:22 -04:00
|
|
|
|
|
|
|
case CURLWC_DOWNLOADING: {
|
|
|
|
/* filelist has at least one file, lets get first one */
|
2010-10-20 21:15:14 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2010-05-12 09:33:22 -04:00
|
|
|
struct curl_fileinfo *finfo = wildcard->filelist->head->ptr;
|
2010-10-20 21:15:14 -04:00
|
|
|
char *tmp_path = malloc(strlen(conn->data->state.path) +
|
2010-05-12 09:33:22 -04:00
|
|
|
strlen(finfo->filename) + 1);
|
|
|
|
if(!tmp_path) {
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
tmp_path[0] = 0;
|
|
|
|
/* make full path to matched file */
|
|
|
|
strcat(tmp_path, wildcard->path);
|
|
|
|
strcat(tmp_path, finfo->filename);
|
|
|
|
/* switch default "state.pathbuffer" and tmp_path, good to see
|
|
|
|
ftp_parse_url_path function to understand this trick */
|
2011-10-12 15:32:10 -04:00
|
|
|
Curl_safefree(conn->data->state.pathbuffer);
|
2010-05-12 09:33:22 -04:00
|
|
|
conn->data->state.pathbuffer = tmp_path;
|
|
|
|
conn->data->state.path = tmp_path;
|
|
|
|
|
|
|
|
infof(conn->data, "Wildcard - START of \"%s\"\n", finfo->filename);
|
|
|
|
if(conn->data->set.chunk_bgn) {
|
2010-10-20 21:15:14 -04:00
|
|
|
long userresponse = conn->data->set.chunk_bgn(
|
2010-05-12 09:33:22 -04:00
|
|
|
finfo, wildcard->customptr, (int)wildcard->filelist->size);
|
|
|
|
switch(userresponse) {
|
|
|
|
case CURL_CHUNK_BGN_FUNC_SKIP:
|
|
|
|
infof(conn->data, "Wildcard - \"%s\" skipped by user\n",
|
|
|
|
finfo->filename);
|
|
|
|
wildcard->state = CURLWC_SKIP;
|
|
|
|
return wc_statemach(conn);
|
|
|
|
case CURL_CHUNK_BGN_FUNC_FAIL:
|
|
|
|
return CURLE_CHUNK_FAILED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(finfo->filetype != CURLFILETYPE_FILE) {
|
|
|
|
wildcard->state = CURLWC_SKIP;
|
|
|
|
return wc_statemach(conn);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(finfo->flags & CURLFINFOFLAG_KNOWN_SIZE)
|
|
|
|
ftpc->known_filesize = finfo->size;
|
|
|
|
|
|
|
|
ret = ftp_parse_url_path(conn);
|
|
|
|
if(ret) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* we don't need the Curl_fileinfo of first file anymore */
|
|
|
|
Curl_llist_remove(wildcard->filelist, wildcard->filelist->head, NULL);
|
|
|
|
|
|
|
|
if(wildcard->filelist->size == 0) { /* remains only one file to down. */
|
|
|
|
wildcard->state = CURLWC_CLEAN;
|
|
|
|
/* after that will be ftp_do called once again and no transfer
|
|
|
|
will be done because of CURLWC_CLEAN state */
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case CURLWC_SKIP: {
|
|
|
|
if(conn->data->set.chunk_end)
|
|
|
|
conn->data->set.chunk_end(conn->data->wildcard.customptr);
|
|
|
|
Curl_llist_remove(wildcard->filelist, wildcard->filelist->head, NULL);
|
|
|
|
wildcard->state = (wildcard->filelist->size == 0) ?
|
|
|
|
CURLWC_CLEAN : CURLWC_DOWNLOADING;
|
2010-10-20 21:15:14 -04:00
|
|
|
return wc_statemach(conn);
|
2010-12-02 10:35:02 -05:00
|
|
|
}
|
2010-05-12 09:33:22 -04:00
|
|
|
|
2010-10-20 21:15:14 -04:00
|
|
|
case CURLWC_CLEAN: {
|
|
|
|
struct ftp_wc_tmpdata *ftp_tmp = wildcard->tmp;
|
2010-05-12 09:33:22 -04:00
|
|
|
ret = CURLE_OK;
|
|
|
|
if(ftp_tmp) {
|
2010-06-09 09:45:46 -04:00
|
|
|
ret = Curl_ftp_parselist_geterror(ftp_tmp->parser);
|
2010-05-12 09:33:22 -04:00
|
|
|
}
|
|
|
|
wildcard->state = ret ? CURLWC_ERROR : CURLWC_DONE;
|
2010-10-20 21:15:14 -04:00
|
|
|
} break;
|
2010-05-12 09:33:22 -04:00
|
|
|
|
|
|
|
case CURLWC_DONE:
|
|
|
|
case CURLWC_ERROR:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2001-11-01 07:47:22 -05:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
2007-12-08 17:50:55 -05:00
|
|
|
* ftp_do()
|
2001-11-01 07:47:22 -05:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2007-12-08 17:50:55 -05:00
|
|
|
static CURLcode ftp_do(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;
|
2011-12-20 07:06:26 -05:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2003-07-19 20:18:11 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
*done = FALSE; /* default to false */
|
2011-12-20 07:06:26 -05:00
|
|
|
ftpc->wait_data_conn = FALSE; /* default to no such wait */
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
/*
|
|
|
|
Since connections can be re-used between SessionHandles, this might be a
|
|
|
|
connection already existing but on a fresh SessionHandle struct so we must
|
|
|
|
make sure we have a good 'struct FTP' to play with. For new connections,
|
2007-12-08 17:50:55 -05:00
|
|
|
the struct FTP is allocated and setup in the ftp_connect() function.
|
2006-09-07 17:49:20 -04:00
|
|
|
*/
|
2007-10-22 11:05:35 -04:00
|
|
|
Curl_reset_reqproto(conn);
|
2006-09-07 17:49:20 -04:00
|
|
|
retcode = ftp_init(conn);
|
|
|
|
if(retcode)
|
|
|
|
return retcode;
|
|
|
|
|
2010-05-12 09:33:22 -04:00
|
|
|
if(conn->data->set.wildcardmatch) {
|
|
|
|
retcode = wc_statemach(conn);
|
|
|
|
if(conn->data->wildcard.state == CURLWC_SKIP ||
|
|
|
|
conn->data->wildcard.state == CURLWC_DONE) {
|
|
|
|
/* do not call ftp_regular_transfer */
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
if(retcode) /* error, loop or skipping the file */
|
|
|
|
return retcode;
|
|
|
|
}
|
|
|
|
else { /* no wildcard FSM needed */
|
|
|
|
retcode = ftp_parse_url_path(conn);
|
|
|
|
if(retcode)
|
|
|
|
return retcode;
|
|
|
|
}
|
2004-10-16 10:06:54 -04:00
|
|
|
|
2006-09-30 16:31:11 -04: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;
|
|
|
|
}
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
|
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;
|
2009-12-12 16:54:01 -05:00
|
|
|
#define SBUF_SIZE 1024
|
2007-07-01 18:01:18 -04:00
|
|
|
char s[SBUF_SIZE];
|
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;
|
2007-07-01 18:01:18 -04:00
|
|
|
#if defined(HAVE_KRB4) || defined(HAVE_GSSAPI)
|
|
|
|
enum protection_level data_sec = conn->data_prot;
|
|
|
|
#endif
|
2001-01-05 05:11:41 -05:00
|
|
|
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
2007-07-01 18:01:18 -04:00
|
|
|
vsnprintf(s, SBUF_SIZE-3, fmt, ap);
|
2001-01-05 05:11:41 -05:00
|
|
|
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
|
|
|
|
2006-04-07 17:50:47 -04:00
|
|
|
res = Curl_convert_to_network(conn->data, s, write_len);
|
|
|
|
/* Curl_convert_to_network calls failf if unsuccessful */
|
2011-04-19 18:48:20 -04:00
|
|
|
if(res)
|
2006-04-07 17:50:47 -04:00
|
|
|
return(res);
|
|
|
|
|
2010-02-02 11:25:07 -05:00
|
|
|
for(;;) {
|
2007-07-01 18:01:18 -04:00
|
|
|
#if defined(HAVE_KRB4) || defined(HAVE_GSSAPI)
|
2010-11-13 17:42:34 -05:00
|
|
|
conn->data_prot = PROT_CMD;
|
2007-07-01 18:01:18 -04:00
|
|
|
#endif
|
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);
|
2007-07-01 18:01:18 -04:00
|
|
|
#if defined(HAVE_KRB4) || defined(HAVE_GSSAPI)
|
2010-11-13 17:42:34 -05:00
|
|
|
DEBUGASSERT(data_sec > PROT_NONE && data_sec < PROT_LAST);
|
2007-07-01 18:01:18 -04:00
|
|
|
conn->data_prot = data_sec;
|
|
|
|
#endif
|
2002-01-16 09:46:00 -05:00
|
|
|
|
|
|
|
if(CURLE_OK != res)
|
|
|
|
break;
|
|
|
|
|
2002-04-12 03:21:11 -04:00
|
|
|
if(conn->data->set.verbose)
|
2006-12-05 08:49:29 -05:00
|
|
|
Curl_debug(conn->data, CURLINFO_HEADER_OUT,
|
2006-10-17 06:04:13 -04:00
|
|
|
sptr, (size_t)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
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
if(conn->proto.ftpc.ctl_valid) {
|
2011-10-24 14:42:01 -04:00
|
|
|
result = Curl_pp_sendf(&conn->proto.ftpc.pp, "QUIT", NULL);
|
|
|
|
if(result) {
|
|
|
|
failf(conn->data, "Failure sending QUIT command: %s",
|
|
|
|
curl_easy_strerror(result));
|
|
|
|
conn->proto.ftpc.ctl_valid = FALSE; /* mark control connection as bad */
|
|
|
|
conn->bits.close = TRUE; /* mark for connection closure */
|
|
|
|
state(conn, FTP_STOP);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
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
|
|
|
/***********************************************************************
|
|
|
|
*
|
2007-12-08 17:50:55 -05:00
|
|
|
* ftp_disconnect()
|
2001-11-01 07:47:22 -05:00
|
|
|
*
|
|
|
|
* 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
|
|
|
*/
|
2010-11-19 07:43:20 -05:00
|
|
|
static CURLcode ftp_disconnect(struct connectdata *conn, bool dead_connection)
|
2001-03-02 02:44:05 -05:00
|
|
|
{
|
2006-09-07 17:49:20 -04:00
|
|
|
struct ftp_conn *ftpc= &conn->proto.ftpc;
|
2009-12-12 16:54:01 -05:00
|
|
|
struct pingpong *pp = &ftpc->pp;
|
2001-03-02 02:44:05 -05:00
|
|
|
|
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
|
|
|
*/
|
2010-11-19 07:43:20 -05:00
|
|
|
if(dead_connection)
|
|
|
|
ftpc->ctl_valid = FALSE;
|
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! */
|
2007-10-24 17:14:11 -04:00
|
|
|
(void)ftp_quit(conn); /* ignore errors on the QUIT */
|
|
|
|
|
|
|
|
if(ftpc->entrypath) {
|
|
|
|
struct SessionHandle *data = conn->data;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(data->state.most_recent_ftp_entrypath == ftpc->entrypath) {
|
2007-10-24 17:14:11 -04:00
|
|
|
data->state.most_recent_ftp_entrypath = NULL;
|
2004-12-16 13:18:23 -05:00
|
|
|
}
|
2007-10-24 17:14:11 -04:00
|
|
|
free(ftpc->entrypath);
|
|
|
|
ftpc->entrypath = NULL;
|
|
|
|
}
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2007-10-24 17:14:11 -04:00
|
|
|
freedirs(ftpc);
|
|
|
|
if(ftpc->prevpath) {
|
|
|
|
free(ftpc->prevpath);
|
|
|
|
ftpc->prevpath = NULL;
|
2001-04-03 06:20:23 -04:00
|
|
|
}
|
2009-08-24 08:57:25 -04:00
|
|
|
if(ftpc->server_os) {
|
|
|
|
free(ftpc->server_os);
|
|
|
|
ftpc->server_os = NULL;
|
|
|
|
}
|
2007-10-24 17:14:11 -04:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
Curl_pp_disconnect(pp);
|
|
|
|
|
2010-10-02 03:33:24 -04:00
|
|
|
#if defined(HAVE_KRB4) || defined(HAVE_GSSAPI)
|
|
|
|
Curl_sec_end(conn);
|
|
|
|
#endif
|
|
|
|
|
2001-03-02 02:44:05 -05:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
2001-09-04 22:49:04 -04:00
|
|
|
|
2004-06-03 07:41:05 -04:00
|
|
|
/***********************************************************************
|
|
|
|
*
|
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
|
|
|
{
|
|
|
|
struct SessionHandle *data = conn->data;
|
2006-09-07 17:49:20 -04:00
|
|
|
/* the ftp struct is already inited in ftp_connect() */
|
2007-11-24 18:16:55 -05:00
|
|
|
struct FTP *ftp = data->state.proto.ftp;
|
2006-09-07 17:49:20 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2008-10-07 21:17:51 -04:00
|
|
|
const char *slash_pos; /* position of the first '/' char in curpos */
|
|
|
|
const char *path_to_use = data->state.path;
|
|
|
|
const char *cur_pos;
|
|
|
|
const char *filename = NULL;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
cur_pos = path_to_use; /* current position in path. point at the begin
|
|
|
|
of next path component */
|
|
|
|
|
|
|
|
ftpc->ctl_valid = FALSE;
|
|
|
|
ftpc->cwdfail = FALSE;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-11-28 18:06:00 -05:00
|
|
|
switch(data->set.ftp_filemethod) {
|
|
|
|
case FTPFILE_NOCWD:
|
|
|
|
/* fastest, but less standard-compliant */
|
2007-09-24 17:47:35 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
The best time to check whether the path is a file or directory is right
|
|
|
|
here. so:
|
|
|
|
|
|
|
|
the first condition in the if() right here, is there just in case
|
|
|
|
someone decides to set path to NULL one day
|
|
|
|
*/
|
2007-11-24 18:16:55 -05:00
|
|
|
if(data->state.path &&
|
|
|
|
data->state.path[0] &&
|
|
|
|
(data->state.path[strlen(data->state.path) - 1] != '/') )
|
2008-10-07 21:17:51 -04:00
|
|
|
filename = data->state.path; /* this is a full file path */
|
2007-09-24 17:47:35 -04:00
|
|
|
/*
|
2007-10-22 11:05:35 -04:00
|
|
|
ftpc->file is not used anywhere other than for operations on a file.
|
2007-09-24 17:47:35 -04:00
|
|
|
In other words, never for directory operations.
|
2008-10-07 21:17:51 -04:00
|
|
|
So we can safely leave filename as NULL here and use it as a
|
2007-09-24 17:47:35 -04:00
|
|
|
argument in dir/file decisions.
|
|
|
|
*/
|
2005-11-28 18:06:00 -05:00
|
|
|
break;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-11-28 18:06:00 -05:00
|
|
|
case FTPFILE_SINGLECWD:
|
|
|
|
/* get the last slash */
|
2007-06-19 08:33:28 -04:00
|
|
|
if(!path_to_use[0]) {
|
|
|
|
/* no dir, no file */
|
|
|
|
ftpc->dirdepth = 0;
|
|
|
|
break;
|
|
|
|
}
|
2005-11-28 18:06:00 -05:00
|
|
|
slash_pos=strrchr(cur_pos, '/');
|
2007-03-30 16:52:42 -04:00
|
|
|
if(slash_pos || !*cur_pos) {
|
2008-09-06 00:47:14 -04:00
|
|
|
ftpc->dirs = calloc(1, sizeof(ftpc->dirs[0]));
|
2006-09-07 17:49:20 -04:00
|
|
|
if(!ftpc->dirs)
|
2005-11-28 18:06:00 -05:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
ftpc->dirs[0] = curl_easy_unescape(conn->data, slash_pos ? cur_pos : "/",
|
2012-03-16 14:06:34 -04:00
|
|
|
slash_pos ?
|
|
|
|
curlx_sztosi(slash_pos-cur_pos) : 1,
|
2006-09-07 17:49:20 -04:00
|
|
|
NULL);
|
|
|
|
if(!ftpc->dirs[0]) {
|
2007-10-24 17:14:11 -04:00
|
|
|
freedirs(ftpc);
|
2004-06-03 07:41:05 -04:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
2007-04-25 16:54:02 -04:00
|
|
|
ftpc->dirdepth = 1; /* we consider it to be a single dir */
|
2008-10-07 21:17:51 -04:00
|
|
|
filename = slash_pos ? slash_pos+1 : cur_pos; /* rest is file name */
|
2004-06-03 07:41:05 -04:00
|
|
|
}
|
2005-11-28 18:06:00 -05:00
|
|
|
else
|
2008-10-07 21:17:51 -04:00
|
|
|
filename = cur_pos; /* this is a file name only */
|
2005-11-28 18:06:00 -05:00
|
|
|
break;
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2005-11-28 18:06:00 -05:00
|
|
|
default: /* allow pretty much anything */
|
|
|
|
case FTPFILE_MULTICWD:
|
2006-09-07 17:49:20 -04:00
|
|
|
ftpc->dirdepth = 0;
|
|
|
|
ftpc->diralloc = 5; /* default dir depth to allocate */
|
2008-09-06 00:47:14 -04:00
|
|
|
ftpc->dirs = calloc(ftpc->diralloc, sizeof(ftpc->dirs[0]));
|
2006-09-07 17:49:20 -04:00
|
|
|
if(!ftpc->dirs)
|
2005-11-28 18:06:00 -05:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
|
2007-06-18 17:04:45 -04:00
|
|
|
/* we have a special case for listing the root dir only */
|
|
|
|
if(strequal(path_to_use, "/")) {
|
|
|
|
cur_pos++; /* make it point to the zero byte */
|
|
|
|
ftpc->dirs[0] = strdup("/");
|
|
|
|
ftpc->dirdepth++;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* parse the URL path into separate path components */
|
2007-11-05 04:45:09 -05:00
|
|
|
while((slash_pos = strchr(cur_pos, '/')) != NULL) {
|
2010-11-26 14:19:45 -05:00
|
|
|
/* 1 or 0 pointer offset to indicate absolute directory */
|
|
|
|
ssize_t absolute_dir = ((cur_pos - data->state.path > 0) &&
|
|
|
|
(ftpc->dirdepth == 0))?1:0;
|
2007-06-18 17:04:45 -04:00
|
|
|
|
|
|
|
/* seek out the next path component */
|
2007-11-05 04:45:09 -05:00
|
|
|
if(slash_pos-cur_pos) {
|
2007-06-18 17:04:45 -04:00
|
|
|
/* we skip empty path components, like "x//y" since the FTP command
|
2011-04-19 09:54:13 -04:00
|
|
|
CWD requires a parameter and a non-existent parameter a) doesn't
|
2007-06-18 17:04:45 -04:00
|
|
|
work on many servers and b) has no effect on the others. */
|
2012-03-16 14:06:34 -04:00
|
|
|
int len = curlx_sztosi(slash_pos - cur_pos + absolute_dir);
|
2007-06-18 17:04:45 -04:00
|
|
|
ftpc->dirs[ftpc->dirdepth] =
|
|
|
|
curl_easy_unescape(conn->data, cur_pos - absolute_dir, len, NULL);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!ftpc->dirs[ftpc->dirdepth]) { /* run out of memory ... */
|
2007-06-18 17:04:45 -04:00
|
|
|
failf(data, "no memory");
|
2007-10-24 17:14:11 -04:00
|
|
|
freedirs(ftpc);
|
2007-06-18 17:04:45 -04:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
if(isBadFtpString(ftpc->dirs[ftpc->dirdepth])) {
|
2007-06-18 17:04:45 -04:00
|
|
|
free(ftpc->dirs[ftpc->dirdepth]);
|
2007-10-24 17:14:11 -04:00
|
|
|
freedirs(ftpc);
|
2007-06-18 17:04:45 -04:00
|
|
|
return CURLE_URL_MALFORMAT;
|
|
|
|
}
|
2004-06-03 07:41:05 -04:00
|
|
|
}
|
2007-06-18 17:04:45 -04:00
|
|
|
else {
|
|
|
|
cur_pos = slash_pos + 1; /* jump to the rest of the string */
|
|
|
|
continue;
|
2005-11-28 18:06:00 -05:00
|
|
|
}
|
|
|
|
|
2007-06-18 17:04:45 -04:00
|
|
|
cur_pos = slash_pos + 1; /* jump to the rest of the string */
|
|
|
|
if(++ftpc->dirdepth >= ftpc->diralloc) {
|
|
|
|
/* enlarge array */
|
2011-06-02 13:19:36 -04:00
|
|
|
char **bigger;
|
2007-06-18 17:04:45 -04:00
|
|
|
ftpc->diralloc *= 2; /* double the size each time */
|
|
|
|
bigger = realloc(ftpc->dirs, ftpc->diralloc * sizeof(ftpc->dirs[0]));
|
|
|
|
if(!bigger) {
|
2007-10-24 17:14:11 -04:00
|
|
|
freedirs(ftpc);
|
2007-06-18 17:04:45 -04:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
2011-06-02 13:19:36 -04:00
|
|
|
ftpc->dirs = bigger;
|
2007-06-18 17:04:45 -04:00
|
|
|
}
|
2004-06-03 07:41:05 -04:00
|
|
|
}
|
|
|
|
}
|
2008-10-07 21:17:51 -04:00
|
|
|
filename = cur_pos; /* the rest is the file name */
|
|
|
|
break;
|
|
|
|
} /* switch */
|
2004-06-03 07:41:05 -04:00
|
|
|
|
2008-10-07 21:17:51 -04:00
|
|
|
if(filename && *filename) {
|
|
|
|
ftpc->file = curl_easy_unescape(conn->data, filename, 0, NULL);
|
2007-10-22 11:05:35 -04:00
|
|
|
if(NULL == ftpc->file) {
|
2007-10-24 17:14:11 -04:00
|
|
|
freedirs(ftpc);
|
2004-06-03 07:41:05 -04:00
|
|
|
failf(data, "no memory");
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
if(isBadFtpString(ftpc->file)) {
|
2007-10-24 17:14:11 -04:00
|
|
|
freedirs(ftpc);
|
2005-01-19 16:56:02 -05:00
|
|
|
return CURLE_URL_MALFORMAT;
|
|
|
|
}
|
2004-06-03 07:41:05 -04:00
|
|
|
}
|
|
|
|
else
|
2007-10-22 11:05:35 -04:00
|
|
|
ftpc->file=NULL; /* instead of point to a zero byte, we make it a NULL
|
2004-06-03 07:41:05 -04:00
|
|
|
pointer */
|
|
|
|
|
2007-10-22 11:05:35 -04:00
|
|
|
if(data->set.upload && !ftpc->file && (ftp->transfer == FTPTRANSFER_BODY)) {
|
2006-03-03 08:09:30 -05:00
|
|
|
/* We need a file name when uploading. Return error! */
|
|
|
|
failf(data, "Uploading to a URL without a file name!");
|
|
|
|
return CURLE_URL_MALFORMAT;
|
|
|
|
}
|
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
ftpc->cwddone = FALSE; /* default to not done */
|
2004-12-16 13:18:23 -05:00
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
if(ftpc->prevpath) {
|
2004-12-16 17:20:33 -05:00
|
|
|
/* prevpath is "raw" so we convert the input path before we compare the
|
|
|
|
strings */
|
2008-10-07 21:17:51 -04:00
|
|
|
int dlen;
|
|
|
|
char *path = curl_easy_unescape(conn->data, data->state.path, 0, &dlen);
|
2007-04-25 16:54:02 -04:00
|
|
|
if(!path) {
|
2007-10-24 17:14:11 -04:00
|
|
|
freedirs(ftpc);
|
2004-12-16 17:20:33 -05:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2007-04-25 16:54:02 -04:00
|
|
|
}
|
2004-12-16 17:20:33 -05:00
|
|
|
|
2012-03-16 14:06:34 -04:00
|
|
|
dlen -= ftpc->file?curlx_uztosi(strlen(ftpc->file)):0;
|
|
|
|
if((dlen == curlx_uztosi(strlen(ftpc->prevpath))) &&
|
2008-10-22 21:20:57 -04:00
|
|
|
strnequal(path, ftpc->prevpath, dlen)) {
|
2004-12-16 13:18:23 -05:00
|
|
|
infof(data, "Request has same path as previous transfer\n");
|
2006-09-07 17:49:20 -04:00
|
|
|
ftpc->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
|
|
|
}
|
|
|
|
|
2007-04-10 20:25:41 -04:00
|
|
|
return CURLE_OK;
|
2004-10-16 10:06:54 -04:00
|
|
|
}
|
|
|
|
|
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;
|
2007-11-24 18:16:55 -05:00
|
|
|
struct FTP *ftp = conn->data->state.proto.ftp;
|
2006-09-07 17:49:20 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2011-12-20 06:52:24 -05:00
|
|
|
if(connected) {
|
|
|
|
bool completed;
|
|
|
|
result = ftp_do_more(conn, &completed);
|
|
|
|
}
|
2005-02-09 08:06:40 -05:00
|
|
|
|
|
|
|
if(result && (conn->sock[SECONDARYSOCKET] != CURL_SOCKET_BAD)) {
|
|
|
|
/* Failure detected, close the second socket if it was created already */
|
2011-05-16 17:46:43 -04:00
|
|
|
Curl_closesocket(conn, conn->sock[SECONDARYSOCKET]);
|
2005-02-09 08:06:40 -05:00
|
|
|
conn->sock[SECONDARYSOCKET] = CURL_SOCKET_BAD;
|
2005-09-14 11:04:01 -04:00
|
|
|
return result;
|
2005-02-09 08:06:40 -05:00
|
|
|
}
|
|
|
|
|
2007-09-26 08:00:01 -04:00
|
|
|
if(ftp->transfer != FTPTRANSFER_BODY)
|
2005-02-09 08:06:40 -05:00
|
|
|
/* no data to transfer */
|
2010-04-16 17:43:04 -04:00
|
|
|
Curl_setup_transfer(conn, -1, -1, FALSE, NULL, -1, NULL);
|
2005-02-09 08:06:40 -05:00
|
|
|
else if(!connected)
|
|
|
|
/* since we didn't connect now, we want do_more to get called */
|
|
|
|
conn->bits.do_more = TRUE;
|
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
ftpc->ctl_valid = TRUE; /* seems good */
|
2005-02-09 08:06:40 -05:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* called from multi.c while DOing */
|
2007-12-08 17:50:55 -05:00
|
|
|
static CURLcode ftp_doing(struct connectdata *conn,
|
2011-08-08 04:41:35 -04:00
|
|
|
bool *dophase_done)
|
2005-02-09 08:06:40 -05:00
|
|
|
{
|
2011-08-08 04:41:35 -04:00
|
|
|
CURLcode result = ftp_multi_statemach(conn, dophase_done);
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2011-08-08 04:41:35 -04:00
|
|
|
if(result)
|
|
|
|
DEBUGF(infof(conn->data, "DO phase failed\n"));
|
|
|
|
else if(*dophase_done) {
|
2005-02-09 08:06:40 -05:00
|
|
|
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
|
2007-12-08 17:50:55 -05:00
|
|
|
* ftp_done() function without finding any major problem.
|
2004-10-16 10:06:54 -04:00
|
|
|
*/
|
|
|
|
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;
|
2009-08-11 16:43:12 -04:00
|
|
|
bool connected=FALSE;
|
2004-10-16 10:06:54 -04:00
|
|
|
struct SessionHandle *data = conn->data;
|
2006-09-07 17:49:20 -04:00
|
|
|
struct ftp_conn *ftpc = &conn->proto.ftpc;
|
2007-11-24 18:16:55 -05:00
|
|
|
data->req.size = -1; /* make sure this is unknown at this point */
|
2004-10-16 10:06:54 -04:00
|
|
|
|
|
|
|
Curl_pgrsSetUploadCounter(data, 0);
|
|
|
|
Curl_pgrsSetDownloadCounter(data, 0);
|
|
|
|
Curl_pgrsSetUploadSize(data, 0);
|
|
|
|
Curl_pgrsSetDownloadSize(data, 0);
|
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
ftpc->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
|
2007-10-24 17:14:11 -04:00
|
|
|
freedirs(ftpc);
|
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
|
|
|
}
|
|
|
|
|
2007-12-08 17:50:55 -05:00
|
|
|
static CURLcode ftp_setup_connection(struct connectdata * conn)
|
2007-10-12 09:36:37 -04:00
|
|
|
{
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
char * type;
|
|
|
|
char command;
|
|
|
|
|
|
|
|
if(conn->bits.httpproxy && !data->set.tunnel_thru_httpproxy) {
|
|
|
|
/* Unless we have asked to tunnel ftp operations through the proxy, we
|
|
|
|
switch and use HTTP operations only */
|
|
|
|
#ifndef CURL_DISABLE_HTTP
|
2007-11-05 04:45:09 -05:00
|
|
|
if(conn->handler == &Curl_handler_ftp)
|
2007-10-12 14:49:14 -04:00
|
|
|
conn->handler = &Curl_handler_ftp_proxy;
|
|
|
|
else {
|
|
|
|
#ifdef USE_SSL
|
|
|
|
conn->handler = &Curl_handler_ftps_proxy;
|
|
|
|
#else
|
|
|
|
failf(data, "FTPS not supported!");
|
|
|
|
return CURLE_UNSUPPORTED_PROTOCOL;
|
|
|
|
#endif
|
|
|
|
}
|
2009-04-17 08:48:24 -04:00
|
|
|
/*
|
|
|
|
* We explicitly mark this connection as persistent here as we're doing
|
|
|
|
* FTP over HTTP and thus we accidentally avoid setting this value
|
|
|
|
* otherwise.
|
|
|
|
*/
|
|
|
|
conn->bits.close = FALSE;
|
2007-10-12 09:36:37 -04:00
|
|
|
#else
|
|
|
|
failf(data, "FTP over http proxy requires HTTP support built-in!");
|
|
|
|
return CURLE_UNSUPPORTED_PROTOCOL;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2007-11-24 18:16:55 -05:00
|
|
|
data->state.path++; /* don't include the initial slash */
|
2010-08-09 18:56:45 -04:00
|
|
|
data->state.slash_removed = TRUE; /* we've skipped the slash */
|
2007-10-12 09:36:37 -04:00
|
|
|
|
|
|
|
/* FTP URLs support an extension like ";type=<typecode>" that
|
|
|
|
* we'll try to get now! */
|
2007-11-24 18:16:55 -05:00
|
|
|
type = strstr(data->state.path, ";type=");
|
2007-10-12 09:36:37 -04:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!type)
|
2007-10-12 09:36:37 -04:00
|
|
|
type = strstr(conn->host.rawalloc, ";type=");
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(type) {
|
2007-10-12 09:36:37 -04:00
|
|
|
*type = 0; /* it was in the middle of the hostname */
|
2009-01-20 23:42:47 -05:00
|
|
|
command = Curl_raw_toupper(type[6]);
|
2010-08-09 18:56:45 -04:00
|
|
|
conn->bits.type_set = TRUE;
|
2007-10-12 09:36:37 -04:00
|
|
|
|
|
|
|
switch (command) {
|
|
|
|
case 'A': /* ASCII mode */
|
|
|
|
data->set.prefer_ascii = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'D': /* directory mode */
|
|
|
|
data->set.ftp_list_only = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'I': /* binary mode */
|
|
|
|
default:
|
|
|
|
/* switch off ASCII */
|
|
|
|
data->set.prefer_ascii = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2002-06-11 07:13:01 -04:00
|
|
|
#endif /* CURL_DISABLE_FTP */
|