]> git.sesse.net Git - vlc/blob - modules/access/ftp.c
fee459bbe78e50297239eb3f2165f5cf28a9fd36
[vlc] / modules / access / ftp.c
1 /*****************************************************************************
2  * ftp.c: FTP input module
3  *****************************************************************************
4  * Copyright (C) 2001-2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr> - original code
8  *          RĂ©mi Denis-Courmont <rem # videolan.org> - EPSV support
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include <stdlib.h>
29
30 #include <vlc/vlc.h>
31 #include <vlc/input.h>
32
33 #include "network.h"
34 #if defined( UNDER_CE )
35 #   include <winsock.h>
36 #elif defined( WIN32 )
37 #   include <winsock2.h>
38 #else
39 #   include <sys/socket.h>
40 #endif
41
42 /*****************************************************************************
43  * Module descriptor
44  *****************************************************************************/
45 static int     Open ( vlc_object_t * );
46 static void    Close( vlc_object_t * );
47
48 #define CACHING_TEXT N_("Caching value in ms")
49 #define CACHING_LONGTEXT N_( \
50     "Allows you to modify the default caching value for FTP streams. This " \
51     "value should be set in millisecond units." )
52 #define USER_TEXT N_("FTP user name")
53 #define USER_LONGTEXT N_("Allows you to modify the user name that will " \
54     "be used for the connection.")
55 #define PASS_TEXT N_("FTP password")
56 #define PASS_LONGTEXT N_("Allows you to modify the password that will be " \
57     "used for the connection.")
58 #define ACCOUNT_TEXT N_("FTP account")
59 #define ACCOUNT_LONGTEXT N_("Allows you to modify the account that will be " \
60     "used for the connection.")
61
62 vlc_module_begin();
63     set_shortname( "FTP" );
64     set_description( _("FTP input") );
65     set_capability( "access2", 0 );
66     set_category( CAT_INPUT );
67     set_subcategory( SUBCAT_INPUT_ACCESS );
68     add_integer( "ftp-caching", 2 * DEFAULT_PTS_DELAY / 1000, NULL,
69                  CACHING_TEXT, CACHING_LONGTEXT, VLC_TRUE );
70     add_string( "ftp-user", "anonymous", NULL, USER_TEXT, USER_LONGTEXT,
71                 VLC_FALSE );
72     add_string( "ftp-pwd", "anonymous@dummy.org", NULL, PASS_TEXT,
73                 PASS_LONGTEXT, VLC_FALSE );
74     add_string( "ftp-account", "anonymous", NULL, ACCOUNT_TEXT,
75                 ACCOUNT_LONGTEXT, VLC_FALSE );
76     add_shortcut( "ftp" );
77     set_callbacks( Open, Close );
78 vlc_module_end();
79
80 /*****************************************************************************
81  * Local prototypes
82  *****************************************************************************/
83 static int Read( access_t *, uint8_t *, int );
84 static int Seek( access_t *, int64_t );
85 static int Control( access_t *, int, va_list );
86
87 struct access_sys_t
88 {
89     vlc_url_t  url;
90
91     int        fd_cmd;
92     int        fd_data;
93     
94     char       sz_epsv_ip[NI_MAXNUMERICHOST];
95 };
96
97 static int  ftp_SendCommand( access_t *, char *, ... );
98 static int  ftp_ReadCommand( access_t *, int *, char ** );
99 static int  ftp_StartStream( access_t *, int64_t );
100 static int  ftp_StopStream ( access_t *);
101
102 static int Connect( access_t *p_access, access_sys_t *p_sys )
103 {
104     int fd, i_answer;
105     char *psz;
106
107     /* *** Open a TCP connection with server *** */
108     msg_Dbg( p_access, "waiting for connection..." );
109     p_sys->fd_cmd = fd = net_OpenTCP( p_access, p_sys->url.psz_host,
110                                       p_sys->url.i_port );
111     if( fd < 0 )
112     {
113         msg_Err( p_access, "failed to connect with server" );
114         return -1;
115     }
116
117     for( ;; )
118     {
119         if( ftp_ReadCommand( p_access, &i_answer, NULL ) != 1 )
120         {
121             break;
122         }
123     }
124     if( i_answer / 100 != 2 )
125     {
126         msg_Err( p_access, "connection rejected" );
127         return -1;
128     }
129
130     msg_Dbg( p_access, "connection accepted (%d)", i_answer );
131
132     psz = var_CreateGetString( p_access, "ftp-user" );
133     if( ftp_SendCommand( p_access, "USER %s", psz ) < 0 ||
134         ftp_ReadCommand( p_access, &i_answer, NULL ) < 0 )
135     {
136         free( psz );
137         return -1;
138     }
139     free( psz );
140
141     switch( i_answer / 100 )
142     {
143         case 2:
144             msg_Dbg( p_access, "user accepted" );
145             break;
146         case 3:
147             msg_Dbg( p_access, "password needed" );
148             psz = var_CreateGetString( p_access, "ftp-pwd" );
149             if( ftp_SendCommand( p_access, "PASS %s", psz ) < 0 ||
150                 ftp_ReadCommand( p_access, &i_answer, NULL ) < 0 )
151             {
152                 free( psz );
153                 return -1;
154             }
155             free( psz );
156
157             switch( i_answer / 100 )
158             {
159                 case 2:
160                     msg_Dbg( p_access, "password accepted" );
161                     break;
162                 case 3:
163                     msg_Dbg( p_access, "account needed" );
164                     psz = var_CreateGetString( p_access, "ftp-account" );
165                     if( ftp_SendCommand( p_access, "ACCT %s",
166                                          psz ) < 0 ||
167                         ftp_ReadCommand( p_access, &i_answer, NULL ) < 0 )
168                     {
169                         free( psz );
170                         return -1;
171                     }
172                     free( psz );
173
174                     if( i_answer / 100 != 2 )
175                     {
176                         msg_Err( p_access, "account rejected" );
177                         return -1;
178                     }
179                     msg_Dbg( p_access, "account accepted" );
180                     break;
181
182                 default:
183                     msg_Err( p_access, "password rejected" );
184                     return -1;
185             }
186             break;
187         default:
188             msg_Err( p_access, "user rejected" );
189             return -1;
190     }
191
192     return 0;
193 }
194
195 /****************************************************************************
196  * Open: connect to ftp server and ask for file
197  ****************************************************************************/
198 static int Open( vlc_object_t *p_this )
199 {
200     access_t     *p_access = (access_t*)p_this;
201     access_sys_t *p_sys;
202     char         *psz;
203
204     int          i_answer;
205     char         *psz_arg;
206
207     /* Init p_access */
208     p_access->pf_read = Read;
209     p_access->pf_block = NULL;
210     p_access->pf_seek = Seek;
211     p_access->pf_control = Control;
212     p_access->info.i_update = 0;
213     p_access->info.i_size = 0;
214     p_access->info.i_pos = 0;
215     p_access->info.b_eof = VLC_FALSE;
216     p_access->info.i_title = 0;
217     p_access->info.i_seekpoint = 0;
218     p_access->p_sys = p_sys = malloc( sizeof( access_sys_t ) );
219     memset( p_sys, 0, sizeof( access_sys_t ) );
220     p_sys->fd_cmd = -1;
221     p_sys->fd_data = -1;
222
223     /* *** Parse URL and get server addr/port and path *** */
224     psz = p_access->psz_path;
225     while( *psz == '/' )
226     {
227         psz++;
228     }
229     vlc_UrlParse( &p_sys->url, psz, 0 );
230
231     if( p_sys->url.psz_host == NULL || *p_sys->url.psz_host == '\0' )
232     {
233         msg_Err( p_access, "invalid server name" );
234         goto exit_error;
235     }
236     if( p_sys->url.i_port <= 0 )
237     {
238         p_sys->url.i_port = 21; /* default port */
239     }
240
241     if( Connect( p_access, p_sys ) < 0 )
242         goto exit_error;
243
244     /* Extended passive mode */
245     if( ftp_SendCommand( p_access, "EPSV ALL" ) < 0 )
246     {
247         msg_Err( p_access, "cannot request extended passive mode" );
248         return -1;
249     }
250
251     if( ftp_ReadCommand( p_access, &i_answer, NULL ) == 2 )
252     {
253         if( net_GetPeerAddress( p_sys->fd_cmd, p_sys->sz_epsv_ip, NULL ) )
254             goto exit_error;
255     }
256     else
257     {
258         /* If ESPV ALL fails, we fallback to PASV.
259          * We have to restart the connection in case there is a NAT that
260          * understands EPSV ALL in the way, and hence won't allow PASV on
261          * the initial connection.
262          */
263         net_Close( p_sys->fd_cmd );
264         p_sys->fd_cmd = -1;
265         *p_sys->sz_epsv_ip = '\0';
266
267         if( ( p_sys->fd_cmd = Connect( p_access, p_sys ) ) < 0 )
268            goto exit_error;
269
270         msg_Info( p_access, "FTP Extended passive mode disabled" );
271     }
272     
273     /* binary mode */
274     if( ftp_SendCommand( p_access, "TYPE I" ) < 0 ||
275         ftp_ReadCommand( p_access, &i_answer, NULL ) != 2 )
276     {
277         msg_Err( p_access, "cannot set binary transfer mode" );
278         goto exit_error;
279     }
280
281     /* get size */
282     if( ftp_SendCommand( p_access, "SIZE %s", p_sys->url.psz_path ) < 0 ||
283         ftp_ReadCommand( p_access, &i_answer, &psz_arg ) != 2 )
284     {
285         msg_Err( p_access, "cannot get file size" );
286         goto exit_error;
287     }
288     p_access->info.i_size = atoll( &psz_arg[4] );
289     free( psz_arg );
290     msg_Dbg( p_access, "file size: "I64Fd, p_access->info.i_size );
291
292     /* Start the 'stream' */
293     if( ftp_StartStream( p_access, 0 ) < 0 )
294     {
295         msg_Err( p_access, "cannot retrieve file" );
296         goto exit_error;
297     }
298
299     /* Update default_pts to a suitable value for ftp access */
300     var_Create( p_access, "ftp-caching", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
301
302     return VLC_SUCCESS;
303
304 exit_error:
305     if( p_sys->fd_cmd >= 0 )
306         net_Close( p_sys->fd_cmd );
307     vlc_UrlClean( &p_sys->url );
308     free( p_sys );
309     return VLC_EGENERIC;
310 }
311
312 /*****************************************************************************
313  * Close: free unused data structures
314  *****************************************************************************/
315 static void Close( vlc_object_t *p_this )
316 {
317     access_t      *p_access = (access_t*)p_this;
318     access_sys_t  *p_sys = p_access->p_sys;
319
320     msg_Dbg( p_access, "stopping stream" );
321     ftp_StopStream( p_access );
322
323     if( ftp_SendCommand( p_access, "QUIT" ) < 0 )
324     {
325         msg_Warn( p_access, "cannot quit" );
326     }
327     else
328     {
329         ftp_ReadCommand( p_access, NULL, NULL );
330     }
331     net_Close( p_sys->fd_cmd );
332
333     /* free memory */
334     vlc_UrlClean( &p_sys->url );
335     free( p_sys );
336 }
337
338 /*****************************************************************************
339  * Seek: try to go at the right place
340  *****************************************************************************/
341 static int Seek( access_t *p_access, int64_t i_pos )
342 {
343     if( i_pos < 0 )
344     {
345         return VLC_EGENERIC;
346     }
347     msg_Dbg( p_access, "seeking to "I64Fd, i_pos );
348
349     ftp_StopStream( p_access );
350     if( ftp_StartStream( p_access, i_pos ) < 0 )
351     {
352         p_access->info.b_eof = VLC_TRUE;
353         return VLC_EGENERIC;
354     }
355
356     p_access->info.b_eof = VLC_FALSE;
357     p_access->info.i_pos = i_pos;
358
359     return VLC_SUCCESS;
360 }
361
362 /*****************************************************************************
363  * Read:
364  *****************************************************************************/
365 static int Read( access_t *p_access, uint8_t *p_buffer, int i_len )
366 {
367     access_sys_t *p_sys = p_access->p_sys;
368     int i_read;
369
370     if( p_access->info.b_eof )
371         return 0;
372
373     i_read = net_Read( p_access, p_sys->fd_data, NULL, p_buffer, i_len,
374                        VLC_FALSE );
375     if( i_read == 0 )
376         p_access->info.b_eof = VLC_TRUE;
377     else if( i_read > 0 )
378         p_access->info.i_pos += i_read;
379
380     return i_read;
381 }
382
383 /*****************************************************************************
384  * Control:
385  *****************************************************************************/
386 static int Control( access_t *p_access, int i_query, va_list args )
387 {
388     vlc_bool_t   *pb_bool;
389     int          *pi_int;
390     int64_t      *pi_64;
391     vlc_value_t  val;
392
393     switch( i_query )
394     {
395         /* */
396         case ACCESS_CAN_SEEK:
397             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
398             *pb_bool = VLC_TRUE;
399             break;
400         case ACCESS_CAN_FASTSEEK:
401             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
402             *pb_bool = VLC_FALSE;
403             break;
404         case ACCESS_CAN_PAUSE:
405             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
406             *pb_bool = VLC_TRUE;    /* FIXME */
407             break;
408         case ACCESS_CAN_CONTROL_PACE:
409             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
410             *pb_bool = VLC_TRUE;    /* FIXME */
411             break;
412
413         /* */
414         case ACCESS_GET_MTU:
415             pi_int = (int*)va_arg( args, int * );
416             *pi_int = 0;
417             break;
418
419         case ACCESS_GET_PTS_DELAY:
420             pi_64 = (int64_t*)va_arg( args, int64_t * );
421             var_Get( p_access, "ftp-caching", &val );
422             *pi_64 = (int64_t)var_GetInteger( p_access, "ftp-caching" ) * I64C(1000);
423             break;
424
425         /* */
426         case ACCESS_SET_PAUSE_STATE:
427             /* Nothing to do */
428             break;
429
430         case ACCESS_GET_TITLE_INFO:
431         case ACCESS_SET_TITLE:
432         case ACCESS_SET_SEEKPOINT:
433         case ACCESS_SET_PRIVATE_ID_STATE:
434             return VLC_EGENERIC;
435
436         default:
437             msg_Warn( p_access, "unimplemented query in control" );
438             return VLC_EGENERIC;
439
440     }
441     return VLC_SUCCESS;
442 }
443
444 /*****************************************************************************
445  * ftp_*:
446  *****************************************************************************/
447 static int ftp_SendCommand( access_t *p_access, char *psz_fmt, ... )
448 {
449     access_sys_t *p_sys = p_access->p_sys;
450     va_list      args;
451     char         *psz_cmd;
452
453     va_start( args, psz_fmt );
454     vasprintf( &psz_cmd, psz_fmt, args );
455     va_end( args );
456
457     msg_Dbg( p_access, "ftp_SendCommand:\"%s\"", psz_cmd);
458     if( net_Printf( VLC_OBJECT(p_access), p_sys->fd_cmd, NULL, "%s\r\n",
459                     psz_cmd ) < 0 )
460     {
461         msg_Err( p_access, "failed to send command" );
462         return VLC_EGENERIC;
463     }
464     return VLC_SUCCESS;
465 }
466
467 /* TODO support this s**t :
468  RFC 959 allows the client to send certain TELNET strings at any moment,
469  even in the middle of a request:
470
471  * \377\377.
472  * \377\376x where x is one byte.
473  * \377\375x where x is one byte. The server is obliged to send \377\374x
474  *                                immediately after reading x.
475  * \377\374x where x is one byte.
476  * \377\373x where x is one byte. The server is obliged to send \377\376x
477  *                                immediately after reading x.
478  * \377x for any other byte x.
479
480  These strings are not part of the requests, except in the case \377\377,
481  where the request contains one \377. */
482 static int ftp_ReadCommand( access_t *p_access,
483                             int *pi_answer, char **ppsz_answer )
484 {
485     access_sys_t *p_sys = p_access->p_sys;
486     char         *psz_line;
487     int          i_answer;
488
489     psz_line = net_Gets( p_access, p_sys->fd_cmd, NULL );
490     msg_Dbg( p_access, "answer=%s", psz_line );
491     if( psz_line == NULL || strlen( psz_line ) < 3 )
492     {
493         msg_Err( p_access, "cannot get answer" );
494         if( psz_line ) free( psz_line );
495         if( pi_answer ) *pi_answer    = 500;
496         if( ppsz_answer ) *ppsz_answer  = NULL;
497         return -1;
498     }
499
500     if( psz_line[3] == '-' )    /* Multiple response */
501     {
502         char end[4];
503
504         memcpy( end, psz_line, 3 );
505         end[3] = ' ';
506
507         for( ;; )
508         {
509             char *psz_tmp = net_Gets( p_access, p_sys->fd_cmd, NULL );
510
511             if( psz_tmp == NULL )   /* Error */
512                 break;
513
514             if( !strncmp( psz_tmp, end, 4 ) )
515             {
516                 free( psz_tmp );
517                 break;
518             }
519             free( psz_tmp );
520         }
521     }
522
523     i_answer = atoi( psz_line );
524
525     if( pi_answer ) *pi_answer = i_answer;
526     if( ppsz_answer )
527     {
528         *ppsz_answer = psz_line;
529     }
530     else
531     {
532         free( psz_line );
533     }
534     return( i_answer / 100 );
535 }
536
537 static int ftp_StartStream( access_t *p_access, off_t i_start )
538 {
539     access_sys_t *p_sys = p_access->p_sys;
540
541     char psz_ipv4[16], *psz_ip;
542     int  i_answer;
543     char *psz_arg, *psz_parser;
544     int  i_port;
545
546     psz_ip = p_sys->sz_epsv_ip;
547
548     if( ( ftp_SendCommand( p_access, *psz_ip ? "EPSV" : "PASV" ) < 0 )
549      || ( ftp_ReadCommand( p_access, &i_answer, &psz_arg ) != 2 ) )
550     {
551         msg_Err( p_access, "cannot set passive mode" );
552         return VLC_EGENERIC;
553     }
554
555     psz_parser = strchr( psz_arg, '(' );
556     if( psz_parser == NULL )
557     {
558         free( psz_arg );
559         msg_Err( p_access, "cannot parse passive mode response" );
560         return VLC_EGENERIC;
561     }
562
563     if( psz_ip != NULL )
564     {
565         char psz_fmt[7] = "(|||%u";
566         psz_fmt[1] = psz_fmt[2] = psz_fmt[3] = psz_parser[1];
567
568         if( sscanf( psz_parser, psz_fmt, &i_port ) < 1 )
569         {
570             free( psz_arg );
571             msg_Err( p_access, "cannot parse passive mode response" );
572             return VLC_EGENERIC;
573         }
574     }
575     else
576     {
577         unsigned  a1, a2, a3, a4, p1, p2;
578
579         if( ( sscanf( psz_parser, "(%u,%u,%u,%u,%u,%u", &a1, &a2, &a3, &a4,
580                       &p1, &p2 ) < 6 ) || ( a1 > 255 ) || ( a2 > 255 )
581          || ( a3 > 255 ) || ( a4 > 255 ) || ( p1 > 255 ) || ( p2 > 255 ) )
582         {
583             free( psz_arg );
584             msg_Err( p_access, "cannot parse passive mode response" );
585             return VLC_EGENERIC;
586         }
587
588         sprintf( psz_ipv4, "%u.%u.%u.%u", a1, a2, a3, a4 );
589         psz_ip = psz_ipv4;
590         i_port = (p1 << 8) | p2;
591     }
592     free( psz_arg );
593
594     msg_Dbg( p_access, "ip:%s port:%d", psz_ip, i_port );
595
596     if( ftp_SendCommand( p_access, "TYPE I" ) < 0 ||
597         ftp_ReadCommand( p_access, &i_answer, NULL ) != 2 )
598     {
599         msg_Err( p_access, "cannot set binary transfer mode" );
600         return VLC_EGENERIC;
601     }
602
603     if( i_start > 0 )
604     {
605         if( ftp_SendCommand( p_access, "REST "I64Fu, i_start ) < 0 ||
606             ftp_ReadCommand( p_access, &i_answer, NULL ) > 3 )
607         {
608             msg_Err( p_access, "cannot set restart point" );
609             return VLC_EGENERIC;
610         }
611     }
612
613     msg_Dbg( p_access, "waiting for data connection..." );
614     p_sys->fd_data = net_OpenTCP( p_access, psz_ip, i_port );
615     if( p_sys->fd_data < 0 )
616     {
617         msg_Err( p_access, "failed to connect with server" );
618         return VLC_EGENERIC;
619     }
620     msg_Dbg( p_access, "connection with \"%s:%d\" successful",
621              psz_ip, i_port );
622
623     /* "1xx" message */
624     if( ftp_SendCommand( p_access, "RETR %s", p_sys->url.psz_path ) < 0 ||
625         ftp_ReadCommand( p_access, &i_answer, NULL ) > 2 )
626     {
627         msg_Err( p_access, "cannot retreive file" );
628         return VLC_EGENERIC;
629     }
630     return VLC_SUCCESS;
631 }
632
633 static int ftp_StopStream ( access_t *p_access )
634 {
635     access_sys_t *p_sys = p_access->p_sys;
636
637     int i_answer;
638
639     if( ftp_SendCommand( p_access, "ABOR" ) < 0 )
640     {
641         msg_Warn( p_access, "cannot abort file" );
642         if(  p_sys->fd_data > 0 )
643             net_Close( p_sys->fd_data );
644         p_sys->fd_data = -1;
645         return VLC_EGENERIC;
646     }
647     if(  p_sys->fd_data > 0 )
648     {
649         net_Close( p_sys->fd_data );
650         p_sys->fd_data = -1;
651         ftp_ReadCommand( p_access, &i_answer, NULL );
652     }
653     ftp_ReadCommand( p_access, &i_answer, NULL );
654
655     return VLC_SUCCESS;
656 }
657