]> git.sesse.net Git - vlc/blob - modules/access/file.c
HTTP: do not send a negative byte range
[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-2007 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 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <vlc_common.h>
34 #include <vlc_plugin.h>
35 #include <vlc_input.h>
36 #include <vlc_access.h>
37 #include <vlc_interface.h>
38
39 #include <assert.h>
40 #include <errno.h>
41 #ifdef HAVE_SYS_TYPES_H
42 #   include <sys/types.h>
43 #endif
44 #ifdef HAVE_SYS_STAT_H
45 #   include <sys/stat.h>
46 #endif
47 #ifdef HAVE_FCNTL_H
48 #   include <fcntl.h>
49 #endif
50
51 #if defined( WIN32 ) && !defined( UNDER_CE )
52 #   include <io.h>
53 #   include <ctype.h>
54 #else
55 #   include <unistd.h>
56 #   include <poll.h>
57 #endif
58
59 #if defined( WIN32 ) && !defined( UNDER_CE )
60 #   ifdef lseek
61 #      undef lseek
62 #   endif
63 #   define lseek _lseeki64
64 #elif defined( UNDER_CE )
65 #   ifdef read
66 #      undef read
67 #   endif
68 #   define read(a,b,c) fread(b,1,c,a)
69 #   define close(a) fclose(a)
70 #   ifdef lseek
71 #      undef lseek
72 #   endif
73 #   define lseek fseek
74 #endif
75
76 #include <vlc_charset.h>
77
78 /*****************************************************************************
79  * Module descriptor
80  *****************************************************************************/
81 static int  Open ( vlc_object_t * );
82 static void Close( vlc_object_t * );
83
84 #define CACHING_TEXT N_("Caching value in ms")
85 #define CACHING_LONGTEXT N_( \
86     "Caching value for files. This " \
87     "value should be set in milliseconds." )
88
89 vlc_module_begin();
90     set_description( N_("File input") );
91     set_shortname( N_("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, true );
95     add_obsolete_string( "file-cat" );
96     set_capability( "access", 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 ssize_t Read( access_t *, uint8_t *, size_t );
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     bool   b_kfir;
117
118     int fd;
119
120     /* */
121     bool b_seekable;
122     bool 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     bool    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 = false;
141     int fd = p_sys->fd = -1;
142
143     if (!strcasecmp (p_access->psz_access, "stream"))
144     {
145         p_sys->b_seekable = false;
146         p_sys->b_pace_control = false;
147     }
148     else if (!strcasecmp (p_access->psz_access, "kfir"))
149     {
150         p_sys->b_seekable = false;
151         p_sys->b_pace_control = false;
152         p_sys->b_kfir = true;
153     }
154     else
155     {
156         p_sys->b_seekable = true;
157         p_sys->b_pace_control = 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): %m", fd);
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))
197         p_sys->b_seekable = false;
198 #else
199     p_sys->b_seekable = !b_stdin;
200 # warning File size not known!
201 #endif
202
203     return VLC_SUCCESS;
204 }
205
206 /*****************************************************************************
207  * Close: close the target
208  *****************************************************************************/
209 static void Close (vlc_object_t * p_this)
210 {
211     access_t     *p_access = (access_t*)p_this;
212     access_sys_t *p_sys = p_access->p_sys;
213
214     close (p_sys->fd);
215     free (p_sys);
216 }
217
218 /*****************************************************************************
219  * Read: standard read on a file descriptor.
220  *****************************************************************************/
221 static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len )
222 {
223     access_sys_t *p_sys = p_access->p_sys;
224     ssize_t i_ret;
225     int fd = p_sys->fd;
226
227 #if !defined(WIN32) && !defined(UNDER_CE)
228     if( !p_sys->b_pace_control )
229     {
230         if( !p_sys->b_kfir )
231         {
232             /* Find if some data is available. This won't work under Windows. */
233             do
234             {
235                 struct pollfd ufd;
236
237                 if( p_access->b_die )
238                     return 0;
239
240                 memset (&ufd, 0, sizeof (ufd));
241                 ufd.fd = fd;
242                 ufd.events = POLLIN;
243
244                 i_ret = poll (&ufd, 1, 500);
245             }
246             while (i_ret <= 0);
247
248             i_ret = read (fd, p_buffer, i_len);
249         }
250         else
251         {
252             /* b_kfir ; work around a buggy poll() driver implementation */
253             while (((i_ret = read (fd, p_buffer, i_len)) == 0)
254                 && !p_access->b_die)
255             {
256                 msleep( INPUT_ERROR_SLEEP );
257             }
258         }
259     }
260     else
261 #endif /* WIN32 || UNDER_CE */
262         /* b_pace_control || WIN32 */
263         i_ret = read( fd, p_buffer, i_len );
264
265     if( i_ret < 0 )
266     {
267         switch (errno)
268         {
269             case EINTR:
270             case EAGAIN:
271                 break;
272
273             default:
274                 msg_Err (p_access, "read failed (%m)");
275                 intf_UserFatal (p_access, false, _("File reading failed"),
276                                 _("VLC could not read the file."));
277         }
278
279         /* Delay a bit to avoid consuming all the CPU. This is particularly
280          * useful when reading from an unconnected FIFO. */
281         msleep( INPUT_ERROR_SLEEP );
282     }
283
284     p_sys->i_nb_reads++;
285
286 #ifdef HAVE_SYS_STAT_H
287     if( p_access->info.i_size != 0 &&
288         (p_sys->i_nb_reads % INPUT_FSTAT_NB_READS) == 0 )
289     {
290         struct stat st;
291
292         if ((fstat (fd, &st) == 0)
293          && (p_access->info.i_size != st.st_size))
294         {
295             p_access->info.i_size = st.st_size;
296             p_access->info.i_update |= INPUT_UPDATE_SIZE;
297         }
298     }
299 #endif
300
301     if( i_ret > 0 )
302         p_access->info.i_pos += i_ret;
303     else if( i_ret == 0 )
304         p_access->info.b_eof = true;
305
306     return i_ret;
307 }
308
309
310 /*****************************************************************************
311  * Seek: seek to a specific location in a file
312  *****************************************************************************/
313 static int Seek (access_t *p_access, int64_t i_pos)
314 {
315     p_access->info.i_pos = i_pos;
316     p_access->info.b_eof = false;
317
318     lseek (p_access->p_sys->fd, i_pos, SEEK_SET);
319     return VLC_SUCCESS;
320 }
321
322 /*****************************************************************************
323  * Control:
324  *****************************************************************************/
325 static int Control( access_t *p_access, int i_query, va_list args )
326 {
327     access_sys_t *p_sys = p_access->p_sys;
328     bool   *pb_bool;
329     int          *pi_int;
330     int64_t      *pi_64;
331
332     switch( i_query )
333     {
334         /* */
335         case ACCESS_CAN_SEEK:
336         case ACCESS_CAN_FASTSEEK:
337             pb_bool = (bool*)va_arg( args, bool* );
338             *pb_bool = p_sys->b_seekable;
339             break;
340
341         case ACCESS_CAN_PAUSE:
342         case ACCESS_CAN_CONTROL_PACE:
343             pb_bool = (bool*)va_arg( args, bool* );
344             *pb_bool = p_sys->b_pace_control;
345             break;
346
347         /* */
348         case ACCESS_GET_MTU:
349             pi_int = (int*)va_arg( args, int * );
350             *pi_int = 0;
351             break;
352
353         case ACCESS_GET_PTS_DELAY:
354             pi_64 = (int64_t*)va_arg( args, int64_t * );
355             *pi_64 = var_GetInteger( p_access, "file-caching" ) * INT64_C(1000);
356             break;
357
358         /* */
359         case ACCESS_SET_PAUSE_STATE:
360             /* Nothing to do */
361             break;
362
363         case ACCESS_GET_TITLE_INFO:
364         case ACCESS_SET_TITLE:
365         case ACCESS_SET_SEEKPOINT:
366         case ACCESS_SET_PRIVATE_ID_STATE:
367         case ACCESS_GET_META:
368         case ACCESS_GET_PRIVATE_ID_STATE:
369         case ACCESS_GET_CONTENT_TYPE:
370             return VLC_EGENERIC;
371
372         default:
373             msg_Warn( p_access, "unimplemented query %d in control", i_query );
374             return VLC_EGENERIC;
375
376     }
377     return VLC_SUCCESS;
378 }
379
380 /*****************************************************************************
381  * open_file: Opens a specific file
382  *****************************************************************************/
383 static int open_file (access_t *p_access, const char *path)
384 {
385 #if defined(WIN32)
386     if (!strcasecmp (p_access->psz_access, "file")
387       && ('/' == path[0]) && isalpha (path[1])
388       && (':' == path[2]) && ('/' == path[3]))
389         /* Explorer can open path such as file:/C:/ or file:///C:/
390          * hence remove leading / if found */
391         path++;
392 #endif
393
394 #ifdef UNDER_CE
395     p_sys->fd = utf8_fopen( path, "rb" );
396     if ( !p_sys->fd )
397     {
398         msg_Err( p_access, "cannot open file %s", path );
399         intf_UserFatal( p_access, false, _("File reading failed"),
400                         _("VLC could not open the file \"%s\"."), path );
401         return VLC_EGENERIC;
402     }
403
404     fseek( p_sys->fd, 0, SEEK_END );
405     p_access->info.i_size = ftell( p_sys->fd );
406     p_access->info.i_update |= INPUT_UPDATE_SIZE;
407     fseek( p_sys->fd, 0, SEEK_SET );
408 #else
409     int fd = utf8_open (path, O_RDONLY | O_NONBLOCK /* O_LARGEFILE*/, 0666);
410     if (fd == -1)
411     {
412         msg_Err (p_access, "cannot open file %s (%m)", path);
413         intf_UserFatal (p_access, false, _("File reading failed"),
414                         _("VLC could not open the file \"%s\"."), path);
415         return -1;
416     }
417
418 # if defined(HAVE_FCNTL_H) && defined(F_FDAHEAD) && defined(F_NOCACHE)
419     /* We'd rather use any available memory for reading ahead
420      * than for caching what we've already seen/heard */
421     fcntl (fd, F_RDAHEAD, 1);
422     fcntl (fd, F_NOCACHE, 1);
423 # endif
424 #endif
425
426     return fd;
427 }