]> git.sesse.net Git - vlc/blob - modules/access/smb.c
Missing static
[vlc] / modules / access / smb.c
1 /*****************************************************************************
2  * smb.c: SMB input module
3  *****************************************************************************
4  * Copyright (C) 2001-2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Gildas Bazin <gbazin@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27
28
29 #include <vlc/vlc.h>
30 #include <vlc_access.h>
31
32 #ifdef WIN32
33 #ifdef HAVE_FCNTL_H
34 #   include <fcntl.h>
35 #endif
36 #   ifdef HAVE_SYS_STAT_H
37 #       include <sys/stat.h>
38 #   endif
39 #   include <io.h>
40 #   define smbc_open(a,b,c) open(a,b,c)
41 #   define stat _stati64
42 #   define smbc_fstat(a,b) _fstati64(a,b)
43 #   define smbc_read read
44 #   define smbc_lseek _lseeki64
45 #   define smbc_close close
46 #else
47 #   include <libsmbclient.h>
48 #   define USE_CTX 1
49 #endif
50
51 #include <errno.h>
52
53 /*****************************************************************************
54  * Module descriptor
55  *****************************************************************************/
56 static int  Open ( vlc_object_t * );
57 static void Close( vlc_object_t * );
58
59 #define CACHING_TEXT N_("Caching value in ms")
60 #define CACHING_LONGTEXT N_( \
61     "Caching value for SMB streams. This " \
62     "value should be set in milliseconds." )
63 #define USER_TEXT N_("SMB user name")
64 #define USER_LONGTEXT N_("User name that will " \
65     "be used for the connection.")
66 #define PASS_TEXT N_("SMB password")
67 #define PASS_LONGTEXT N_("Password that will be " \
68     "used for the connection.")
69 #define DOMAIN_TEXT N_("SMB domain")
70 #define DOMAIN_LONGTEXT N_("Domain/Workgroup that " \
71     "will be used for the connection.")
72
73 vlc_module_begin();
74     set_shortname( "SMB" );
75     set_description( _("SMB input") );
76     set_capability( "access2", 0 );
77     set_category( CAT_INPUT );
78     set_subcategory( SUBCAT_INPUT_ACCESS );
79     add_integer( "smb-caching", 2 * DEFAULT_PTS_DELAY / 1000, NULL,
80                  CACHING_TEXT, CACHING_LONGTEXT, VLC_TRUE );
81     add_string( "smb-user", NULL, NULL, USER_TEXT, USER_LONGTEXT,
82                 VLC_FALSE );
83     add_string( "smb-pwd", NULL, NULL, PASS_TEXT,
84                 PASS_LONGTEXT, VLC_FALSE );
85     add_string( "smb-domain", NULL, NULL, DOMAIN_TEXT,
86                 DOMAIN_LONGTEXT, VLC_FALSE );
87     add_shortcut( "smb" );
88     set_callbacks( Open, Close );
89 vlc_module_end();
90
91 /*****************************************************************************
92  * Local prototypes
93  *****************************************************************************/
94 static int Read( access_t *, uint8_t *, int );
95 static int Seek( access_t *, int64_t );
96 static int Control( access_t *, int, va_list );
97
98 struct access_sys_t
99 {
100 #ifdef USE_CTX
101     SMBCCTX *p_smb;
102     SMBCFILE *p_file;
103 #else
104     int i_smb;
105 #endif
106 };
107
108 #ifdef WIN32
109 static void Win32AddConnection( access_t *, char *, char *, char *, char * );
110 #endif
111
112 static void smb_auth( const char *srv, const char *shr, char *wg, int wglen,
113                       char *un, int unlen, char *pw, int pwlen )
114 {
115     //wglen = unlen = pwlen = 0;
116 }
117
118 /****************************************************************************
119  * Open: connect to smb server and ask for file
120  ****************************************************************************/
121 static int Open( vlc_object_t *p_this )
122 {
123     access_t     *p_access = (access_t*)p_this;
124     access_sys_t *p_sys;
125     struct stat  filestat;
126     char         *psz_path, *psz_uri;
127     char         *psz_user = 0, *psz_pwd = 0, *psz_domain = 0;
128     int          i_ret;
129
130 #ifdef USE_CTX
131     SMBCCTX      *p_smb;
132     SMBCFILE     *p_file;
133 #else
134     int          i_smb;
135 #endif
136
137     /* Parse input URI
138      * [[[domain;]user[:password@]]server[/share[/path[/file]]]] */
139
140     psz_path = strchr( p_access->psz_path, '/' );
141     if( !psz_path )
142     {
143         msg_Err( p_access, "invalid SMB URI: smb://%s", psz_path );
144         return VLC_EGENERIC;
145     }
146     else
147     {
148         char *psz_tmp = strdup( p_access->psz_path );
149         char *psz_parser;
150
151         psz_tmp[ psz_path - p_access->psz_path ] = 0;
152         psz_path = p_access->psz_path;
153         psz_parser = strchr( psz_tmp, '@' );
154         if( psz_parser )
155         {
156             /* User info is there */
157             *psz_parser = 0;
158             psz_path = p_access->psz_path + (psz_parser - psz_tmp) + 1;
159
160             psz_parser = strchr( psz_tmp, ':' );
161             if( psz_parser )
162             {
163                 /* Password found */
164                 psz_pwd = strdup( psz_parser+1 );
165                 *psz_parser = 0;
166             }
167
168             psz_parser = strchr( psz_tmp, ';' );
169             if( psz_parser )
170             {
171                 /* Domain found */
172                 *psz_parser = 0; psz_parser++;
173                 psz_domain = strdup( psz_tmp );
174             }
175             else psz_parser = psz_tmp;
176
177             psz_user = strdup( psz_parser );
178         }
179
180         free( psz_tmp );
181     }
182
183     /* Build an SMB URI
184      * smb://[[[domain;]user[:password@]]server[/share[/path[/file]]]] */
185
186     if( !psz_user ) psz_user = var_CreateGetString( p_access, "smb-user" );
187     if( psz_user && !*psz_user ) { free( psz_user ); psz_user = 0; }
188     if( !psz_pwd ) psz_pwd = var_CreateGetString( p_access, "smb-pwd" );
189     if( psz_pwd && !*psz_pwd ) { free( psz_pwd ); psz_pwd = 0; }
190     if(!psz_domain) psz_domain = var_CreateGetString( p_access, "smb-domain" );
191     if( psz_domain && !*psz_domain ) { free( psz_domain ); psz_domain = 0; }
192
193 #ifdef WIN32
194     if( psz_user )
195         Win32AddConnection( p_access, psz_path, psz_user, psz_pwd, psz_domain);
196     asprintf( &psz_uri, "//%s", psz_path );
197 #else
198     if( psz_user )
199         asprintf( &psz_uri, "smb://%s%s%s%s%s@%s",
200                   psz_domain ? psz_domain : "", psz_domain ? ";" : "",
201                   psz_user, psz_pwd ? ":" : "",
202                   psz_pwd ? psz_pwd : "", psz_path );
203     else
204         asprintf( &psz_uri, "smb://%s", psz_path );
205 #endif
206
207     if( psz_user ) free( psz_user );
208     if( psz_pwd ) free( psz_pwd );
209     if( psz_domain ) free( psz_domain );
210
211 #ifdef USE_CTX
212     if( !(p_smb = smbc_new_context()) )
213     {
214         msg_Err( p_access, "out of memory" );
215         free( psz_uri );
216         return VLC_ENOMEM;
217     }
218     p_smb->debug = 1;
219     p_smb->callbacks.auth_fn = smb_auth;
220
221     if( !smbc_init_context( p_smb ) )
222     {
223         msg_Err( p_access, "cannot initialize context (%s)", strerror(errno) );
224         smbc_free_context( p_smb, 1 );
225         free( psz_uri );
226         return VLC_EGENERIC;
227     }
228
229     if( !(p_file = p_smb->open( p_smb, psz_uri, O_RDONLY, 0 )) )
230     {
231         msg_Err( p_access, "open failed for '%s' (%s)",
232                  p_access->psz_path, strerror(errno) );
233         smbc_free_context( p_smb, 1 );
234         free( psz_uri );
235         return VLC_EGENERIC;
236     }
237
238     /* Init p_access */
239     STANDARD_READ_ACCESS_INIT;
240
241     i_ret = p_smb->fstat( p_smb, p_file, &filestat );
242     if( i_ret ) msg_Err( p_access, "stat failed (%s)", strerror(errno) );
243     else p_access->info.i_size = filestat.st_size;
244 #else
245
246 #ifndef WIN32
247     if( smbc_init( smb_auth, 1 ) )
248     {
249         free( psz_uri );
250         return VLC_EGENERIC;
251     }
252 #endif
253
254     if( (i_smb = smbc_open( psz_uri, O_RDONLY, 0 )) < 0 )
255     {
256         msg_Err( p_access, "open failed for '%s' (%s)",
257                  p_access->psz_path, strerror(errno) );
258         free( psz_uri );
259         return VLC_EGENERIC;
260     }
261
262     /* Init p_access */
263     STANDARD_READ_ACCESS_INIT;
264
265     i_ret = smbc_fstat( i_smb, &filestat );
266     if( i_ret ) msg_Err( p_access, "stat failed (%s)", strerror(i_ret) );
267     else p_access->info.i_size = filestat.st_size;
268 #endif
269
270     free( psz_uri );
271
272 #ifdef USE_CTX
273     p_sys->p_smb = p_smb;
274     p_sys->p_file = p_file;
275 #else
276     p_sys->i_smb = i_smb;
277 #endif
278
279     /* Update default_pts to a suitable value for smb access */
280     var_Create( p_access, "smb-caching", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
281
282     return VLC_SUCCESS;
283 }
284
285 /*****************************************************************************
286  * Close: free unused data structures
287  *****************************************************************************/
288 static void Close( vlc_object_t *p_this )
289 {
290     access_t     *p_access = (access_t*)p_this;
291     access_sys_t *p_sys = p_access->p_sys;
292
293 #ifdef USE_CTX
294 #  ifndef HAVE__SMBCCTX_CLOSE_FN
295     p_sys->p_smb->close( p_sys->p_smb, p_sys->p_file );
296 #  else
297     p_sys->p_smb->close_fn( p_sys->p_smb, p_sys->p_file );
298 #  endif
299     smbc_free_context( p_sys->p_smb, 1 );
300 #else
301     smbc_close( p_sys->i_smb );
302 #endif
303
304     free( p_sys );
305 }
306
307 /*****************************************************************************
308  * Seek: try to go at the right place
309  *****************************************************************************/
310 static int Seek( access_t *p_access, int64_t i_pos )
311 {
312     access_sys_t *p_sys = p_access->p_sys;
313     int64_t      i_ret;
314
315     if( i_pos < 0 ) return VLC_EGENERIC;
316
317     msg_Dbg( p_access, "seeking to "I64Fd, i_pos );
318
319 #ifdef USE_CTX
320     i_ret = p_sys->p_smb->lseek(p_sys->p_smb, p_sys->p_file, i_pos, SEEK_SET);
321 #else
322     i_ret = smbc_lseek( p_sys->i_smb, i_pos, SEEK_SET );
323 #endif
324     if( i_ret == -1 )
325     {
326         msg_Err( p_access, "seek failed (%s)", strerror(errno) );
327         return VLC_EGENERIC;
328     }
329
330     p_access->info.b_eof = VLC_FALSE;
331     p_access->info.i_pos = i_ret;
332
333     return VLC_SUCCESS;
334 }
335
336 /*****************************************************************************
337  * Read:
338  *****************************************************************************/
339 static int Read( access_t *p_access, uint8_t *p_buffer, int i_len )
340 {
341     access_sys_t *p_sys = p_access->p_sys;
342     int i_read;
343
344     if( p_access->info.b_eof ) return 0;
345
346 #ifdef USE_CTX
347     i_read = p_sys->p_smb->read(p_sys->p_smb, p_sys->p_file, p_buffer, i_len);
348 #else
349     i_read = smbc_read( p_sys->i_smb, p_buffer, i_len );
350 #endif
351     if( i_read < 0 )
352     {
353         msg_Err( p_access, "read failed (%s)", strerror(errno) );
354         return -1;
355     }
356
357     if( i_read == 0 ) p_access->info.b_eof = VLC_TRUE;
358     else if( i_read > 0 ) p_access->info.i_pos += i_read;
359
360     return i_read;
361 }
362
363 /*****************************************************************************
364  * Control:
365  *****************************************************************************/
366 static int Control( access_t *p_access, int i_query, va_list args )
367 {
368     vlc_bool_t   *pb_bool;
369     int          *pi_int;
370     int64_t      *pi_64;
371
372     switch( i_query )
373     {
374     case ACCESS_CAN_SEEK:
375         pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
376         *pb_bool = VLC_TRUE;
377         break;
378     case ACCESS_CAN_FASTSEEK:
379         pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
380         *pb_bool = VLC_TRUE;
381         break;
382     case ACCESS_CAN_PAUSE:
383         pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
384         *pb_bool = VLC_TRUE;
385         break;
386     case ACCESS_CAN_CONTROL_PACE:
387         pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
388         *pb_bool = VLC_TRUE;
389         break;
390
391     case ACCESS_GET_MTU:
392         pi_int = (int*)va_arg( args, int * );
393         *pi_int = 0;
394         break;
395
396     case ACCESS_GET_PTS_DELAY:
397         pi_64 = (int64_t*)va_arg( args, int64_t * );
398         *pi_64 = (int64_t)var_GetInteger( p_access, "smb-caching" ) * 1000;
399         break;
400
401     case ACCESS_SET_PAUSE_STATE:
402         /* Nothing to do */
403         break;
404
405     case ACCESS_GET_TITLE_INFO:
406     case ACCESS_SET_TITLE:
407     case ACCESS_SET_SEEKPOINT:
408     case ACCESS_SET_PRIVATE_ID_STATE:
409         return VLC_EGENERIC;
410
411     default:
412         msg_Warn( p_access, "unimplemented query in control" );
413         return VLC_EGENERIC;
414
415     }
416
417     return VLC_SUCCESS;
418 }
419
420 #ifdef WIN32
421 static void Win32AddConnection( access_t *p_access, char *psz_path,
422                                 char *psz_user, char *psz_pwd,
423                                 char *psz_domain )
424 {
425     DWORD (*OurWNetAddConnection2)( LPNETRESOURCE, LPCTSTR, LPCTSTR, DWORD );
426     char psz_remote[MAX_PATH], psz_server[MAX_PATH], psz_share[MAX_PATH];
427     NETRESOURCE net_resource;
428     DWORD i_result;
429     char *psz_parser;
430
431     HINSTANCE hdll = LoadLibrary(_T("MPR.DLL"));
432     if( !hdll )
433     {
434         msg_Warn( p_access, "couldn't load mpr.dll" );
435         return;
436     }
437
438     OurWNetAddConnection2 =
439       (void *)GetProcAddress( hdll, _T("WNetAddConnection2A") );
440     if( !OurWNetAddConnection2 )
441     {
442         msg_Warn( p_access, "couldn't find WNetAddConnection2 in mpr.dll" );
443         return;
444     }
445
446     memset( &net_resource, 0, sizeof(net_resource) );
447     net_resource.dwType = RESOURCETYPE_DISK;
448
449     /* Find out server and share names */
450     strlcpy( psz_server, psz_path, sizeof( psz_server ) );
451     psz_share[0] = 0;
452     psz_parser = strchr( psz_path, '/' );
453     if( psz_parser )
454     {
455         char *psz_parser2 = strchr( ++psz_parser, '/' );
456         if( psz_parser2 )
457             strlcpy( psz_share, psz_parser, sizeof( psz_share ) );
458    }
459
460     sprintf( psz_remote, "\\\\%s\\%s", psz_server, psz_share );
461     net_resource.lpRemoteName = psz_remote;
462
463     i_result = OurWNetAddConnection2( &net_resource, psz_pwd, psz_user, 0 );
464
465     if( i_result != NO_ERROR )
466     {
467         msg_Dbg( p_access, "connected to %s", psz_remote );
468     }
469     else if( i_result != ERROR_ALREADY_ASSIGNED && 
470              i_result != ERROR_DEVICE_ALREADY_REMEMBERED )
471     {
472         msg_Dbg( p_access, "already connected to %s", psz_remote );
473     }
474     else
475     {
476         msg_Dbg( p_access, "failed to connect to %s", psz_remote );
477     }
478
479     FreeLibrary( hdll );
480 }
481 #endif // WIN32