]> git.sesse.net Git - vlc/blob - modules/access/ftp.c
access_ftp: cleanup.
[vlc] / modules / access / ftp.c
1 /*****************************************************************************
2  * ftp.c: FTP input module
3  *****************************************************************************
4  * Copyright (C) 2001-2006 the VideoLAN team
5  * Copyright © 2006 Rémi Denis-Courmont
6  * $Id$
7  *
8  * Authors: Laurent Aimar <fenrir@via.ecp.fr> - original code
9  *          Rémi Denis-Courmont <rem # videolan.org> - EPSV support
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <vlc_common.h>
34 #include <vlc_plugin.h>
35
36 #include <assert.h>
37
38 #include <vlc_access.h>
39 #include <vlc_interface.h>
40
41 #include <vlc_network.h>
42 #include <vlc_url.h>
43 #include <vlc_sout.h>
44
45 #ifndef IPPORT_FTP
46 # define IPPORT_FTP 21u
47 #endif
48
49 /*****************************************************************************
50  * Module descriptor
51  *****************************************************************************/
52 static int   InOpen ( vlc_object_t * );
53 static void  InClose( vlc_object_t * );
54 static int  OutOpen ( vlc_object_t * );
55 static void OutClose( vlc_object_t * );
56
57 #define CACHING_TEXT N_("Caching value in ms")
58 #define CACHING_LONGTEXT N_( \
59     "Caching value for FTP streams. This " \
60     "value should be set in milliseconds." )
61 #define USER_TEXT N_("FTP user name")
62 #define USER_LONGTEXT N_("User name that will " \
63     "be used for the connection.")
64 #define PASS_TEXT N_("FTP password")
65 #define PASS_LONGTEXT N_("Password that will be " \
66     "used for the connection.")
67 #define ACCOUNT_TEXT N_("FTP account")
68 #define ACCOUNT_LONGTEXT N_("Account that will be " \
69     "used for the connection.")
70
71 vlc_module_begin ()
72     set_shortname( "FTP" )
73     set_description( N_("FTP input") )
74     set_capability( "access", 0 )
75     set_category( CAT_INPUT )
76     set_subcategory( SUBCAT_INPUT_ACCESS )
77     add_integer( "ftp-caching", 2 * DEFAULT_PTS_DELAY / 1000, NULL,
78                  CACHING_TEXT, CACHING_LONGTEXT, true )
79     add_string( "ftp-user", "anonymous", NULL, USER_TEXT, USER_LONGTEXT,
80                 false )
81     add_string( "ftp-pwd", "anonymous@example.com", NULL, PASS_TEXT,
82                 PASS_LONGTEXT, false )
83     add_string( "ftp-account", "anonymous", NULL, ACCOUNT_TEXT,
84                 ACCOUNT_LONGTEXT, false )
85     add_shortcut( "ftp" )
86     set_callbacks( InOpen, InClose )
87
88     add_submodule ()
89         set_shortname( "FTP" )
90         set_description( N_("FTP upload output") )
91         set_capability( "sout access", 0 )
92         set_category( CAT_SOUT )
93         set_subcategory( SUBCAT_SOUT_ACO )
94         set_callbacks( OutOpen, OutClose )
95 vlc_module_end ()
96
97 /*****************************************************************************
98  * Local prototypes
99  *****************************************************************************/
100 static ssize_t Read( access_t *, uint8_t *, size_t );
101 static ssize_t Write( sout_access_out_t *, block_t * );
102 static int Seek( access_t *, int64_t );
103 static int OutSeek( sout_access_out_t *, off_t );
104 static int Control( access_t *, int, va_list );
105
106 struct access_sys_t
107 {
108     vlc_url_t  url;
109
110     int        fd_cmd;
111     int        fd_data;
112
113     char       sz_epsv_ip[NI_MAXNUMERICHOST];
114     bool       out;
115 };
116 #define GET_OUT_SYS( p_this ) \
117     ((access_sys_t *)(((sout_access_out_t *)(p_this))->p_sys))
118
119 static int ftp_SendCommand( vlc_object_t *, access_sys_t *, const char *, ... );
120 static int ftp_ReadCommand( vlc_object_t *, access_sys_t *, int *, char ** );
121 static int ftp_StartStream( vlc_object_t *, access_sys_t *, int64_t );
122 static int ftp_StopStream ( vlc_object_t *, access_sys_t * );
123
124 static int Login( vlc_object_t *p_access, access_sys_t *p_sys )
125 {
126     int i_answer;
127     char *psz;
128
129     /* *** Open a TCP connection with server *** */
130     int fd = p_sys->fd_cmd = net_ConnectTCP( p_access, p_sys->url.psz_host,
131                                              p_sys->url.i_port );
132     if( fd == -1 )
133     {
134         msg_Err( p_access, "connection failed" );
135         intf_UserFatal( p_access, false, _("Network interaction failed"),
136                         _("VLC could not connect with the given server.") );
137         return -1;
138     }
139
140     while( ftp_ReadCommand( p_access, p_sys, &i_answer, NULL ) == 1 );
141
142     if( i_answer / 100 != 2 )
143     {
144         msg_Err( p_access, "connection rejected" );
145         intf_UserFatal( p_access, false, _("Network interaction failed"),
146                         _("VLC's connection to the given server was rejected.") );
147         return -1;
148     }
149
150     msg_Dbg( p_access, "connection accepted (%d)", i_answer );
151
152     if( p_sys->url.psz_username && *p_sys->url.psz_username )
153         psz = strdup( p_sys->url.psz_username );
154     else
155         psz = var_CreateGetString( p_access, "ftp-user" );
156     if( !psz )
157         return -1;
158
159     if( ftp_SendCommand( p_access, p_sys, "USER %s", psz ) < 0 ||
160         ftp_ReadCommand( p_access, p_sys, &i_answer, NULL ) < 0 )
161     {
162         free( psz );
163         return -1;
164     }
165     free( psz );
166
167     switch( i_answer / 100 )
168     {
169         case 2:
170             msg_Dbg( p_access, "user accepted" );
171             break;
172         case 3:
173             msg_Dbg( p_access, "password needed" );
174             if( p_sys->url.psz_password && *p_sys->url.psz_password )
175                 psz = strdup( p_sys->url.psz_password );
176             else
177                 psz = var_CreateGetString( p_access, "ftp-pwd" );
178             if( !psz )
179                 return -1;
180
181             if( ftp_SendCommand( p_access, p_sys, "PASS %s", psz ) < 0 ||
182                 ftp_ReadCommand( p_access, p_sys, &i_answer, NULL ) < 0 )
183             {
184                 free( psz );
185                 return -1;
186             }
187             free( psz );
188
189             switch( i_answer / 100 )
190             {
191                 case 2:
192                     msg_Dbg( p_access, "password accepted" );
193                     break;
194                 case 3:
195                     msg_Dbg( p_access, "account needed" );
196                     psz = var_CreateGetString( p_access, "ftp-account" );
197                     if( ftp_SendCommand( p_access, p_sys, "ACCT %s",
198                                          psz ) < 0 ||
199                         ftp_ReadCommand( p_access, p_sys, &i_answer, NULL ) < 0 )
200                     {
201                         free( psz );
202                         return -1;
203                     }
204                     free( psz );
205
206                     if( i_answer / 100 != 2 )
207                     {
208                         msg_Err( p_access, "account rejected" );
209                         intf_UserFatal( p_access, false,
210                                         _("Network interaction failed"),
211                                         _("Your account was rejected.") );
212                         return -1;
213                     }
214                     msg_Dbg( p_access, "account accepted" );
215                     break;
216
217                 default:
218                     msg_Err( p_access, "password rejected" );
219                     intf_UserFatal( p_access, false,
220                                     _("Network interaction failed"),
221                                     _("Your password was rejected.") );
222                     return -1;
223             }
224             break;
225         default:
226             msg_Err( p_access, "user rejected" );
227             intf_UserFatal( p_access, false,
228                         _("Network interaction failed"),
229                         _("Your connection attempt to the server was rejected.") );
230             return -1;
231     }
232
233     return 0;
234 }
235
236 static int Connect( vlc_object_t *p_access, access_sys_t *p_sys )
237 {
238     if( Login( p_access, p_sys ) < 0 )
239         return -1;
240
241     /* Extended passive mode */
242     if( ftp_SendCommand( p_access, p_sys, "EPSV ALL" ) < 0 )
243     {
244         msg_Err( p_access, "cannot request extended passive mode" );
245         net_Close( p_sys->fd_cmd );
246         return -1;
247     }
248
249     if( ftp_ReadCommand( p_access, p_sys, NULL, NULL ) == 2 )
250     {
251         if( net_GetPeerAddress( p_sys->fd_cmd, p_sys->sz_epsv_ip, NULL ) )
252         {
253             net_Close( p_sys->fd_cmd );
254             return -1;
255         }
256     }
257     else
258     {
259         /* If ESPV ALL fails, we fallback to PASV.
260          * We have to restart the connection in case there is a NAT that
261          * understands EPSV ALL in the way, and hence won't allow PASV on
262          * the initial connection.
263          */
264         msg_Info( p_access, "FTP Extended passive mode disabled" );
265         net_Close( p_sys->fd_cmd );
266
267         if( Login( p_access, p_sys ) )
268         {
269             net_Close( p_sys->fd_cmd );
270             return -1;
271         }
272     }
273
274     /* check binary mode support */
275     if( ftp_SendCommand( p_access, p_sys, "TYPE I" ) < 0 ||
276         ftp_ReadCommand( p_access, p_sys, NULL, NULL ) != 2 )
277     {
278         msg_Err( p_access, "cannot set binary transfer mode" );
279         net_Close( p_sys->fd_cmd );
280         return -1;
281     }
282
283     return 0;
284 }
285
286
287 static int parseURL( vlc_url_t *url, const char *path )
288 {
289     if( path == NULL )
290         return VLC_EGENERIC;
291
292     /* *** Parse URL and get server addr/port and path *** */
293     while( *path == '/' )
294         path++;
295
296     vlc_UrlParse( url, path, 0 );
297
298     if( url->psz_host == NULL || *url->psz_host == '\0' )
299         return VLC_EGENERIC;
300
301     if( url->i_port <= 0 )
302         url->i_port = IPPORT_FTP; /* default port */
303
304     /* FTP URLs are relative to user's default directory (RFC1738)
305     For absolute path use ftp://foo.bar//usr/local/etc/filename */
306
307     if( url->psz_path && *url->psz_path == '/' )
308         url->psz_path++;
309
310     return VLC_SUCCESS;
311 }
312
313
314 /****************************************************************************
315  * Open: connect to ftp server and ask for file
316  ****************************************************************************/
317 static int InOpen( vlc_object_t *p_this )
318 {
319     access_t     *p_access = (access_t*)p_this;
320     access_sys_t *p_sys;
321     char         *psz_arg;
322
323     /* Init p_access */
324     STANDARD_READ_ACCESS_INIT
325     p_sys->fd_data = -1;
326     p_sys->out = false;
327
328     if( parseURL( &p_sys->url, p_access->psz_path ) )
329         goto exit_error;
330
331     if( Connect( p_this, p_sys ) )
332         goto exit_error;
333
334     /* get size */
335     if( ftp_SendCommand( p_this, p_sys, "SIZE %s", p_sys->url.psz_path ? : "" ) < 0 ||
336         ftp_ReadCommand( p_this, p_sys, NULL, &psz_arg ) != 2 )
337     {
338         msg_Err( p_access, "cannot get file size" );
339         net_Close( p_sys->fd_cmd );
340         goto exit_error;
341     }
342     p_access->info.i_size = atoll( &psz_arg[4] );
343     free( psz_arg );
344     msg_Dbg( p_access, "file size: %"PRId64, p_access->info.i_size );
345
346     /* Start the 'stream' */
347     if( ftp_StartStream( p_this, p_sys, 0 ) < 0 )
348     {
349         msg_Err( p_access, "cannot retrieve file" );
350         net_Close( p_sys->fd_cmd );
351         goto exit_error;
352     }
353
354     /* Update default_pts to a suitable value for ftp access */
355     var_Create( p_access, "ftp-caching", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
356
357     return VLC_SUCCESS;
358
359 exit_error:
360     vlc_UrlClean( &p_sys->url );
361     free( p_sys );
362     return VLC_EGENERIC;
363 }
364
365 static int OutOpen( vlc_object_t *p_this )
366 {
367     sout_access_out_t *p_access = (sout_access_out_t *)p_this;
368     access_sys_t      *p_sys;
369
370     p_sys = calloc( 1, sizeof( *p_sys ) );
371     if( !p_sys )
372         return VLC_ENOMEM;
373
374     /* Init p_access */
375     p_sys->fd_data = -1;
376     p_sys->out = true;
377
378     if( parseURL( &p_sys->url, p_access->psz_path ) )
379         goto exit_error;
380
381     if( Connect( p_this, p_sys ) )
382         goto exit_error;
383
384     /* Start the 'stream' */
385     if( ftp_StartStream( p_this, p_sys, 0 ) < 0 )
386     {
387         msg_Err( p_access, "cannot store file" );
388         net_Close( p_sys->fd_cmd );
389         goto exit_error;
390     }
391
392     p_access->pf_seek = OutSeek;
393     p_access->pf_write = Write;
394     p_access->p_sys = (void *)p_sys;
395
396     return VLC_SUCCESS;
397
398 exit_error:
399     vlc_UrlClean( &p_sys->url );
400     free( p_sys );
401     return VLC_EGENERIC;
402 }
403
404 /*****************************************************************************
405  * Close: free unused data structures
406  *****************************************************************************/
407 static void Close( vlc_object_t *p_access, access_sys_t *p_sys )
408 {
409     msg_Dbg( p_access, "stopping stream" );
410     ftp_StopStream( p_access, p_sys );
411
412     if( ftp_SendCommand( p_access, p_sys, "QUIT" ) < 0 )
413     {
414         msg_Warn( p_access, "cannot quit" );
415     }
416     else
417     {
418         ftp_ReadCommand( p_access, p_sys, NULL, NULL );
419     }
420     net_Close( p_sys->fd_cmd );
421
422     /* free memory */
423     vlc_UrlClean( &p_sys->url );
424     free( p_sys );
425 }
426
427 static void InClose( vlc_object_t *p_this )
428 {
429     Close( p_this, ((access_t *)p_this)->p_sys);
430 }
431
432 static void OutClose( vlc_object_t *p_this )
433 {
434     Close( p_this, GET_OUT_SYS(p_this));
435 }
436
437
438 /*****************************************************************************
439  * Seek: try to go at the right place
440  *****************************************************************************/
441 static int _Seek( vlc_object_t *p_access, access_sys_t *p_sys, int64_t i_pos )
442 {
443     if( i_pos < 0 )
444         return VLC_EGENERIC;
445
446     msg_Dbg( p_access, "seeking to %"PRId64, i_pos );
447
448     ftp_StopStream( (vlc_object_t *)p_access, p_sys );
449     if( ftp_StartStream( (vlc_object_t *)p_access, p_sys, i_pos ) < 0 )
450         return VLC_EGENERIC;
451
452     return VLC_SUCCESS;
453 }
454
455 static int Seek( access_t *p_access, int64_t i_pos )
456 {
457     int val = _Seek( (vlc_object_t *)p_access, p_access->p_sys, i_pos );
458     if( val )
459         return val;
460
461     p_access->info.b_eof = false;
462     p_access->info.i_pos = i_pos;
463
464     return VLC_SUCCESS;
465 }
466
467 static int OutSeek( sout_access_out_t *p_access, off_t i_pos )
468 {
469     return _Seek( (vlc_object_t *)p_access, GET_OUT_SYS( p_access ), i_pos);
470 }
471
472 /*****************************************************************************
473  * Read:
474  *****************************************************************************/
475 static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len )
476 {
477     access_sys_t *p_sys = p_access->p_sys;
478     int i_read;
479
480     assert( p_sys->fd_data != -1 );
481     assert( !p_sys->out );
482
483     if( p_access->info.b_eof )
484         return 0;
485
486     i_read = net_Read( p_access, p_sys->fd_data, NULL, p_buffer, i_len,
487                        false );
488     if( i_read == 0 )
489         p_access->info.b_eof = true;
490     else if( i_read > 0 )
491         p_access->info.i_pos += i_read;
492
493     return i_read;
494 }
495
496 /*****************************************************************************
497  * Write:
498  *****************************************************************************/
499 static ssize_t Write( sout_access_out_t *p_access, block_t *p_buffer )
500 {
501     access_sys_t *p_sys = GET_OUT_SYS(p_access);
502     size_t i_write = 0;
503
504     assert( p_sys->fd_data != -1 );
505
506     while( p_buffer != NULL )
507     {
508         block_t *p_next = p_buffer->p_next;;
509
510         i_write += net_Write( p_access, p_sys->fd_data, NULL,
511                               p_buffer->p_buffer, p_buffer->i_buffer );
512         block_Release( p_buffer );
513
514         p_buffer = p_next;
515     }
516
517     return i_write;
518 }
519
520 /*****************************************************************************
521  * Control:
522  *****************************************************************************/
523 static int Control( access_t *p_access, int i_query, va_list args )
524 {
525     bool   *pb_bool;
526     int          *pi_int;
527     int64_t      *pi_64;
528     vlc_value_t  val;
529
530     switch( i_query )
531     {
532         /* */
533         case ACCESS_CAN_SEEK:
534             pb_bool = (bool*)va_arg( args, bool* );
535             *pb_bool = true;
536             break;
537         case ACCESS_CAN_FASTSEEK:
538             pb_bool = (bool*)va_arg( args, bool* );
539             *pb_bool = false;
540             break;
541         case ACCESS_CAN_PAUSE:
542             pb_bool = (bool*)va_arg( args, bool* );
543             *pb_bool = true;    /* FIXME */
544             break;
545         case ACCESS_CAN_CONTROL_PACE:
546             pb_bool = (bool*)va_arg( args, bool* );
547             *pb_bool = true;    /* FIXME */
548             break;
549
550         /* */
551         case ACCESS_GET_MTU:
552             pi_int = (int*)va_arg( args, int * );
553             *pi_int = 0;
554             break;
555
556         case ACCESS_GET_PTS_DELAY:
557             pi_64 = (int64_t*)va_arg( args, int64_t * );
558             var_Get( p_access, "ftp-caching", &val );
559             *pi_64 = (int64_t)var_GetInteger( p_access, "ftp-caching" ) * INT64_C(1000);
560             break;
561
562         /* */
563         case ACCESS_SET_PAUSE_STATE:
564             pb_bool = (bool*)va_arg( args, bool* );
565             if ( !pb_bool )
566               return Seek( p_access, p_access->info.i_pos );
567             break;
568
569         case ACCESS_GET_TITLE_INFO:
570         case ACCESS_SET_TITLE:
571         case ACCESS_SET_SEEKPOINT:
572         case ACCESS_SET_PRIVATE_ID_STATE:
573         case ACCESS_GET_CONTENT_TYPE:
574         case ACCESS_GET_META:
575             return VLC_EGENERIC;
576
577         default:
578             msg_Warn( p_access, "unimplemented query in control: %d", i_query);
579             return VLC_EGENERIC;
580
581     }
582     return VLC_SUCCESS;
583 }
584
585 /*****************************************************************************
586  * ftp_*:
587  *****************************************************************************/
588 static int ftp_SendCommand( vlc_object_t *p_access, access_sys_t *p_sys,
589                             const char *psz_fmt, ... )
590 {
591     va_list      args;
592     char         *psz_cmd;
593
594     va_start( args, psz_fmt );
595     if( vasprintf( &psz_cmd, psz_fmt, args ) == -1 )
596         return VLC_EGENERIC;
597
598     va_end( args );
599
600     msg_Dbg( p_access, "ftp_SendCommand:\"%s\"", psz_cmd);
601
602     if( net_Printf( VLC_OBJECT(p_access), p_sys->fd_cmd, NULL, "%s\r\n",
603                     psz_cmd ) < 0 )
604     {
605         msg_Err( p_access, "failed to send command" );
606         return VLC_EGENERIC;
607     }
608     return VLC_SUCCESS;
609 }
610
611 /* TODO support this s**t :
612  RFC 959 allows the client to send certain TELNET strings at any moment,
613  even in the middle of a request:
614
615  * \377\377.
616  * \377\376x where x is one byte.
617  * \377\375x where x is one byte. The server is obliged to send \377\374x
618  *                                immediately after reading x.
619  * \377\374x where x is one byte.
620  * \377\373x where x is one byte. The server is obliged to send \377\376x
621  *                                immediately after reading x.
622  * \377x for any other byte x.
623
624  These strings are not part of the requests, except in the case \377\377,
625  where the request contains one \377. */
626 static int ftp_ReadCommand( vlc_object_t *p_access, access_sys_t *p_sys,
627                             int *pi_answer, char **ppsz_answer )
628 {
629     char         *psz_line;
630     int          i_answer;
631
632     psz_line = net_Gets( p_access, p_sys->fd_cmd, NULL );
633     if( psz_line == NULL || strlen( psz_line ) < 3 )
634     {
635         msg_Err( p_access, "cannot get answer" );
636         free( psz_line );
637         if( pi_answer ) *pi_answer    = 500;
638         if( ppsz_answer ) *ppsz_answer  = NULL;
639         return -1;
640     }
641     msg_Dbg( p_access, "answer=%s", psz_line );
642
643     if( psz_line[3] == '-' )    /* Multiple response */
644     {
645         char end[4];
646
647         memcpy( end, psz_line, 3 );
648         end[3] = ' ';
649
650         for( ;; )
651         {
652             char *psz_tmp = net_Gets( p_access, p_sys->fd_cmd, NULL );
653
654             if( psz_tmp == NULL )   /* Error */
655                 break;
656
657             if( !strncmp( psz_tmp, end, 4 ) )
658             {
659                 free( psz_tmp );
660                 break;
661             }
662             free( psz_tmp );
663         }
664     }
665
666     i_answer = atoi( psz_line );
667
668     if( pi_answer ) *pi_answer = i_answer;
669     if( ppsz_answer )
670     {
671         *ppsz_answer = psz_line;
672     }
673     else
674     {
675         free( psz_line );
676     }
677     return( i_answer / 100 );
678 }
679
680 static int ftp_StartStream( vlc_object_t *p_access, access_sys_t *p_sys,
681                             int64_t i_start )
682 {
683     char psz_ipv4[16], *psz_ip = p_sys->sz_epsv_ip;
684     int  i_answer;
685     char *psz_arg, *psz_parser;
686     int  i_port;
687
688     assert( p_sys->fd_data == -1 );
689
690     if( ( ftp_SendCommand( p_access, p_sys, *psz_ip ? "EPSV" : "PASV" ) < 0 )
691      || ( ftp_ReadCommand( p_access, p_sys, &i_answer, &psz_arg ) != 2 ) )
692     {
693         msg_Err( p_access, "cannot set passive mode" );
694         return VLC_EGENERIC;
695     }
696
697     psz_parser = strchr( psz_arg, '(' );
698     if( psz_parser == NULL )
699     {
700         free( psz_arg );
701         msg_Err( p_access, "cannot parse passive mode response" );
702         return VLC_EGENERIC;
703     }
704
705     if( *psz_ip )
706     {
707         char psz_fmt[7] = "(|||%u";
708         psz_fmt[1] = psz_fmt[2] = psz_fmt[3] = psz_parser[1];
709
710         if( sscanf( psz_parser, psz_fmt, &i_port ) < 1 )
711         {
712             free( psz_arg );
713             msg_Err( p_access, "cannot parse passive mode response" );
714             return VLC_EGENERIC;
715         }
716     }
717     else
718     {
719         unsigned a1, a2, a3, a4, p1, p2;
720
721         if( ( sscanf( psz_parser, "(%u,%u,%u,%u,%u,%u", &a1, &a2, &a3, &a4,
722                       &p1, &p2 ) < 6 ) || ( a1 > 255 ) || ( a2 > 255 )
723          || ( a3 > 255 ) || ( a4 > 255 ) || ( p1 > 255 ) || ( p2 > 255 ) )
724         {
725             free( psz_arg );
726             msg_Err( p_access, "cannot parse passive mode response" );
727             return VLC_EGENERIC;
728         }
729
730         sprintf( psz_ipv4, "%u.%u.%u.%u", a1, a2, a3, a4 );
731         psz_ip = psz_ipv4;
732         i_port = (p1 << 8) | p2;
733     }
734     free( psz_arg );
735
736     msg_Dbg( p_access, "ip:%s port:%d", psz_ip, i_port );
737
738     if( ftp_SendCommand( p_access, p_sys, "TYPE I" ) < 0 ||
739         ftp_ReadCommand( p_access, p_sys, &i_answer, NULL ) != 2 )
740     {
741         msg_Err( p_access, "cannot set binary transfer mode" );
742         return VLC_EGENERIC;
743     }
744
745     if( i_start > 0 )
746     {
747         if( ftp_SendCommand( p_access, p_sys, "REST %"PRIu64, i_start ) < 0 ||
748             ftp_ReadCommand( p_access, p_sys, &i_answer, NULL ) > 3 )
749         {
750             msg_Err( p_access, "cannot set restart offset" );
751             return VLC_EGENERIC;
752         }
753     }
754
755     msg_Dbg( p_access, "waiting for data connection..." );
756     p_sys->fd_data = net_ConnectTCP( p_access, psz_ip, i_port );
757     if( p_sys->fd_data < 0 )
758     {
759         msg_Err( p_access, "failed to connect with server" );
760         return VLC_EGENERIC;
761     }
762     msg_Dbg( p_access, "connection with \"%s:%d\" successful",
763              psz_ip, i_port );
764
765     /* "1xx" message */
766     if( ftp_SendCommand( p_access, p_sys, "%s %s",
767                          p_sys->out ? "STOR" : "RETR",
768                          p_sys->url.psz_path ?: "" ) < 0 ||
769         ftp_ReadCommand( p_access, p_sys, &i_answer, NULL ) > 2 )
770     {
771         msg_Err( p_access, "cannot retrieve file" );
772         return VLC_EGENERIC;
773     }
774
775     shutdown( p_sys->fd_data, p_sys->out ? SHUT_RD : SHUT_WR );
776
777     return VLC_SUCCESS;
778 }
779
780 static int ftp_StopStream ( vlc_object_t *p_access, access_sys_t *p_sys )
781 {
782     if( ftp_SendCommand( p_access, p_sys, "ABOR" ) < 0 )
783     {
784         msg_Warn( p_access, "cannot abort file" );
785         if(  p_sys->fd_data > 0 )
786             net_Close( p_sys->fd_data );
787         p_sys->fd_data = -1;
788         return VLC_EGENERIC;
789     }
790
791     if( p_sys->fd_data != -1 )
792     {
793         net_Close( p_sys->fd_data );
794         p_sys->fd_data = -1;
795         /* Read the final response from RETR/STOR, i.e. 426 or 226 */
796         ftp_ReadCommand( p_access, p_sys, NULL, NULL );
797     }
798     /* Read the response from ABOR, i.e. 226 or 225 */
799     ftp_ReadCommand( p_access, p_sys, NULL, NULL );
800
801     return VLC_SUCCESS;
802 }