]> git.sesse.net Git - vlc/blob - modules/access/file.c
Fix boundary checks on file seek
[vlc] / modules / access / file.c
1 /*****************************************************************************
2  * file.c: file input (file: access plug-in)
3  *****************************************************************************
4  * Copyright (C) 2001-2006 the VideoLAN team
5  * Copyright © 2006 Rémi Denis-Courmont
6  * $Id$
7  *
8  * Authors: Christophe Massiot <massiot@via.ecp.fr>
9  *          Rémi Denis-Courmont <rem # videolan # org>
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 #include <vlc/vlc.h>
30 #include <vlc/input.h>
31 #include <vlc_interaction.h>
32
33 #include <stdlib.h>
34 #include <string.h>
35 #include <errno.h>
36 #ifdef HAVE_SYS_TYPES_H
37 #   include <sys/types.h>
38 #endif
39 #ifdef HAVE_SYS_STAT_H
40 #   include <sys/stat.h>
41 #endif
42 #ifdef HAVE_FCNTL_H
43 #   include <fcntl.h>
44 #endif
45
46 #if defined( WIN32 ) && !defined( UNDER_CE )
47 #   include <io.h>
48 #else
49 #   include <unistd.h>
50 #   include <poll.h>
51 #endif
52
53 #if defined( WIN32 ) && !defined( UNDER_CE )
54 /* fstat() support for large files on win32 */
55 #   define fstat(a,b) _fstati64(a,b)
56 #   ifdef lseek
57 #      undef lseek
58 #   endif
59 #   define lseek _lseeki64
60 #elif defined( UNDER_CE )
61 #   ifdef read
62 #      undef read
63 #   endif
64 #   define read(a,b,c) fread(b,1,c,a)
65 #   define close(a) fclose(a)
66 #   ifdef lseek
67 #      undef lseek
68 #   endif
69 #   define lseek fseek
70 #endif
71
72 #include "charset.h"
73
74 /*****************************************************************************
75  * Module descriptor
76  *****************************************************************************/
77 static int  Open ( vlc_object_t * );
78 static void Close( vlc_object_t * );
79
80 #define CACHING_TEXT N_("Caching value in ms")
81 #define CACHING_LONGTEXT N_( \
82     "Caching value for files. This " \
83     "value should be set in milliseconds." )
84 #define CAT_TEXT N_("Concatenate with additional files")
85 #define CAT_LONGTEXT N_( \
86     "Play split files as if they were part of a unique file. " \
87     "You need to specify a comma-separated list of files." )
88
89 vlc_module_begin();
90     set_description( _("File input") );
91     set_shortname( _("File") );
92     set_category( CAT_INPUT );
93     set_subcategory( SUBCAT_INPUT_ACCESS );
94     add_integer( "file-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT, CACHING_LONGTEXT, VLC_TRUE );
95     add_deprecated( "file-cat", VLC_TRUE );
96     set_capability( "access2", 50 );
97     add_shortcut( "file" );
98     add_shortcut( "stream" );
99     add_shortcut( "kfir" );
100     set_callbacks( Open, Close );
101 vlc_module_end();
102
103
104 /*****************************************************************************
105  * Exported prototypes
106  *****************************************************************************/
107 static int  Seek( access_t *, int64_t );
108 static int  Read( access_t *, uint8_t *, int );
109 static int  Control( access_t *, int, va_list );
110
111 static int  open_file( access_t *, const char * );
112
113 struct access_sys_t
114 {
115     unsigned int i_nb_reads;
116     vlc_bool_t   b_kfir;
117
118     int fd;
119
120     /* */
121     vlc_bool_t b_seekable;
122     vlc_bool_t b_pace_control;
123 };
124
125 /*****************************************************************************
126  * Open: open the file
127  *****************************************************************************/
128 static int Open( vlc_object_t *p_this )
129 {
130     access_t     *p_access = (access_t*)p_this;
131     access_sys_t *p_sys;
132
133     vlc_bool_t    b_stdin = !strcmp (p_access->psz_path, "-");
134
135     /* Update default_pts to a suitable value for file access */
136     var_Create( p_access, "file-caching", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
137
138     STANDARD_READ_ACCESS_INIT;
139     p_sys->i_nb_reads = 0;
140     p_sys->b_kfir = VLC_FALSE;
141     int fd = p_sys->fd = -1;
142
143     if (!strcasecmp (p_access->psz_access, "stream"))
144     {
145         p_sys->b_seekable = VLC_FALSE;
146         p_sys->b_pace_control = VLC_FALSE;
147     }
148     else if (!strcasecmp (p_access->psz_access, "kfir"))
149     {
150         p_sys->b_seekable = VLC_FALSE;
151         p_sys->b_pace_control = VLC_FALSE;
152         p_sys->b_kfir = VLC_TRUE;
153     }
154     else
155     {
156         p_sys->b_seekable = VLC_TRUE;
157         p_sys->b_pace_control = VLC_TRUE;
158     }
159
160     /* Open file */
161     msg_Dbg (p_access, "opening file `%s'", p_access->psz_path);
162
163     if (b_stdin)
164         fd = dup (0);
165     else
166         fd = open_file (p_access, p_access->psz_path);
167
168 #ifdef HAVE_SYS_STAT_H
169     struct stat st;
170
171     while (fd != -1)
172     {
173         if (fstat (fd, &st))
174             msg_Err (p_access, "fstat(%d): %s", fd, strerror (errno));
175         else
176         if (S_ISDIR (st.st_mode))
177             /* The directory plugin takes care of that */
178             msg_Dbg (p_access, "file is a directory, aborting");
179         else
180             break; // success
181
182         close (fd);
183         fd = -1;
184     }
185 #endif
186
187     if (fd == -1)
188     {
189         free (p_sys);
190         return VLC_EGENERIC;
191     }
192     p_sys->fd = fd;
193
194 #ifdef HAVE_SYS_STAT_H
195     p_access->info.i_size = st.st_size;
196     if (!S_ISREG (st.st_mode) && !S_ISBLK (st.st_mode)
197      && (!S_ISCHR (st.st_mode) || (st.st_size == 0)))
198         p_sys->b_seekable = VLC_FALSE;
199 #else
200     p_sys->b_seekable = !b_stdin;
201 #endif
202
203     if (p_sys->b_seekable && (p_access->info.i_size == 0))
204     {
205         /* FIXME that's bad because all others access will be probed */
206         msg_Err (p_access, "file is empty, aborting");
207         Close (p_this);
208         return VLC_EGENERIC;
209     }
210
211     return VLC_SUCCESS;
212 }
213
214 /*****************************************************************************
215  * Close: close the target
216  *****************************************************************************/
217 static void Close (vlc_object_t * p_this)
218 {
219     access_t     *p_access = (access_t*)p_this;
220     access_sys_t *p_sys = p_access->p_sys;
221
222     close (p_sys->fd);
223     free (p_sys);
224 }
225
226 /*****************************************************************************
227  * Read: standard read on a file descriptor.
228  *****************************************************************************/
229 static int Read( access_t *p_access, uint8_t *p_buffer, int i_len )
230 {
231     access_sys_t *p_sys = p_access->p_sys;
232     int i_ret;
233     int fd = p_sys->fd;
234
235 #if !defined(WIN32) && !defined(UNDER_CE)
236     if( !p_sys->b_pace_control )
237     {
238         if( !p_sys->b_kfir )
239         {
240             /* Find if some data is available. This won't work under Windows. */
241             do
242             {
243                 struct pollfd ufd;
244
245                 if( p_access->b_die )
246                     return 0;
247
248                 memset (&ufd, 0, sizeof (ufd));
249                 ufd.fd = fd;
250                 ufd.events = POLLIN;
251
252                 i_ret = poll (&ufd, 1, 500);
253             }
254             while (i_ret <= 0);
255
256             i_ret = read (fd, p_buffer, i_len);
257         }
258         else
259         {
260             /* b_kfir ; work around a buggy poll() driver implementation */
261             while (((i_ret = read (fd, p_buffer, i_len)) == 0)
262                 && !p_access->b_die)
263             {
264                 msleep( INPUT_ERROR_SLEEP );
265             }
266         }
267     }
268     else
269 #endif /* WIN32 || UNDER_CE */
270         /* b_pace_control || WIN32 */
271         i_ret = read( fd, p_buffer, i_len );
272
273     if( i_ret < 0 )
274     {
275         switch (errno)
276         {
277             case EINTR:
278             case EAGAIN:
279                 break;
280
281             default:
282                 msg_Err (p_access, "read failed (%s)", strerror (errno));
283                 intf_UserFatal (p_access, VLC_FALSE, _("File reading failed"),
284                                 _("VLC could not read file \"%s\"."),
285                                 strerror (errno));
286         }
287
288         /* Delay a bit to avoid consuming all the CPU. This is particularly
289          * useful when reading from an unconnected FIFO. */
290         msleep( INPUT_ERROR_SLEEP );
291     }
292
293     p_sys->i_nb_reads++;
294
295 #ifdef HAVE_SYS_STAT_H
296     if( p_access->info.i_size != 0 &&
297         (p_sys->i_nb_reads % INPUT_FSTAT_NB_READS) == 0 )
298     {
299         struct stat st;
300
301         if ((fstat (fd, &st) == 0)
302          && (p_access->info.i_size != st.st_size))
303         {
304             p_access->info.i_size = st.st_size;
305             p_access->info.i_update |= INPUT_UPDATE_SIZE;
306         }
307     }
308 #endif
309
310     if( i_ret > 0 )
311         p_access->info.i_pos += i_ret;
312     else if( i_ret == 0 )
313         p_access->info.b_eof = VLC_TRUE;
314
315     return i_ret;
316 }
317
318 /*****************************************************************************
319  * Seek: seek to a specific location in a file
320  *****************************************************************************/
321 static int Seek (access_t *p_access, int64_t i_pos)
322 {
323     access_sys_t *p_sys = p_access->p_sys;
324
325     if (i_pos > p_access->info.i_size)
326     {
327         msg_Err (p_access, "seeking too far");
328         i_pos = p_access->info.i_pos = p_access->info.i_size;
329     }
330     else if (i_pos < 0)
331     {
332         msg_Err (p_access, "seeking too early");
333         i_pos = p_access->info.i_pos = 0;
334     }
335
336     p_access->info.i_pos = i_pos;
337     p_access->info.b_eof = VLC_FALSE;
338
339     /* Determine which file we need to access */
340     lseek (p_sys->fd, i_pos, SEEK_SET);
341     return VLC_SUCCESS;
342 }
343
344 /*****************************************************************************
345  * Control:
346  *****************************************************************************/
347 static int Control( access_t *p_access, int i_query, va_list args )
348 {
349     access_sys_t *p_sys = p_access->p_sys;
350     vlc_bool_t   *pb_bool;
351     int          *pi_int;
352     int64_t      *pi_64;
353
354     switch( i_query )
355     {
356         /* */
357         case ACCESS_CAN_SEEK:
358         case ACCESS_CAN_FASTSEEK:
359             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
360             *pb_bool = p_sys->b_seekable;
361             break;
362
363         case ACCESS_CAN_PAUSE:
364         case ACCESS_CAN_CONTROL_PACE:
365             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
366             *pb_bool = p_sys->b_pace_control;
367             break;
368
369         /* */
370         case ACCESS_GET_MTU:
371             pi_int = (int*)va_arg( args, int * );
372             *pi_int = 0;
373             break;
374
375         case ACCESS_GET_PTS_DELAY:
376             pi_64 = (int64_t*)va_arg( args, int64_t * );
377             *pi_64 = var_GetInteger( p_access, "file-caching" ) * I64C(1000);
378             break;
379
380         /* */
381         case ACCESS_SET_PAUSE_STATE:
382             /* Nothing to do */
383             break;
384
385         case ACCESS_GET_TITLE_INFO:
386         case ACCESS_SET_TITLE:
387         case ACCESS_SET_SEEKPOINT:
388         case ACCESS_SET_PRIVATE_ID_STATE:
389         case ACCESS_GET_META:
390             return VLC_EGENERIC;
391
392         default:
393             msg_Warn( p_access, "unimplemented query in control" );
394             return VLC_EGENERIC;
395
396     }
397     return VLC_SUCCESS;
398 }
399
400
401 static char *expand_path (const access_t *p_access, const char *path)
402 {
403     if (strncmp (path, "~/", 2) == 0)
404     {
405         char *res;
406
407          // TODO: we should also support the ~cmassiot/ syntax
408          if (asprintf (&res, "%s/%s", p_access->p_libvlc->psz_homedir, path + 2) == -1)
409              return NULL;
410          return res;
411     }
412
413 #if defined(WIN32)
414     if (!strcasecmp (p_access->psz_access, "file")
415       && ('/' == path[0]) && path[1] && (':' == path[2]) && ('/' == path[3]))
416         // Explorer can open path such as file:/C:/ or file:///C:/
417         // hence remove leading / if found
418         return strdup (path + 1);
419 #endif
420
421     return strdup (path);
422 }
423
424
425 /*****************************************************************************
426  * open_file: Opens a specific file
427  *****************************************************************************/
428 static int open_file (access_t *p_access, const char *psz_name)
429 {
430     char *path = expand_path (p_access, psz_name);
431
432 #ifdef UNDER_CE
433     p_sys->fd = utf8_fopen( path, "rb" );
434     if ( !p_sys->fd )
435     {
436         msg_Err( p_access, "cannot open file %s", psz_name );
437         intf_UserFatal( p_access, VLC_FALSE, _("File reading failed"), 
438                         _("VLC could not open file \"%s\"."), psz_name );
439         free (path);
440         return VLC_EGENERIC;
441     }
442
443     fseek( p_sys->fd, 0, SEEK_END );
444     p_access->info.i_size = ftell( p_sys->fd );
445     p_access->info.i_update |= INPUT_UPDATE_SIZE;
446     fseek( p_sys->fd, 0, SEEK_SET );
447 #else
448     int fd = utf8_open (path, O_RDONLY | O_NONBLOCK /* O_LARGEFILE*/, 0666);
449     if (fd == -1)
450     {
451         msg_Err (p_access, "cannot open file %s (%s)", psz_name,
452                  strerror (errno));
453         intf_UserFatal (p_access, VLC_FALSE, _("File reading failed"), 
454                         _("VLC could not open file \"%s\" (%s)."),
455                         psz_name, strerror (errno));
456         return -1;
457     }
458
459 # if defined(HAVE_FCNTL_H) && defined(F_FDAHEAD) && defined(F_NOCACHE)
460     /* We'd rather use any available memory for reading ahead
461      * than for caching what we've already seen/heard */
462     fcntl (fd, F_RDAHEAD, 1);
463     fcntl (fd, F_NOCACHE, 1);
464 # endif
465 #endif
466
467     return fd;
468 }