]> git.sesse.net Git - vlc/blob - modules/access/mmap.c
mmap: Don't use mmap by default on OS X.
[vlc] / modules / access / mmap.c
1 /*****************************************************************************
2  * mmap.c: memory-mapped file input
3  *****************************************************************************
4  * Copyright © 2007-2008 Rémi Denis-Courmont
5  * $Id$
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
20  *****************************************************************************/
21
22 #ifdef HAVE_CONFIG_H
23 # include <config.h>
24 #endif
25
26 #include <vlc_common.h>
27 #include <vlc_plugin.h>
28 #include <vlc_access.h>
29 #include <vlc_input.h>
30 #include <vlc_charset.h>
31 #include <vlc_interface.h>
32
33 #include <assert.h>
34
35 #include <errno.h>
36 #include <sys/types.h>
37 #include <unistd.h>
38 #include <fcntl.h>
39 #include <sys/stat.h>
40 #include <sys/mman.h>
41
42 #define FILE_MMAP_TEXT N_("Use file memory mapping")
43 #define FILE_MMAP_LONGTEXT N_( \
44     "Try to use memory mapping to read files and block devices." )
45
46 #ifndef NDEBUG
47 /*# define MMAP_DEBUG 1*/
48 #endif
49
50 static int Open (vlc_object_t *);
51 static void Close (vlc_object_t *);
52
53 vlc_module_begin();
54     set_shortname (N_("MMap"));
55     set_description (N_("Memory-mapped file input"));
56     set_category (CAT_INPUT);
57     set_subcategory (SUBCAT_INPUT_ACCESS);
58     set_capability ("access", 52);
59     add_shortcut ("file");
60     set_callbacks (Open, Close);
61 #ifdef __APPLE__
62     add_bool ("file-mmap", false, NULL,
63 #else
64     add_bool ("file-mmap", true, NULL,
65 #endif
66               FILE_MMAP_TEXT, FILE_MMAP_LONGTEXT, true);
67 vlc_module_end();
68
69 static block_t *Block (access_t *);
70 static int Seek (access_t *, int64_t);
71 static int Control (access_t *, int, va_list);
72
73 struct access_sys_t
74 {
75     size_t page_size;
76     size_t mtu;
77     int    fd;
78 };
79
80 #define MMAP_SIZE (1 << 20)
81
82 static int Open (vlc_object_t *p_this)
83 {
84     access_t *p_access = (access_t *)p_this;
85     access_sys_t *p_sys;
86     const char *path = p_access->psz_path;
87     int fd;
88
89     if (!var_CreateGetBool (p_this, "file-mmap"))
90         return VLC_EGENERIC; /* disabled */
91
92     STANDARD_BLOCK_ACCESS_INIT;
93
94     if (!strcmp (p_access->psz_path, "-"))
95         fd = dup (0);
96     else
97     {
98         msg_Dbg (p_access, "opening file %s", path);
99         fd = utf8_open (path, O_RDONLY | O_NOCTTY, 0666);
100     }
101
102     if (fd == -1)
103     {
104         msg_Warn (p_access, "cannot open %s: %m", path);
105         goto error;
106     }
107
108     /* mmap() is only safe for regular and block special files.
109      * For other types, it may be some idiosyncrasic interface (e.g. packet
110      * sockets are a good example), if it works at all. */
111     struct stat st;
112
113     if (fstat (fd, &st))
114     {
115         msg_Err (p_access, "cannot stat %s: %m", path);
116         goto error;
117     }
118
119     if (!S_ISREG (st.st_mode) && !S_ISBLK (st.st_mode))
120     {
121         msg_Dbg (p_access, "skipping non regular file %s", path);
122         goto error;
123     }
124
125 # if defined(HAVE_FCNTL_H) && defined(F_FDAHEAD) && defined(F_NOCACHE)
126     /* We'd rather use any available memory for reading ahead
127      * than for caching what we've already mmap'ed */
128     fcntl (fd, F_RDAHEAD, 1);
129     fcntl (fd, F_NOCACHE, 1);
130 # endif
131
132     /* Autodetect mmap() support */
133     if (st.st_size > 0)
134     {
135         void *addr = mmap (NULL, 1, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0);
136         if (addr != MAP_FAILED)
137             munmap (addr, 1);
138         else
139             goto error;
140     }
141
142     p_sys->page_size = sysconf (_SC_PAGE_SIZE);
143     p_sys->mtu = MMAP_SIZE;
144     if (p_sys->mtu < p_sys->page_size)
145         p_sys->mtu = p_sys->page_size;
146     p_sys->fd = fd;
147
148     p_access->info.i_size = st.st_size;
149 #ifdef HAVE_POSIX_FADVISE    
150     posix_fadvise (fd, 0, 0, POSIX_FADV_SEQUENTIAL);
151 #endif 
152
153     return VLC_SUCCESS;
154
155 error:
156     if (fd != -1)
157         close (fd);
158     free (p_sys);
159     return VLC_EGENERIC;
160 }
161
162
163 static void Close (vlc_object_t * p_this)
164 {
165     access_t *p_access = (access_t *)p_this;
166     access_sys_t *p_sys = p_access->p_sys;
167
168     close (p_sys->fd); /* don't care about error when only reading */
169     free (p_sys);
170 }
171
172 static block_t *Block (access_t *p_access)
173 {
174     access_sys_t *p_sys = p_access->p_sys;
175
176     /* Check if file size changed... */
177     struct stat st;
178
179     if ((fstat (p_sys->fd, &st) == 0)
180      && (st.st_size != p_access->info.i_size))
181     {
182         p_access->info.i_size = st.st_size;
183         p_access->info.i_update |= INPUT_UPDATE_SIZE;
184     }
185
186     if ((uint64_t)p_access->info.i_pos >= (uint64_t)p_access->info.i_size)
187     {
188         /* We are at end of file */
189         p_access->info.b_eof = true;
190         msg_Dbg (p_access, "at end of memory mapped file");
191         return NULL;
192     }
193
194 #ifdef MMAP_DEBUG
195     int64_t dbgpos = lseek (p_sys->fd, 0, SEEK_CUR);
196     if (dbgpos != p_access->info.i_pos)
197         msg_Err (p_access, "position: 0x%08llx instead of 0x%08llx",
198                  p_access->info.i_pos, dbgpos);
199 #endif
200
201     const uintptr_t page_mask = p_sys->page_size - 1;
202     /* Start the mapping on a page boundary: */
203     off_t  outer_offset = p_access->info.i_pos & ~page_mask;
204     /* Skip useless bytes at the beginning of the first page: */
205     size_t inner_offset = p_access->info.i_pos & page_mask;
206     /* Map no more bytes than remain: */
207     size_t length = p_sys->mtu;
208     if (outer_offset + length > p_access->info.i_size)
209         length = p_access->info.i_size - outer_offset;
210
211     assert (outer_offset <= p_access->info.i_pos);          /* and */
212     assert (p_access->info.i_pos < p_access->info.i_size); /* imply */
213     assert (outer_offset < p_access->info.i_size);         /* imply */
214     assert (length > 0);
215
216     /* NOTE: We use PROT_WRITE and MAP_PRIVATE so that the block can be
217      * modified down the chain, without messing up with the underlying
218      * original file. This does NOT need open write permission. */
219     void *addr = mmap (NULL, length, PROT_READ|PROT_WRITE, MAP_PRIVATE,
220                        p_sys->fd, outer_offset);
221     if (addr == MAP_FAILED)
222     {
223         msg_Err (p_access, "memory mapping failed (%m)");
224         intf_UserFatal (p_access, false, _("File reading failed"),
225                         _("VLC could not read the file."));
226         goto fatal;
227     }
228 #ifdef HAVE_POSIX_MADVISE    
229     posix_madvise (addr, length, POSIX_MADV_SEQUENTIAL);
230 #endif
231
232     block_t *block = block_mmap_Alloc (addr, length);
233     if (block == NULL)
234         goto fatal;
235
236     block->p_buffer += inner_offset;
237     block->i_buffer -= inner_offset;
238
239 #ifdef MMAP_DEBUG
240     msg_Dbg (p_access, "mapped 0x%lx bytes at %p from offset 0x%lx",
241              (unsigned long)length, addr, (unsigned long)outer_offset);
242
243     /* Compare normal I/O with memory mapping */
244     char *buf = malloc (block->i_buffer);
245     ssize_t i_read = read (p_sys->fd, buf, block->i_buffer);
246
247     if (i_read != (ssize_t)block->i_buffer)
248         msg_Err (p_access, "read %u instead of %u bytes", (unsigned)i_read,
249                  (unsigned)block->i_buffer);
250     if (memcmp (buf, block->p_buffer, block->i_buffer))
251         msg_Err (p_access, "inconsistent data buffer");
252     free (buf);
253 #endif
254
255     p_access->info.i_pos = outer_offset + length;
256     return block;
257
258 fatal:
259     p_access->info.b_eof = true;
260     return NULL;
261 }
262
263
264 static int Seek (access_t *p_access, int64_t i_pos)
265 {
266 #ifdef MMAP_DEBUG
267     lseek (p_access->p_sys->fd, i_pos, SEEK_SET);
268 #endif
269
270     p_access->info.i_pos = i_pos;
271     p_access->info.b_eof = false;
272     return VLC_SUCCESS;
273 }
274
275
276 static int Control (access_t *p_access, int query, va_list args)
277 {
278     access_sys_t *p_sys = p_access->p_sys;
279
280     switch (query)
281     {
282         case ACCESS_CAN_SEEK:
283         case ACCESS_CAN_FASTSEEK:
284         case ACCESS_CAN_PAUSE:
285         case ACCESS_CAN_CONTROL_PACE:
286             *((bool *)va_arg (args, bool *)) = true;
287             return VLC_SUCCESS;
288
289         case ACCESS_GET_MTU:
290             *((int *)va_arg (args, int *)) = p_sys->mtu;
291             return VLC_SUCCESS;
292
293         case ACCESS_GET_PTS_DELAY:
294         {
295             int delay_ms = var_CreateGetInteger (p_access, "file-caching");
296             *((int64_t *)va_arg (args, int64_t *)) = delay_ms * INT64_C (1000);
297             return VLC_SUCCESS;
298         }
299
300         case ACCESS_GET_TITLE_INFO:
301         case ACCESS_GET_META:
302             break;
303
304         case ACCESS_SET_PAUSE_STATE:
305             return VLC_SUCCESS;
306
307         case ACCESS_SET_TITLE:
308         case ACCESS_SET_SEEKPOINT:
309         case ACCESS_SET_PRIVATE_ID_STATE:
310         case ACCESS_SET_PRIVATE_ID_CA:
311         case ACCESS_GET_PRIVATE_ID_STATE:
312         case ACCESS_GET_CONTENT_TYPE:
313             break;
314
315         default:
316             msg_Warn (p_access, "unimplemented query %d in control", query);
317     }
318
319     return VLC_EGENERIC;
320 }