libavformat/ftp.c
c86d3a54
 /*
  * Copyright (c) 2013 Lukasz Marek <lukasz.m.luki@gmail.com>
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #include "libavutil/avstring.h"
229843aa
 #include "libavutil/internal.h"
bc930531
 #include "libavutil/parseutils.h"
c86d3a54
 #include "avformat.h"
 #include "internal.h"
 #include "url.h"
 #include "libavutil/opt.h"
247e6587
 #include "libavutil/bprint.h"
c86d3a54
 
 #define CONTROL_BUFFER_SIZE 1024
bc930531
 #define DIR_BUFFER_SIZE 4096
c86d3a54
 
 typedef enum {
     UNKNOWN,
     READY,
     DOWNLOADING,
     UPLOADING,
bc930531
     LISTING_DIR,
c86d3a54
     DISCONNECTED
 } FTPState;
 
affbecb0
 typedef enum {
     UNKNOWN_METHOD,
     NLST,
     MLSD
 } FTPListingMethod;
 
c86d3a54
 typedef struct {
     const AVClass *class;
afa30e51
     URLContext *conn_control;                    /**< Control connection */
     URLContext *conn_data;                       /**< Data connection, NULL when not connected */
     uint8_t control_buffer[CONTROL_BUFFER_SIZE]; /**< Control connection buffer */
     uint8_t *control_buf_ptr, *control_buf_end;
     int server_data_port;                        /**< Data connection port opened by server, -1 on error. */
c84d6aa2
     int server_control_port;                     /**< Control connection port, default is 21 */
cd3d0d54
     char *hostname;                              /**< Server address. */
c043def9
     char *user;                                  /**< Server user */
     char *password;                              /**< Server user's password */
cd3d0d54
     char *path;                                  /**< Path to resource on server. */
afa30e51
     int64_t filesize;                            /**< Size of file on server, -1 on error. */
     int64_t position;                            /**< Current position, calculated. */
     int rw_timeout;                              /**< Network timeout. */
     const char *anonymous_password;              /**< Password to be used for anonymous user. An email should be used. */
     int write_seekable;                          /**< Control seekability, 0 = disable, 1 = enable. */
     FTPState state;                              /**< State of data connection */
affbecb0
     FTPListingMethod listing_method;             /**< Called listing method */
     char *features;                              /**< List of server's features represented as raw response */
bc930531
     char *dir_buffer;
     size_t dir_buffer_size;
     size_t dir_buffer_offset;
     int utf8;
c86d3a54
 } FTPContext;
 
 #define OFFSET(x) offsetof(FTPContext, x)
 #define D AV_OPT_FLAG_DECODING_PARAM
 #define E AV_OPT_FLAG_ENCODING_PARAM
 static const AVOption options[] = {
     {"timeout", "set timeout of socket I/O operations", OFFSET(rw_timeout), AV_OPT_TYPE_INT, {.i64 = -1}, -1, INT_MAX, D|E },
43ecec0f
     {"ftp-write-seekable", "control seekability of connection during encoding", OFFSET(write_seekable), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, E },
afa30e51
     {"ftp-anonymous-password", "password for anonymous login. E-mail address should be used.", OFFSET(anonymous_password), AV_OPT_TYPE_STRING, { 0 }, 0, 0, D|E },
c86d3a54
     {NULL}
 };
 
 static const AVClass ftp_context_class = {
     .class_name     = "ftp",
     .item_name      = av_default_item_name,
     .option         = options,
     .version        = LIBAVUTIL_VERSION_INT,
 };
 
c043def9
 static int ftp_close(URLContext *h);
 
c86d3a54
 static int ftp_getc(FTPContext *s)
 {
     int len;
     if (s->control_buf_ptr >= s->control_buf_end) {
         len = ffurl_read(s->conn_control, s->control_buffer, CONTROL_BUFFER_SIZE);
         if (len < 0) {
             return len;
         } else if (!len) {
             return -1;
         } else {
             s->control_buf_ptr = s->control_buffer;
             s->control_buf_end = s->control_buffer + len;
         }
     }
     return *s->control_buf_ptr++;
 }
 
 static int ftp_get_line(FTPContext *s, char *line, int line_size)
 {
     int ch;
     char *q = line;
 
     for (;;) {
         ch = ftp_getc(s);
         if (ch < 0) {
             return ch;
         }
         if (ch == '\n') {
             /* process line */
             if (q > line && q[-1] == '\r')
                 q--;
             *q = '\0';
             return 0;
         } else {
             if ((q - line) < line_size - 1)
                 *q++ = ch;
         }
     }
 }
 
 /*
  * This routine returns ftp server response code.
2217243e
  * Server may send more than one response for a certain command.
  * First expected code is returned.
c86d3a54
  */
3f005218
 static int ftp_status(FTPContext *s, char **line, const int response_codes[])
c86d3a54
 {
3ba6dce4
     int err, i, dash = 0, result = 0, code_found = 0, linesize;
c86d3a54
     char buf[CONTROL_BUFFER_SIZE];
247e6587
     AVBPrint line_buffer;
c86d3a54
 
247e6587
     if (line)
         av_bprint_init(&line_buffer, 0, AV_BPRINT_SIZE_AUTOMATIC);
 
     while (!code_found || dash) {
3f005218
         if ((err = ftp_get_line(s, buf, sizeof(buf))) < 0) {
f3ace37a
             if (line)
                 av_bprint_finalize(&line_buffer, NULL);
247e6587
             return err;
c86d3a54
         }
 
         av_log(s, AV_LOG_DEBUG, "%s\n", buf);
 
3ba6dce4
         linesize = strlen(buf);
247e6587
         err = 0;
3ba6dce4
         if (linesize >= 3) {
             for (i = 0; i < 3; ++i) {
                 if (buf[i] < '0' || buf[i] > '9') {
                     err = 0;
                     break;
                 }
                 err *= 10;
                 err += buf[i] - '0';
             }
         }
 
         if (!code_found) {
c8252171
             if (err >= 500) {
                 code_found = 1;
                 result = err;
             } else
                 for (i = 0; response_codes[i]; ++i) {
                     if (err == response_codes[i]) {
                         code_found = 1;
                         result = err;
                         break;
                     }
3ba6dce4
                 }
247e6587
         }
3ba6dce4
         if (code_found) {
             if (line)
                 av_bprintf(&line_buffer, "%s\r\n", buf);
             if (linesize >= 4) {
                 if (!dash && buf[3] == '-')
                     dash = err;
                 else if (err == dash && buf[3] == ' ')
                     dash = 0;
3f005218
             }
         }
c86d3a54
     }
247e6587
 
     if (line)
         av_bprint_finalize(&line_buffer, line);
c86d3a54
     return result;
 }
 
d99beeb7
 static int ftp_send_command(FTPContext *s, const char *command,
                             const int response_codes[], char **response)
 {
     int err;
 
229843aa
     ff_dlog(s, "%s", command);
affbecb0
 
db85d11d
     if (response)
         *response = NULL;
 
9fe73b01
     if (!s->conn_control)
         return AVERROR(EIO);
 
d99beeb7
     if ((err = ffurl_write(s->conn_control, command, strlen(command))) < 0)
         return err;
4d617715
     if (!err)
         return -1;
d99beeb7
 
     /* return status */
4d617715
     if (response_codes) {
         return ftp_status(s, response, response_codes);
     }
     return 0;
d99beeb7
 }
 
4d617715
 static void ftp_close_data_connection(FTPContext *s)
34c42389
 {
     ffurl_closep(&s->conn_data);
     s->position = 0;
     s->state = DISCONNECTED;
 }
 
4d617715
 static void ftp_close_both_connections(FTPContext *s)
 {
     ffurl_closep(&s->conn_control);
     ftp_close_data_connection(s);
 }
 
e46e49e3
 static int ftp_auth(FTPContext *s)
c86d3a54
 {
c043def9
     char buf[CONTROL_BUFFER_SIZE];
c86d3a54
     int err;
c8252171
     static const int user_codes[] = {331, 230, 0};
     static const int pass_codes[] = {230, 0};
3f005218
 
c043def9
     snprintf(buf, sizeof(buf), "USER %s\r\n", s->user);
d99beeb7
     err = ftp_send_command(s, buf, user_codes, NULL);
3f005218
     if (err == 331) {
c043def9
         if (s->password) {
             snprintf(buf, sizeof(buf), "PASS %s\r\n", s->password);
d99beeb7
             err = ftp_send_command(s, buf, pass_codes, NULL);
e46e49e3
         } else
c86d3a54
             return AVERROR(EACCES);
e46e49e3
     }
ddbcc48b
     if (err != 230)
e46e49e3
         return AVERROR(EACCES);
c86d3a54
 
     return 0;
 }
 
b9419b58
 static int ftp_passive_mode_epsv(FTPContext *s)
 {
     char *res = NULL, *start = NULL, *end = NULL;
     int i;
     static const char d = '|';
     static const char *command = "EPSV\r\n";
c8252171
     static const int epsv_codes[] = {229, 0};
b9419b58
 
     if (ftp_send_command(s, command, epsv_codes, &res) != 229 || !res)
         goto fail;
 
     for (i = 0; res[i]; ++i) {
         if (res[i] == '(') {
             start = res + i + 1;
         } else if (res[i] == ')') {
             end = res + i;
             break;
         }
     }
     if (!start || !end)
         goto fail;
 
     *end = '\0';
     if (strlen(start) < 5)
         goto fail;
     if (start[0] != d || start[1] != d || start[2] != d || end[-1] != d)
         goto fail;
     start += 3;
     end[-1] = '\0';
 
     s->server_data_port = atoi(start);
229843aa
     ff_dlog(s, "Server data port: %d\n", s->server_data_port);
b9419b58
 
     av_free(res);
     return 0;
 
   fail:
     av_free(res);
     s->server_data_port = -1;
     return AVERROR(ENOSYS);
 }
 
c86d3a54
 static int ftp_passive_mode(FTPContext *s)
 {
7faafe60
     char *res = NULL, *start = NULL, *end = NULL;
d99beeb7
     int i;
535d9a93
     static const char *command = "PASV\r\n";
c8252171
     static const int pasv_codes[] = {227, 0};
3f005218
 
ddbcc48b
     if (ftp_send_command(s, command, pasv_codes, &res) != 227 || !res)
c86d3a54
         goto fail;
 
7faafe60
     for (i = 0; res[i]; ++i) {
c86d3a54
         if (res[i] == '(') {
             start = res + i + 1;
         } else if (res[i] == ')') {
             end = res + i;
             break;
         }
     }
     if (!start || !end)
         goto fail;
 
     *end  = '\0';
     /* skip ip */
     if (!av_strtok(start, ",", &end)) goto fail;
     if (!av_strtok(end, ",", &end)) goto fail;
     if (!av_strtok(end, ",", &end)) goto fail;
     if (!av_strtok(end, ",", &end)) goto fail;
 
     /* parse port number */
     start = av_strtok(end, ",", &end);
     if (!start) goto fail;
     s->server_data_port = atoi(start) * 256;
     start = av_strtok(end, ",", &end);
     if (!start) goto fail;
     s->server_data_port += atoi(start);
229843aa
     ff_dlog(s, "Server data port: %d\n", s->server_data_port);
c86d3a54
 
     av_free(res);
     return 0;
 
   fail:
     av_free(res);
     s->server_data_port = -1;
     return AVERROR(EIO);
 }
 
 static int ftp_current_dir(FTPContext *s)
 {
     char *res = NULL, *start = NULL, *end = NULL;
d99beeb7
     int i;
535d9a93
     static const char *command = "PWD\r\n";
     static const int pwd_codes[] = {257, 0};
3f005218
 
ddbcc48b
     if (ftp_send_command(s, command, pwd_codes, &res) != 257 || !res)
c86d3a54
         goto fail;
 
     for (i = 0; res[i]; ++i) {
         if (res[i] == '"') {
             if (!start) {
                 start = res + i + 1;
                 continue;
             }
             end = res + i;
             break;
         }
     }
 
     if (!end)
         goto fail;
 
ee44cb3c
     *end = '\0';
cd3d0d54
     s->path = av_strdup(start);
c86d3a54
 
     av_free(res);
cd3d0d54
 
     if (!s->path)
         return AVERROR(ENOMEM);
c86d3a54
     return 0;
 
   fail:
     av_free(res);
     return AVERROR(EIO);
 }
 
 static int ftp_file_size(FTPContext *s)
 {
d99beeb7
     char command[CONTROL_BUFFER_SIZE];
c86d3a54
     char *res = NULL;
c8252171
     static const int size_codes[] = {213, 0};
3f005218
 
d99beeb7
     snprintf(command, sizeof(command), "SIZE %s\r\n", s->path);
ddbcc48b
     if (ftp_send_command(s, command, size_codes, &res) == 213 && res) {
df07a833
         s->filesize = strtoll(&res[4], NULL, 10);
c86d3a54
     } else {
         s->filesize = -1;
         av_free(res);
         return AVERROR(EIO);
     }
 
     av_free(res);
     return 0;
 }
 
 static int ftp_retrieve(FTPContext *s)
 {
d99beeb7
     char command[CONTROL_BUFFER_SIZE];
86db71b4
     static const int retr_codes[] = {150, 125, 0};
     int resp_code;
3f005218
 
d99beeb7
     snprintf(command, sizeof(command), "RETR %s\r\n", s->path);
86db71b4
     resp_code = ftp_send_command(s, command, retr_codes, NULL);
     if (resp_code != 125 && resp_code != 150)
c86d3a54
         return AVERROR(EIO);
 
     s->state = DOWNLOADING;
 
     return 0;
 }
 
 static int ftp_store(FTPContext *s)
 {
d99beeb7
     char command[CONTROL_BUFFER_SIZE];
86db71b4
     static const int stor_codes[] = {150, 125, 0};
     int resp_code;
3f005218
 
d99beeb7
     snprintf(command, sizeof(command), "STOR %s\r\n", s->path);
86db71b4
     resp_code = ftp_send_command(s, command, stor_codes, NULL);
     if (resp_code != 125 && resp_code != 150)
c86d3a54
         return AVERROR(EIO);
 
     s->state = UPLOADING;
 
     return 0;
 }
 
80cce899
 static int ftp_type(FTPContext *s)
c86d3a54
 {
535d9a93
     static const char *command = "TYPE I\r\n";
c8252171
     static const int type_codes[] = {200, 0};
3f005218
 
ddbcc48b
     if (ftp_send_command(s, command, type_codes, NULL) != 200)
3f005218
         return AVERROR(EIO);
 
     return 0;
 }
 
 static int ftp_restart(FTPContext *s, int64_t pos)
 {
d99beeb7
     char command[CONTROL_BUFFER_SIZE];
c8252171
     static const int rest_codes[] = {350, 0};
3f005218
 
d99beeb7
     snprintf(command, sizeof(command), "REST %"PRId64"\r\n", pos);
ddbcc48b
     if (ftp_send_command(s, command, rest_codes, NULL) != 350)
c86d3a54
         return AVERROR(EIO);
 
     return 0;
 }
 
bc930531
 static int ftp_set_dir(FTPContext *s)
 {
     static const int cwd_codes[] = {250, 550, 0}; /* 550 is incorrect code */
     char command[MAX_URL_SIZE];
 
     snprintf(command, sizeof(command), "CWD %s\r\n", s->path);
     if (ftp_send_command(s, command, cwd_codes, NULL) != 250)
         return AVERROR(EIO);
     return 0;
 }
 
affbecb0
 static int ftp_list_mlsd(FTPContext *s)
bc930531
 {
     static const char *command = "MLSD\r\n";
     static const int mlsd_codes[] = {150, 500, 0}; /* 500 is incorrect code */
 
     if (ftp_send_command(s, command, mlsd_codes, NULL) != 150)
         return AVERROR(ENOSYS);
affbecb0
     s->listing_method = MLSD;
     return 0;
 }
 
 static int ftp_list_nlst(FTPContext *s)
 {
     static const char *command = "NLST\r\n";
     static const int nlst_codes[] = {226, 425, 426, 451, 450, 550, 0};
 
     if (ftp_send_command(s, command, nlst_codes, NULL) != 226)
         return AVERROR(ENOSYS);
     s->listing_method = NLST;
bc930531
     return 0;
 }
 
affbecb0
 static int ftp_has_feature(FTPContext *s, const char *feature_name);
 
 static int ftp_list(FTPContext *s)
 {
     int ret;
     s->state = LISTING_DIR;
 
     if ((ret = ftp_list_mlsd(s)) < 0)
         ret = ftp_list_nlst(s);
 
     return ret;
 }
 
 static int ftp_has_feature(FTPContext *s, const char *feature_name)
 {
     if (!s->features)
         return 0;
 
     return av_stristr(s->features, feature_name) != NULL;
 }
 
a0358db3
 static int ftp_features(FTPContext *s)
 {
     static const char *feat_command        = "FEAT\r\n";
     static const char *enable_utf8_command = "OPTS UTF8 ON\r\n";
c8252171
     static const int feat_codes[] = {211, 0};
bc930531
     static const int opts_codes[] = {200, 451, 0};
a0358db3
 
affbecb0
     av_freep(&s->features);
     if (ftp_send_command(s, feat_command, feat_codes, &s->features) != 211) {
         av_freep(&s->features);
     }
 
     if (ftp_has_feature(s, "UTF8")) {
         if (ftp_send_command(s, enable_utf8_command, opts_codes, NULL) == 200)
             s->utf8 = 1;
a0358db3
     }
db85d11d
 
a0358db3
     return 0;
 }
 
c84d6aa2
 static int ftp_connect_control_connection(URLContext *h)
 {
a0941c8a
     char buf[CONTROL_BUFFER_SIZE], *response = NULL;
c84d6aa2
     int err;
     AVDictionary *opts = NULL;
     FTPContext *s = h->priv_data;
535d9a93
     static const int connect_codes[] = {220, 0};
c84d6aa2
 
     if (!s->conn_control) {
         ff_url_join(buf, sizeof(buf), "tcp", NULL,
                     s->hostname, s->server_control_port, NULL);
         if (s->rw_timeout != -1) {
a0941c8a
             av_dict_set_int(&opts, "timeout", s->rw_timeout, 0);
c84d6aa2
         } /* if option is not given, don't pass it and let tcp use its own default */
fe3fed0b
         err = ffurl_open_whitelist(&s->conn_control, buf, AVIO_FLAG_READ_WRITE,
                                    &h->interrupt_callback, &opts,
f8e89d8a
                                    h->protocol_whitelist, h->protocol_blacklist, h);
c84d6aa2
         av_dict_free(&opts);
         if (err < 0) {
ddbcc48b
             av_log(h, AV_LOG_ERROR, "Cannot open control connection\n");
c84d6aa2
             return err;
         }
 
2217243e
         /* check if server is ready */
816c579c
         if (ftp_status(s, ((h->flags & AVIO_FLAG_WRITE) ? &response : NULL), connect_codes) != 220) {
c84d6aa2
             av_log(h, AV_LOG_ERROR, "FTP server not ready for new users\n");
4d617715
             return AVERROR(EACCES);
c84d6aa2
         }
 
816c579c
         if ((h->flags & AVIO_FLAG_WRITE) && av_stristr(response, "pure-ftpd")) {
             av_log(h, AV_LOG_WARNING, "Pure-FTPd server is used as an output protocol. It is known issue this implementation may produce incorrect content and it cannot be fixed at this moment.");
         }
         av_free(response);
 
c84d6aa2
         if ((err = ftp_auth(s)) < 0) {
             av_log(h, AV_LOG_ERROR, "FTP authentication failed\n");
             return err;
         }
 
         if ((err = ftp_type(s)) < 0) {
3a92ee59
             av_log(h, AV_LOG_ERROR, "Set content type failed\n");
c84d6aa2
             return err;
         }
a0358db3
 
         ftp_features(s);
c84d6aa2
     }
     return 0;
 }
 
 static int ftp_connect_data_connection(URLContext *h)
c86d3a54
 {
     int err;
a0941c8a
     char buf[CONTROL_BUFFER_SIZE];
c86d3a54
     AVDictionary *opts = NULL;
     FTPContext *s = h->priv_data;
 
     if (!s->conn_data) {
c84d6aa2
         /* Enter passive mode */
b9419b58
         if (ftp_passive_mode_epsv(s) < 0) {
             /* Use PASV as fallback */
             if ((err = ftp_passive_mode(s)) < 0)
                 return err;
         }
c84d6aa2
         /* Open data connection */
c86d3a54
         ff_url_join(buf, sizeof(buf), "tcp", NULL, s->hostname, s->server_data_port, NULL);
         if (s->rw_timeout != -1) {
a0941c8a
             av_dict_set_int(&opts, "timeout", s->rw_timeout, 0);
c86d3a54
         } /* if option is not given, don't pass it and let tcp use its own default */
fe3fed0b
         err = ffurl_open_whitelist(&s->conn_data, buf, h->flags,
                                    &h->interrupt_callback, &opts,
f8e89d8a
                                    h->protocol_whitelist, h->protocol_blacklist, h);
c86d3a54
         av_dict_free(&opts);
         if (err < 0)
             return err;
34c42389
 
         if (s->position)
             if ((err = ftp_restart(s, s->position)) < 0)
                 return err;
c86d3a54
     }
     s->state = READY;
34c42389
     return 0;
 }
 
 static int ftp_abort(URLContext *h)
 {
535d9a93
     static const char *command = "ABOR\r\n";
34c42389
     int err;
535d9a93
     static const int abor_codes[] = {225, 226, 0};
4d617715
     FTPContext *s = h->priv_data;
 
     /* According to RCF 959:
        "ABOR command tells the server to abort the previous FTP
        service command and any associated transfer of data."
 
        There are FTP server implementations that don't response
        to any commands during data transfer in passive mode (including ABOR).
 
        This implementation closes data connection by force.
     */
 
     if (ftp_send_command(s, command, NULL, NULL) < 0) {
         ftp_close_both_connections(s);
         if ((err = ftp_connect_control_connection(h)) < 0) {
             av_log(h, AV_LOG_ERROR, "Reconnect failed.\n");
             return err;
         }
     } else {
         ftp_close_data_connection(s);
e1fb3143
         if (ftp_status(s, NULL, abor_codes) < 225) {
             /* wu-ftpd also closes control connection after data connection closing */
             ffurl_closep(&s->conn_control);
             if ((err = ftp_connect_control_connection(h)) < 0) {
                 av_log(h, AV_LOG_ERROR, "Reconnect failed.\n");
                 return err;
             }
4d617715
         }
     }
 
c86d3a54
     return 0;
 }
 
bc930531
 static int ftp_connect(URLContext *h, const char *url)
c86d3a54
 {
cd3d0d54
     char proto[10], path[MAX_URL_SIZE], credencials[MAX_URL_SIZE], hostname[MAX_URL_SIZE];
c043def9
     const char *tok_user = NULL, *tok_pass = NULL;
ee44cb3c
     char *end = NULL, *newpath = NULL;
c84d6aa2
     int err;
c86d3a54
     FTPContext *s = h->priv_data;
 
     s->state = DISCONNECTED;
ecf6b26a
     s->listing_method = UNKNOWN_METHOD;
c86d3a54
     s->filesize = -1;
34c42389
     s->position = 0;
affbecb0
     s->features = NULL;
c86d3a54
 
     av_url_split(proto, sizeof(proto),
c043def9
                  credencials, sizeof(credencials),
cd3d0d54
                  hostname, sizeof(hostname),
c84d6aa2
                  &s->server_control_port,
c86d3a54
                  path, sizeof(path),
                  url);
 
c043def9
     tok_user = av_strtok(credencials, ":", &end);
     tok_pass = av_strtok(end, ":", &end);
     if (!tok_user) {
         tok_user = "anonymous";
         tok_pass = av_x_if_null(s->anonymous_password, "nopassword");
     }
     s->user = av_strdup(tok_user);
     s->password = av_strdup(tok_pass);
cd3d0d54
     s->hostname = av_strdup(hostname);
     if (!s->hostname || !s->user || (tok_pass && !s->password)) {
bc930531
         return AVERROR(ENOMEM);
c043def9
     }
 
c84d6aa2
     if (s->server_control_port < 0 || s->server_control_port > 65535)
         s->server_control_port = 21;
c86d3a54
 
c84d6aa2
     if ((err = ftp_connect_control_connection(h)) < 0)
bc930531
         return err;
c86d3a54
 
c84d6aa2
     if ((err = ftp_current_dir(s)) < 0)
bc930531
         return err;
ee44cb3c
 
     newpath = av_append_path_component(s->path, path);
     if (!newpath)
         return AVERROR(ENOMEM);
     av_free(s->path);
     s->path = newpath;
c86d3a54
 
bc930531
     return 0;
 }
 
 static int ftp_open(URLContext *h, const char *url, int flags)
 {
     FTPContext *s = h->priv_data;
     int err;
 
229843aa
     ff_dlog(h, "ftp protocol open\n");
bc930531
 
     if ((err = ftp_connect(h, url)) < 0)
         goto fail;
 
89b4800e
     if (ftp_restart(s, 0) < 0) {
c84d6aa2
         h->is_streamed = 1;
89b4800e
     } else {
         if (ftp_file_size(s) < 0 && flags & AVIO_FLAG_READ)
             h->is_streamed = 1;
         if (s->write_seekable != 1 && flags & AVIO_FLAG_WRITE)
             h->is_streamed = 1;
     }
c86d3a54
 
     return 0;
34c42389
 
c86d3a54
   fail:
     av_log(h, AV_LOG_ERROR, "FTP open failed\n");
c043def9
     ftp_close(h);
c86d3a54
     return err;
 }
 
 static int64_t ftp_seek(URLContext *h, int64_t pos, int whence)
 {
     FTPContext *s = h->priv_data;
     int err;
eeedca4b
     int64_t new_pos, fake_pos;
c86d3a54
 
229843aa
     ff_dlog(h, "ftp protocol seek %"PRId64" %d\n", pos, whence);
c86d3a54
 
     switch(whence) {
     case AVSEEK_SIZE:
         return s->filesize;
     case SEEK_SET:
         new_pos = pos;
         break;
     case SEEK_CUR:
         new_pos = s->position + pos;
         break;
     case SEEK_END:
         if (s->filesize < 0)
             return AVERROR(EIO);
         new_pos = s->filesize + pos;
         break;
     default:
         return AVERROR(EINVAL);
     }
 
9ef441c5
     if (h->is_streamed)
c86d3a54
         return AVERROR(EIO);
 
9f4b55ef
     if (new_pos < 0) {
         av_log(h, AV_LOG_ERROR, "Seeking to nagative position.\n");
         return AVERROR(EINVAL);
     }
c86d3a54
 
9f4b55ef
     fake_pos = s->filesize != -1 ? FFMIN(new_pos, s->filesize) : new_pos;
eeedca4b
     if (fake_pos != s->position) {
34c42389
         if ((err = ftp_abort(h)) < 0)
c86d3a54
             return err;
eeedca4b
         s->position = fake_pos;
c86d3a54
     }
     return new_pos;
 }
 
1931c2d2
 static int ftp_read(URLContext *h, unsigned char *buf, int size)
 {
     FTPContext *s = h->priv_data;
     int read, err, retry_done = 0;
 
229843aa
     ff_dlog(h, "ftp protocol read %d bytes\n", size);
1931c2d2
   retry:
34c42389
     if (s->state == DISCONNECTED) {
2217243e
         /* optimization */
23a76b71
         if (s->position >= s->filesize)
             return 0;
34c42389
         if ((err = ftp_connect_data_connection(h)) < 0)
             return err;
     }
1931c2d2
     if (s->state == READY) {
23a76b71
         if (s->position >= s->filesize)
             return 0;
34c42389
         if ((err = ftp_retrieve(s)) < 0)
             return err;
1931c2d2
     }
     if (s->conn_data && s->state == DOWNLOADING) {
         read = ffurl_read(s->conn_data, buf, size);
         if (read >= 0) {
             s->position += read;
             if (s->position >= s->filesize) {
eeedca4b
                 /* server will terminate, but keep current position to avoid madness */
2217243e
                 /* save position to restart from it */
eeedca4b
                 int64_t pos = s->position;
                 if (ftp_abort(h) < 0) {
                     s->position = pos;
1931c2d2
                     return AVERROR(EIO);
eeedca4b
                 }
                 s->position = pos;
1931c2d2
             }
         }
23a76b71
         if (read <= 0 && s->position < s->filesize && !h->is_streamed) {
1931c2d2
             /* Server closed connection. Probably due to inactivity */
             int64_t pos = s->position;
             av_log(h, AV_LOG_INFO, "Reconnect to FTP server.\n");
23a76b71
             if ((err = ftp_abort(h)) < 0)
1931c2d2
                 return err;
             if ((err = ftp_seek(h, pos, SEEK_SET)) < 0) {
34c42389
                 av_log(h, AV_LOG_ERROR, "Position cannot be restored.\n");
1931c2d2
                 return err;
             }
             if (!retry_done) {
                 retry_done = 1;
                 goto retry;
             }
         }
         return read;
     }
 
     av_log(h, AV_LOG_DEBUG, "FTP read failed\n");
     return AVERROR(EIO);
 }
 
 static int ftp_write(URLContext *h, const unsigned char *buf, int size)
 {
34c42389
     int err;
1931c2d2
     FTPContext *s = h->priv_data;
     int written;
 
229843aa
     ff_dlog(h, "ftp protocol write %d bytes\n", size);
1931c2d2
 
34c42389
     if (s->state == DISCONNECTED) {
         if ((err = ftp_connect_data_connection(h)) < 0)
             return err;
     }
1931c2d2
     if (s->state == READY) {
34c42389
         if ((err = ftp_store(s)) < 0)
             return err;
1931c2d2
     }
     if (s->conn_data && s->state == UPLOADING) {
         written = ffurl_write(s->conn_data, buf, size);
         if (written > 0) {
             s->position += written;
             s->filesize = FFMAX(s->filesize, s->position);
         }
         return written;
     }
 
     av_log(h, AV_LOG_ERROR, "FTP write failed\n");
     return AVERROR(EIO);
 }
 
c86d3a54
 static int ftp_close(URLContext *h)
 {
c043def9
     FTPContext *s = h->priv_data;
 
229843aa
     ff_dlog(h, "ftp protocol close\n");
c86d3a54
 
c043def9
     ftp_close_both_connections(s);
     av_freep(&s->user);
     av_freep(&s->password);
cd3d0d54
     av_freep(&s->hostname);
     av_freep(&s->path);
affbecb0
     av_freep(&s->features);
c86d3a54
 
     return 0;
 }
 
 static int ftp_get_file_handle(URLContext *h)
 {
     FTPContext *s = h->priv_data;
 
229843aa
     ff_dlog(h, "ftp protocol get_file_handle\n");
c86d3a54
 
     if (s->conn_data)
         return ffurl_get_file_handle(s->conn_data);
 
     return AVERROR(EIO);
 }
 
 static int ftp_shutdown(URLContext *h, int flags)
 {
     FTPContext *s = h->priv_data;
 
229843aa
     ff_dlog(h, "ftp protocol shutdown\n");
c86d3a54
 
     if (s->conn_data)
         return ffurl_shutdown(s->conn_data, flags);
 
     return AVERROR(EIO);
 }
 
bc930531
 static int ftp_open_dir(URLContext *h)
 {
     FTPContext *s = h->priv_data;
     int ret;
 
     if ((ret = ftp_connect(h, h->filename)) < 0)
         goto fail;
     if ((ret = ftp_set_dir(s)) < 0)
         goto fail;
     if ((ret = ftp_connect_data_connection(h)) < 0)
         goto fail;
     if ((ret = ftp_list(s)) < 0)
         goto fail;
     s->dir_buffer = av_malloc(DIR_BUFFER_SIZE);
     if (!s->dir_buffer) {
         ret = AVERROR(ENOMEM);
         goto fail;
     }
     s->dir_buffer[0] = 0;
     if (s->conn_data && s->state == LISTING_DIR)
         return 0;
   fail:
     ffurl_closep(&s->conn_control);
     ffurl_closep(&s->conn_data);
     return ret;
 }
 
 static int64_t ftp_parse_date(const char *date)
 {
     struct tm tv;
     memset(&tv, 0, sizeof(struct tm));
     av_small_strptime(date, "%Y%m%d%H%M%S", &tv);
     return INT64_C(1000000) * av_timegm(&tv);
 }
 
affbecb0
 static int ftp_parse_entry_nlst(char *line, AVIODirEntry *next)
 {
     next->name = av_strdup(line);
     return 0;
 }
 
 static int ftp_parse_entry_mlsd(char *mlsd, AVIODirEntry *next)
bc930531
 {
     char *fact, *value;
229843aa
     ff_dlog(NULL, "%s\n", mlsd);
bc930531
     while(fact = av_strtok(mlsd, ";", &mlsd)) {
         if (fact[0] == ' ') {
             next->name = av_strdup(&fact[1]);
             continue;
         }
         fact = av_strtok(fact, "=", &value);
         if (!av_strcasecmp(fact, "type")) {
             if (!av_strcasecmp(value, "cdir") || !av_strcasecmp(value, "pdir"))
                 return 1;
             if (!av_strcasecmp(value, "dir"))
                 next->type = AVIO_ENTRY_DIRECTORY;
             else if (!av_strcasecmp(value, "file"))
                 next->type = AVIO_ENTRY_FILE;
             else if (!av_strcasecmp(value, "OS.unix=slink:"))
                 next->type = AVIO_ENTRY_SYMBOLIC_LINK;
         } else if (!av_strcasecmp(fact, "modify")) {
             next->modification_timestamp = ftp_parse_date(value);
         } else if (!av_strcasecmp(fact, "UNIX.mode")) {
             next->filemode = strtoumax(value, NULL, 8);
         } else if (!av_strcasecmp(fact, "UNIX.uid") || !av_strcasecmp(fact, "UNIX.owner"))
             next->user_id = strtoumax(value, NULL, 10);
         else if (!av_strcasecmp(fact, "UNIX.gid") || !av_strcasecmp(fact, "UNIX.group"))
             next->group_id = strtoumax(value, NULL, 10);
         else if (!av_strcasecmp(fact, "size") || !av_strcasecmp(fact, "sizd"))
             next->size = strtoll(value, NULL, 10);
     }
     return 0;
 }
 
affbecb0
 /**
  * @return 0 on success, negative on error, positive on entry to discard.
  */
 static int ftp_parse_entry(URLContext *h, char *line, AVIODirEntry *next)
 {
     FTPContext *s = h->priv_data;
 
     switch (s->listing_method) {
     case MLSD:
         return ftp_parse_entry_mlsd(line, next);
     case NLST:
         return ftp_parse_entry_nlst(line, next);
     case UNKNOWN_METHOD:
     default:
         return -1;
     }
 }
 
bc930531
 static int ftp_read_dir(URLContext *h, AVIODirEntry **next)
 {
     FTPContext *s = h->priv_data;
     char *start, *found;
     int ret, retried;
 
     do {
         retried = 0;
         start = s->dir_buffer + s->dir_buffer_offset;
         while (!(found = strstr(start, "\n"))) {
             if (retried)
                 return AVERROR(EIO);
             s->dir_buffer_size -= s->dir_buffer_offset;
             s->dir_buffer_offset = 0;
             if (s->dir_buffer_size)
                 memmove(s->dir_buffer, start, s->dir_buffer_size);
             ret = ffurl_read(s->conn_data, s->dir_buffer + s->dir_buffer_size, DIR_BUFFER_SIZE - (s->dir_buffer_size + 1));
             if (ret < 0)
                 return ret;
             if (!ret) {
                 *next = NULL;
                 return 0;
             }
             s->dir_buffer_size += ret;
             s->dir_buffer[s->dir_buffer_size] = 0;
             start = s->dir_buffer;
             retried = 1;
         }
         s->dir_buffer_offset += (found + 1 - start);
         found[0] = 0;
         if (found > start && found[-1] == '\r')
             found[-1] = 0;
 
         *next = ff_alloc_dir_entry();
         if (!*next)
             return AVERROR(ENOMEM);
         (*next)->utf8 = s->utf8;
affbecb0
         ret = ftp_parse_entry(h, start, *next);
bc930531
         if (ret) {
             avio_free_directory_entry(next);
             if (ret < 0)
                 return ret;
         }
     } while (ret > 0);
     return 0;
 }
 
 static int ftp_close_dir(URLContext *h)
 {
     FTPContext *s = h->priv_data;
55a07cf4
     av_freep(&s->dir_buffer);
bc930531
     ffurl_closep(&s->conn_control);
     ffurl_closep(&s->conn_data);
     return 0;
 }
 
bf5b2f9d
 static int ftp_delete(URLContext *h)
 {
     FTPContext *s = h->priv_data;
     char command[MAX_URL_SIZE];
     static const int del_codes[] = {250, 421, 450, 500, 501, 502, 530, 550, 0};
     static const int rmd_codes[] = {250, 421, 500, 501, 502, 530, 550, 0};
     int ret;
 
     if ((ret = ftp_connect(h, h->filename)) < 0)
         goto cleanup;
 
     snprintf(command, sizeof(command), "DELE %s\r\n", s->path);
     if (ftp_send_command(s, command, del_codes, NULL) == 250) {
         ret = 0;
         goto cleanup;
     }
 
     snprintf(command, sizeof(command), "RMD %s\r\n", s->path);
     if (ftp_send_command(s, command, rmd_codes, NULL) == 250)
         ret = 0;
     else
         ret = AVERROR(EIO);
 
 cleanup:
     ftp_close(h);
     return ret;
 }
 
 static int ftp_move(URLContext *h_src, URLContext *h_dst)
 {
     FTPContext *s = h_src->priv_data;
     char command[MAX_URL_SIZE], path[MAX_URL_SIZE];
     static const int rnfr_codes[] = {350, 421, 450, 500, 501, 502, 503, 530, 0};
     static const int rnto_codes[] = {250, 421, 500, 501, 502, 503, 530, 532, 553, 0};
     int ret;
 
     if ((ret = ftp_connect(h_src, h_src->filename)) < 0)
         goto cleanup;
 
     snprintf(command, sizeof(command), "RNFR %s\r\n", s->path);
     if (ftp_send_command(s, command, rnfr_codes, NULL) != 350) {
         ret = AVERROR(EIO);
         goto cleanup;
     }
 
     av_url_split(0, 0, 0, 0, 0, 0, 0,
                  path, sizeof(path),
                  h_dst->filename);
     snprintf(command, sizeof(command), "RNTO %s\r\n", path);
     if (ftp_send_command(s, command, rnto_codes, NULL) == 250)
         ret = 0;
     else
         ret = AVERROR(EIO);
 
 cleanup:
     ftp_close(h_src);
     return ret;
 }
 
9c75148e
 const URLProtocol ff_ftp_protocol = {
c86d3a54
     .name                = "ftp",
     .url_open            = ftp_open,
     .url_read            = ftp_read,
     .url_write           = ftp_write,
     .url_seek            = ftp_seek,
     .url_close           = ftp_close,
     .url_get_file_handle = ftp_get_file_handle,
     .url_shutdown        = ftp_shutdown,
     .priv_data_size      = sizeof(FTPContext),
     .priv_data_class     = &ftp_context_class,
bc930531
     .url_open_dir        = ftp_open_dir,
     .url_read_dir        = ftp_read_dir,
     .url_close_dir       = ftp_close_dir,
bf5b2f9d
     .url_delete          = ftp_delete,
     .url_move            = ftp_move,
c86d3a54
     .flags               = URL_PROTOCOL_FLAG_NETWORK,
fe3fed0b
     .default_whitelist   = "tcp",
c86d3a54
 };