]> git.sesse.net Git - vlc/blobdiff - modules/access/smb.c
Removes trailing spaces. Removes tabs.
[vlc] / modules / access / smb.c
index 60817e3937fa22624d968c89bbdce3c1a1a904d9..b7672a9ca6dc3fc1388e3983529f0b6a9a366115 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * smb.c: SMB input module
  *****************************************************************************
- * Copyright (C) 2001-2004 VideoLAN
+ * Copyright (C) 2001-2004 the VideoLAN team
  * $Id$
  *
  * Authors: Gildas Bazin <gbazin@videolan.org>
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <stdlib.h>
+
 
 #include <vlc/vlc.h>
-#include <vlc/input.h>
+#include <vlc_access.h>
 
-#include <libsmbclient.h>
-#define USE_CTX 1
+#ifdef WIN32
+#ifdef HAVE_FCNTL_H
+#   include <fcntl.h>
+#endif
+#   ifdef HAVE_SYS_STAT_H
+#       include <sys/stat.h>
+#   endif
+#   include <io.h>
+#   define smbc_open(a,b,c) open(a,b,c)
+#   define stat _stati64
+#   define smbc_fstat(a,b) _fstati64(a,b)
+#   define smbc_read read
+#   define smbc_lseek _lseeki64
+#   define smbc_close close
+#else
+#   include <libsmbclient.h>
+#   define USE_CTX 1
+#endif
+
+#include <errno.h>
 
 /*****************************************************************************
  * Module descriptor
@@ -40,16 +58,16 @@ static void Close( vlc_object_t * );
 
 #define CACHING_TEXT N_("Caching value in ms")
 #define CACHING_LONGTEXT N_( \
-    "Allows you to modify the default caching value for SMB streams. This " \
-    "value should be set in millisecond units." )
+    "Caching value for SMB streams. This " \
+    "value should be set in milliseconds." )
 #define USER_TEXT N_("SMB user name")
-#define USER_LONGTEXT N_("Allows you to modify the user name that will " \
+#define USER_LONGTEXT N_("User name that will " \
     "be used for the connection.")
 #define PASS_TEXT N_("SMB password")
-#define PASS_LONGTEXT N_("Allows you to modify the password that will be " \
+#define PASS_LONGTEXT N_("Password that will be " \
     "used for the connection.")
 #define DOMAIN_TEXT N_("SMB domain")
-#define DOMAIN_LONGTEXT N_("Allows you to modify the domain/workgroup that " \
+#define DOMAIN_LONGTEXT N_("Domain/Workgroup that " \
     "will be used for the connection.")
 
 vlc_module_begin();
@@ -87,8 +105,12 @@ struct access_sys_t
 #endif
 };
 
-void smb_auth( const char *srv, const char *shr, char *wg, int wglen,
-               char *un, int unlen, char *pw, int pwlen )
+#ifdef WIN32
+static void Win32AddConnection( access_t *, char *, char *, char *, char * );
+#endif
+
+static void smb_auth( const char *srv, const char *shr, char *wg, int wglen,
+                      char *un, int unlen, char *pw, int pwlen )
 {
     //wglen = unlen = pwlen = 0;
 }
@@ -101,7 +123,8 @@ static int Open( vlc_object_t *p_this )
     access_t     *p_access = (access_t*)p_this;
     access_sys_t *p_sys;
     struct stat  filestat;
-    char         *psz_uri, *psz_user, *psz_pwd, *psz_domain;
+    char         *psz_path, *psz_uri;
+    char         *psz_user = 0, *psz_pwd = 0, *psz_domain = 0;
     int          i_ret;
 
 #ifdef USE_CTX
@@ -111,25 +134,75 @@ static int Open( vlc_object_t *p_this )
     int          i_smb;
 #endif
 
+    /* Parse input URI
+     * [[[domain;]user[:password@]]server[/share[/path[/file]]]] */
+
+    psz_path = strchr( p_access->psz_path, '/' );
+    if( !psz_path )
+    {
+        msg_Err( p_access, "invalid SMB URI: smb://%s", psz_path );
+        return VLC_EGENERIC;
+    }
+    else
+    {
+        char *psz_tmp = strdup( p_access->psz_path );
+        char *psz_parser;
+
+        psz_tmp[ psz_path - p_access->psz_path ] = 0;
+        psz_path = p_access->psz_path;
+        psz_parser = strchr( psz_tmp, '@' );
+        if( psz_parser )
+        {
+            /* User info is there */
+            *psz_parser = 0;
+            psz_path = p_access->psz_path + (psz_parser - psz_tmp) + 1;
+
+            psz_parser = strchr( psz_tmp, ':' );
+            if( psz_parser )
+            {
+                /* Password found */
+                psz_pwd = strdup( psz_parser+1 );
+                *psz_parser = 0;
+            }
+
+            psz_parser = strchr( psz_tmp, ';' );
+            if( psz_parser )
+            {
+                /* Domain found */
+                *psz_parser = 0; psz_parser++;
+                psz_domain = strdup( psz_tmp );
+            }
+            else psz_parser = psz_tmp;
+
+            psz_user = strdup( psz_parser );
+        }
+
+        free( psz_tmp );
+    }
+
     /* Build an SMB URI
      * smb://[[[domain;]user[:password@]]server[/share[/path[/file]]]] */
 
-    psz_user = var_CreateGetString( p_access, "smb-user" );
+    if( !psz_user ) psz_user = var_CreateGetString( p_access, "smb-user" );
     if( psz_user && !*psz_user ) { free( psz_user ); psz_user = 0; }
-    psz_pwd = var_CreateGetString( p_access, "smb-pwd" );
+    if( !psz_pwd ) psz_pwd = var_CreateGetString( p_access, "smb-pwd" );
     if( psz_pwd && !*psz_pwd ) { free( psz_pwd ); psz_pwd = 0; }
-    psz_domain = var_CreateGetString( p_access, "smb-domain" );
+    if(!psz_domain) psz_domain = var_CreateGetString( p_access, "smb-domain" );
     if( psz_domain && !*psz_domain ) { free( psz_domain ); psz_domain = 0; }
 
-    /* FIXME: will need to parse the URI so we don't override credentials
-     * if there are already present. */
+#ifdef WIN32
+    if( psz_user )
+        Win32AddConnection( p_access, psz_path, psz_user, psz_pwd, psz_domain);
+    asprintf( &psz_uri, "//%s", psz_path );
+#else
     if( psz_user )
         asprintf( &psz_uri, "smb://%s%s%s%s%s@%s",
                   psz_domain ? psz_domain : "", psz_domain ? ";" : "",
                   psz_user, psz_pwd ? ":" : "",
-                  psz_pwd ? psz_pwd : "", p_access->psz_path );
+                  psz_pwd ? psz_pwd : "", psz_path );
     else
-        asprintf( &psz_uri, "smb://%s", p_access->psz_path );
+        asprintf( &psz_uri, "smb://%s", psz_path );
+#endif
 
     if( psz_user ) free( psz_user );
     if( psz_pwd ) free( psz_pwd );
@@ -153,7 +226,7 @@ static int Open( vlc_object_t *p_this )
         return VLC_EGENERIC;
     }
 
-    if( !(p_file = p_smb->open( p_smb, psz_uri, O_RDONLY, 0 )) )
+    if( !(p_file = (p_smb->open)( p_smb, psz_uri, O_RDONLY, 0 )) )
     {
         msg_Err( p_access, "open failed for '%s' (%s)",
                  p_access->psz_path, strerror(errno) );
@@ -162,18 +235,30 @@ static int Open( vlc_object_t *p_this )
         return VLC_EGENERIC;
     }
 
-    p_access->info.i_size = 0;
+    /* Init p_access */
+    STANDARD_READ_ACCESS_INIT;
+
     i_ret = p_smb->fstat( p_smb, p_file, &filestat );
     if( i_ret ) msg_Err( p_access, "stat failed (%s)", strerror(errno) );
     else p_access->info.i_size = filestat.st_size;
-
 #else
+
+#ifndef WIN32
     if( smbc_init( smb_auth, 1 ) )
     {
         free( psz_uri );
         return VLC_EGENERIC;
     }
+#endif
 
+/*
+** some version of glibc defines open as a macro, causing havoc
+** with other macros using 'open' under the hood, such as the
+** following one:
+*/
+#if defined(smbc_open) && defined(open)
+# undef open
+#endif
     if( (i_smb = smbc_open( psz_uri, O_RDONLY, 0 )) < 0 )
     {
         msg_Err( p_access, "open failed for '%s' (%s)",
@@ -182,7 +267,9 @@ static int Open( vlc_object_t *p_this )
         return VLC_EGENERIC;
     }
 
-    p_access->info.i_size = 0;
+    /* Init p_access */
+    STANDARD_READ_ACCESS_INIT;
+
     i_ret = smbc_fstat( i_smb, &filestat );
     if( i_ret ) msg_Err( p_access, "stat failed (%s)", strerror(i_ret) );
     else p_access->info.i_size = filestat.st_size;
@@ -190,19 +277,6 @@ static int Open( vlc_object_t *p_this )
 
     free( psz_uri );
 
-    /* Init p_access */
-    p_access->pf_read = Read;
-    p_access->pf_block = NULL;
-    p_access->pf_seek = Seek;
-    p_access->pf_control = Control;
-    p_access->info.i_update = 0;
-    p_access->info.i_pos = 0;
-    p_access->info.b_eof = VLC_FALSE;
-    p_access->info.i_title = 0;
-    p_access->info.i_seekpoint = 0;
-    p_access->p_sys = p_sys = malloc( sizeof( access_sys_t ) );
-    memset( p_sys, 0, sizeof( access_sys_t ) );
-
 #ifdef USE_CTX
     p_sys->p_smb = p_smb;
     p_sys->p_file = p_file;
@@ -225,7 +299,11 @@ static void Close( vlc_object_t *p_this )
     access_sys_t *p_sys = p_access->p_sys;
 
 #ifdef USE_CTX
+#  ifndef HAVE__SMBCCTX_CLOSE_FN
     p_sys->p_smb->close( p_sys->p_smb, p_sys->p_file );
+#  else
+    p_sys->p_smb->close_fn( p_sys->p_smb, p_sys->p_file );
+#  endif
     smbc_free_context( p_sys->p_smb, 1 );
 #else
     smbc_close( p_sys->i_smb );
@@ -346,3 +424,66 @@ static int Control( access_t *p_access, int i_query, va_list args )
 
     return VLC_SUCCESS;
 }
+
+#ifdef WIN32
+static void Win32AddConnection( access_t *p_access, char *psz_path,
+                                char *psz_user, char *psz_pwd,
+                                char *psz_domain )
+{
+    DWORD (*OurWNetAddConnection2)( LPNETRESOURCE, LPCTSTR, LPCTSTR, DWORD );
+    char psz_remote[MAX_PATH], psz_server[MAX_PATH], psz_share[MAX_PATH];
+    NETRESOURCE net_resource;
+    DWORD i_result;
+    char *psz_parser;
+
+    HINSTANCE hdll = LoadLibrary(_T("MPR.DLL"));
+    if( !hdll )
+    {
+        msg_Warn( p_access, "couldn't load mpr.dll" );
+        return;
+    }
+
+    OurWNetAddConnection2 =
+      (void *)GetProcAddress( hdll, _T("WNetAddConnection2A") );
+    if( !OurWNetAddConnection2 )
+    {
+        msg_Warn( p_access, "couldn't find WNetAddConnection2 in mpr.dll" );
+        return;
+    }
+
+    memset( &net_resource, 0, sizeof(net_resource) );
+    net_resource.dwType = RESOURCETYPE_DISK;
+
+    /* Find out server and share names */
+    strlcpy( psz_server, psz_path, sizeof( psz_server ) );
+    psz_share[0] = 0;
+    psz_parser = strchr( psz_path, '/' );
+    if( psz_parser )
+    {
+        char *psz_parser2 = strchr( ++psz_parser, '/' );
+        if( psz_parser2 )
+            strlcpy( psz_share, psz_parser, sizeof( psz_share ) );
+   }
+
+    sprintf( psz_remote, "\\\\%s\\%s", psz_server, psz_share );
+    net_resource.lpRemoteName = psz_remote;
+
+    i_result = OurWNetAddConnection2( &net_resource, psz_pwd, psz_user, 0 );
+
+    if( i_result != NO_ERROR )
+    {
+        msg_Dbg( p_access, "connected to %s", psz_remote );
+    }
+    else if( i_result != ERROR_ALREADY_ASSIGNED &&
+             i_result != ERROR_DEVICE_ALREADY_REMEMBERED )
+    {
+        msg_Dbg( p_access, "already connected to %s", psz_remote );
+    }
+    else
+    {
+        msg_Dbg( p_access, "failed to connect to %s", psz_remote );
+    }
+
+    FreeLibrary( hdll );
+}
+#endif // WIN32