X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Faccess%2Fftp.c;h=07cbf9b2a8ebf8902e51b4548314995c33d9b592;hb=bfd061bbf3aaa9da2d648de8c79d9f0ee75bfac9;hp=0684a3880c527cc51e94ea988b1e8945ce7d5f9a;hpb=7056f7113ecf94d1a87a0ee22840f25537ff66ab;p=vlc diff --git a/modules/access/ftp.c b/modules/access/ftp.c index 0684a3880c..07cbf9b2a8 100644 --- a/modules/access/ftp.c +++ b/modules/access/ftp.c @@ -303,11 +303,16 @@ static int parseURL( vlc_url_t *url, const char *path ) if( url->i_port <= 0 ) url->i_port = IPPORT_FTP; /* default port */ + if( url->psz_path == NULL ) + return VLC_SUCCESS; /* FTP URLs are relative to user's default directory (RFC1738 §3.2) For absolute path use ftp://foo.bar//usr/local/etc/filename */ /* FIXME: we should issue a series of CWD, one per slash */ - if( url->psz_path == NULL ) - return VLC_SUCCESS; + if( url->psz_path ) + { + assert( url->psz_path[0] == '/' ); + url->psz_path++; + } char *type = strstr( url->psz_path, ";type=" ); if( type ) @@ -338,7 +343,7 @@ static int InOpen( vlc_object_t *p_this ) p_sys->out = false; p_sys->directory = false; - if( parseURL( &p_sys->url, p_access->psz_path ) ) + if( parseURL( &p_sys->url, p_access->psz_location ) ) goto exit_error; if( Connect( p_this, p_sys ) ) @@ -348,26 +353,26 @@ static int InOpen( vlc_object_t *p_this ) if( p_sys->url.psz_path == NULL ) p_sys->directory = true; else - if( ftp_SendCommand( p_this, p_sys, "SIZE %s", p_sys->url.psz_path ) < 0 - || ftp_ReadCommand( p_this, p_sys, NULL, &psz_arg ) != 2 ) - { - msg_Dbg( p_access, "cannot get file size" ); - msg_Dbg( p_access, "will try to get directory contents" ); - if( ftp_SendCommand( p_this, p_sys, "CWD %s", p_sys->url.psz_path ) < 0 - || ftp_ReadCommand( p_this, p_sys, NULL, &psz_arg ) != 2 ) - { - msg_Err( p_access, "file or directory doesn't exist" ); - net_Close( p_sys->fd_cmd ); - goto exit_error; - } - p_sys->directory = true; - } + if( ftp_SendCommand( p_this, p_sys, "SIZE %s", p_sys->url.psz_path ) < 0 ) + goto error; else + if ( ftp_ReadCommand( p_this, p_sys, NULL, &psz_arg ) == 2 ) { p_access->info.i_size = atoll( &psz_arg[4] ); free( psz_arg ); msg_Dbg( p_access, "file size: %"PRIu64, p_access->info.i_size ); } + else + if( ftp_SendCommand( p_this, p_sys, "CWD %s", p_sys->url.psz_path ) < 0 ) + goto error; + else + if( ftp_ReadCommand( p_this, p_sys, NULL, NULL ) != 2 ) + { + msg_Err( p_access, "file or directory does not exist" ); + goto error; + } + else + p_sys->directory = true; /* Start the 'stream' */ if( ftp_StartStream( p_this, p_sys, 0 ) < 0 ) @@ -382,6 +387,8 @@ static int InOpen( vlc_object_t *p_this ) return VLC_SUCCESS; +error: + net_Close( p_sys->fd_cmd ); exit_error: vlc_UrlClean( &p_sys->url ); free( p_sys ); @@ -520,7 +527,7 @@ static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len ) } else { - snprintf( (char*)p_buffer, i_len, "ftp://%s:%d%s/%s\n", + snprintf( (char*)p_buffer, i_len, "ftp://%s:%d/%s/%s\n", p_sys->url.psz_host, p_sys->url.i_port, p_sys->url.psz_path, psz_line ); free( psz_line ); @@ -577,7 +584,7 @@ static int Control( access_t *p_access, int i_query, va_list args ) /* */ case ACCESS_CAN_SEEK: pb_bool = (bool*)va_arg( args, bool* ); - *pb_bool = true; + *pb_bool = !p_access->p_sys->directory; break; case ACCESS_CAN_FASTSEEK: pb_bool = (bool*)va_arg( args, bool* ); @@ -595,7 +602,7 @@ static int Control( access_t *p_access, int i_query, va_list args ) /* */ case ACCESS_GET_PTS_DELAY: pi_64 = (int64_t*)va_arg( args, int64_t * ); - *pi_64 = (int64_t)var_GetInteger( p_access, "ftp-caching" ) * INT64_C(1000); + *pi_64 = var_GetInteger( p_access, "ftp-caching" ) * INT64_C(1000); break; /* */