]> git.sesse.net Git - vlc/blob - modules/stream_filter/decomp.c
6ec32da0564c1640c341c77a33531c6423e78ba6
[vlc] / modules / stream_filter / decomp.c
1 /*****************************************************************************
2  * decomp.c : Decompression module for vlc
3  *****************************************************************************
4  * Copyright © 2008-2009 Rémi Denis-Courmont
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU Lesser General Public License as published by
8  * the Free Software Foundation; either version 2.1 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19  *****************************************************************************/
20
21 #ifdef HAVE_CONFIG_H
22 # include "config.h"
23 #endif
24
25 #include <vlc_common.h>
26 #include <vlc_plugin.h>
27 #include <vlc_stream.h>
28 #include <vlc_network.h>
29 #include <assert.h>
30 #include <unistd.h>
31 #include <errno.h>
32 #ifndef _POSIX_SPAWN
33 # define _POSIX_SPAWN (-1)
34 #endif
35 #include <fcntl.h>
36 #if (_POSIX_SPAWN >= 0)
37 # include <spawn.h>
38 #endif
39 #include <sys/wait.h>
40 #include <sys/ioctl.h>
41 #if defined (__linux__) && defined (HAVE_VMSPLICE)
42 # include <sys/uio.h>
43 # include <sys/mman.h>
44 #else
45 # undef HAVE_VMSPLICE
46 #endif
47
48 static int  OpenGzip (vlc_object_t *);
49 static int  OpenBzip2 (vlc_object_t *);
50 static int  OpenXZ (vlc_object_t *);
51 static void Close (vlc_object_t *);
52
53 vlc_module_begin ()
54     set_description (N_("Decompression"))
55     set_category (CAT_INPUT)
56     set_subcategory (SUBCAT_INPUT_STREAM_FILTER)
57     set_capability ("stream_filter", 20)
58     set_callbacks (OpenXZ, Close)
59
60     add_submodule ()
61     set_callbacks (OpenBzip2, Close)
62     /* TODO: access shortnames for stream_UrlNew() */
63
64     add_submodule ()
65     set_callbacks (OpenGzip, Close)
66 vlc_module_end ()
67
68 struct stream_sys_t
69 {
70     block_t      *peeked;
71     uint64_t     offset;
72     vlc_thread_t thread;
73     pid_t        pid;
74     int          write_fd, read_fd;
75 };
76
77 static void cloexec (int fd)
78 {
79     int flags = fcntl (fd, F_GETFD);
80     fcntl (fd, F_SETFD, FD_CLOEXEC | ((flags != -1) ? flags : 0));
81 }
82
83 extern char **environ;
84
85 static const size_t bufsize = 65536;
86 #ifdef HAVE_VMSPLICE
87 static void cleanup_mmap (void *addr)
88 {
89     munmap (addr, bufsize);
90 }
91 #endif
92
93 static void *Thread (void *data)
94 {
95     stream_t *stream = data;
96     stream_sys_t *p_sys = stream->p_sys;
97 #ifdef HAVE_VMSPLICE
98     ssize_t page_mask = sysconf (_SC_PAGE_SIZE) - 1;
99 #endif
100     int fd = p_sys->write_fd;
101     bool error = false;
102
103     do
104     {
105         ssize_t len;
106         int canc = vlc_savecancel ();
107 #ifdef HAVE_VMSPLICE
108         unsigned char *buf = mmap (NULL, bufsize, PROT_READ|PROT_WRITE,
109                                    MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
110         vlc_cleanup_push (cleanup_mmap, buf);
111 #else
112         unsigned char buf[bufsize];
113 #endif
114
115         len = stream_Read (stream->p_source, buf, bufsize);
116         vlc_restorecancel (canc);
117         error = len <= 0;
118
119         for (ssize_t i = 0, j; i < len; i += j)
120         {
121 #ifdef HAVE_VMSPLICE
122             if ((len - i) <= page_mask) /* incomplete last page */
123                 j = write (fd, buf + i, len - i);
124             else
125             {
126                 struct iovec iov = { buf + i, (len - i) & ~page_mask, };
127                 j = vmsplice (fd, &iov, 1, SPLICE_F_GIFT);
128             }
129             if (j == -1 && errno == ENOSYS) /* vmsplice() not supported */
130 #endif
131             j = write (fd, buf + i, len - i);
132             if (j <= 0)
133             {
134                 if (j == 0)
135                     errno = EPIPE;
136                 msg_Err (stream, "cannot write data (%m)");
137                 error = true;
138                 break;
139             }
140         }
141 #ifdef HAVE_VMSPLICE
142         vlc_cleanup_run (); /* munmap (buf, bufsize) */
143 #endif
144     }
145     while (!error);
146
147     msg_Dbg (stream, "compressed stream at EOF");
148     return NULL;
149 }
150
151
152 static int Peek (stream_t *, const uint8_t **, unsigned int);
153
154 #define MIN_BLOCK (1 << 10)
155 #define MAX_BLOCK (1 << 20)
156 /**
157  * Reads decompressed from the decompression program
158  * @return -1 for EAGAIN, 0 for EOF, byte count otherwise.
159  */
160 static int Read (stream_t *stream, void *buf, unsigned int buflen)
161 {
162     stream_sys_t *p_sys = stream->p_sys;
163     block_t *peeked;
164     ssize_t length;
165
166     if (buf == NULL) /* caller skips data, get big enough peek buffer */
167         buflen = Peek (stream, &(const uint8_t *){ NULL }, buflen);
168
169     if ((peeked = p_sys->peeked) != NULL)
170     {   /* dequeue peeked data */
171         length = (buflen > peeked->i_buffer) ? peeked->i_buffer : buflen;
172         if (buf != NULL)
173         {
174             memcpy (buf, peeked->p_buffer, length);
175             buf = ((char *)buf) + length;
176         }
177         buflen -= length;
178         peeked->p_buffer += length;
179         peeked->i_buffer -= length;
180         if (peeked->i_buffer == 0)
181         {
182             block_Release (peeked);
183             p_sys->peeked = NULL;
184         }
185         p_sys->offset += length;
186
187         if (buflen > 0)
188             length += Read (stream, ((char *)buf) + length, buflen - length);
189         return length;
190     }
191     assert ((buf != NULL) || (buflen == 0));
192
193     length = net_Read (stream, p_sys->read_fd, NULL, buf, buflen, false);
194     if (length < 0)
195         return 0;
196     p_sys->offset += length;
197     return length;
198 }
199
200 /**
201  *
202  */
203 static int Peek (stream_t *stream, const uint8_t **pbuf, unsigned int len)
204 {
205     stream_sys_t *p_sys = stream->p_sys;
206     block_t *peeked = p_sys->peeked;
207     size_t curlen = 0;
208     int fd = p_sys->read_fd;
209
210     if (peeked == NULL)
211         peeked = block_Alloc (len);
212     else if ((curlen = peeked->i_buffer) < len)
213         peeked = block_Realloc (peeked, 0, len);
214
215     if ((p_sys->peeked = peeked) == NULL)
216         return 0;
217
218     if (curlen < len)
219     {
220         ssize_t val = net_Read (stream, fd, NULL, peeked->p_buffer + curlen,
221                                 len - curlen, true);
222         if (val >= 0)
223         {
224             curlen += val;
225             peeked->i_buffer = curlen;
226         }
227     }
228     *pbuf = peeked->p_buffer;
229     return curlen;
230 }
231
232 /**
233  *
234  */
235 static int Control (stream_t *stream, int query, va_list args)
236 {
237     stream_sys_t *p_sys = stream->p_sys;
238
239     switch (query)
240     {
241         case STREAM_CAN_SEEK:
242         case STREAM_CAN_FASTSEEK:
243             *(va_arg (args, bool *)) = false;
244             break;
245         case STREAM_GET_POSITION:
246             *(va_arg (args, uint64_t *)) = p_sys->offset;
247             break;
248         case STREAM_GET_SIZE:
249             *(va_arg (args, uint64_t *)) = 0;
250             break;
251         default:
252             return VLC_EGENERIC;
253     }
254     return VLC_SUCCESS;
255 }
256
257 /**
258  * Pipe data through an external executable.
259  * @param stream the stream filter object.
260  * @param path path to the executable.
261  */
262 static int Open (stream_t *stream, const char *path)
263 {
264     stream_sys_t *p_sys = stream->p_sys = malloc (sizeof (*p_sys));
265     if (p_sys == NULL)
266         return VLC_ENOMEM;
267
268     stream->pf_read = Read;
269     stream->pf_peek = Peek;
270     stream->pf_control = Control;
271     p_sys->peeked = NULL;
272     p_sys->offset = 0;
273     p_sys->pid = -1;
274
275     /* I am not a big fan of the pyramid style, but I cannot think of anything
276      * better here. There are too many failure cases. */
277     int ret = VLC_EGENERIC;
278     int comp[2];
279
280     /* We use two pipes rather than one stream socket pair, so that we can
281      * use vmsplice() on Linux. */
282     if (pipe (comp) == 0)
283     {
284         cloexec (comp[1]);
285         p_sys->write_fd = comp[1];
286
287         int uncomp[2];
288         if (pipe (uncomp) == 0)
289         {
290             cloexec (uncomp[0]);
291             p_sys->read_fd = uncomp[0];
292
293 #if (_POSIX_SPAWN >= 0)
294             posix_spawn_file_actions_t actions;
295             if (posix_spawn_file_actions_init (&actions) == 0)
296             {
297                 char *const argv[] = { (char *)path, NULL };
298
299                 if (!posix_spawn_file_actions_adddup2 (&actions, comp[0], 0)
300                  && !posix_spawn_file_actions_addclose (&actions, comp[0])
301                  && !posix_spawn_file_actions_adddup2 (&actions, uncomp[1], 1)
302                  && !posix_spawn_file_actions_addclose (&actions, uncomp[1])
303                  && !posix_spawnp (&p_sys->pid, path, &actions, NULL, argv,
304                                    environ))
305                 {
306                     if (vlc_clone (&p_sys->thread, Thread, stream,
307                                    VLC_THREAD_PRIORITY_INPUT) == 0)
308                         ret = VLC_SUCCESS;
309                 }
310                 else
311                 {
312                     msg_Err (stream, "Cannot execute %s", path);
313                     p_sys->pid = -1;
314                 }
315                 posix_spawn_file_actions_destroy (&actions);
316             }
317 #else /* _POSIX_SPAWN */
318             switch (p_sys->pid = fork ())
319             {
320                 case -1:
321                     msg_Err (stream, "Cannot fork (%m)");
322                     break;
323                 case 0:
324                     dup2 (comp[0], 0);
325                     close (comp[0]);
326                     dup2 (uncomp[1], 1);
327                     close (uncomp[1]);
328                     execlp (path, path, (char *)NULL);
329                     exit (1); /* if we get, execlp() failed! */
330                 default:
331                     if (vlc_clone (&p_sys->thread, Thread, stream,
332                                    VLC_THREAD_PRIORITY_INPUT) == 0)
333                         ret = VLC_SUCCESS;
334             }
335 #endif /* _POSIX_SPAWN < 0 */
336             close (uncomp[1]);
337             if (ret != VLC_SUCCESS)
338                 close (uncomp[0]);
339         }
340         close (comp[0]);
341         if (ret != VLC_SUCCESS)
342         {
343             close (comp[1]);
344             if (p_sys->pid != -1)
345                 while (waitpid (p_sys->pid, &(int){ 0 }, 0) == -1);
346         }
347     }
348     return ret;
349 }
350
351
352 /**
353  * Releases allocate resources.
354  */
355 static void Close (vlc_object_t *obj)
356 {
357     stream_t *stream = (stream_t *)obj;
358     stream_sys_t *p_sys = stream->p_sys;
359     int status;
360
361     vlc_cancel (p_sys->thread);
362     close (p_sys->read_fd);
363     vlc_join (p_sys->thread, NULL);
364     close (p_sys->write_fd);
365
366     msg_Dbg (obj, "waiting for PID %u", (unsigned)p_sys->pid);
367     while (waitpid (p_sys->pid, &status, 0) == -1);
368     msg_Dbg (obj, "exit status %d", status);
369
370     if (p_sys->peeked)
371         block_Release (p_sys->peeked);
372     free (p_sys);
373 }
374
375
376 /**
377  * Detects gzip file format
378  */
379 static int OpenGzip (vlc_object_t *obj)
380 {
381     stream_t      *stream = (stream_t *)obj;
382     const uint8_t *peek;
383
384     if (stream_Peek (stream->p_source, &peek, 3) < 3)
385         return VLC_EGENERIC;
386
387     if (memcmp (peek, "\x1f\x8b\x08", 3))
388         return VLC_EGENERIC;
389
390     msg_Dbg (obj, "detected gzip compressed stream");
391     return Open (stream, "zcat");
392 }
393
394
395 /**
396  * Detects bzip2 file format
397  */
398 static int OpenBzip2 (vlc_object_t *obj)
399 {
400     stream_t      *stream = (stream_t *)obj;
401     const uint8_t *peek;
402
403     /* (Try to) parse the bzip2 header */
404     if (stream_Peek (stream->p_source, &peek, 10) < 10)
405         return VLC_EGENERIC;
406
407     if (memcmp (peek, "BZh", 3) || (peek[3] < '1') || (peek[3] > '9')
408      || memcmp (peek + 4, "\x31\x41\x59\x26\x53\x59", 6))
409         return VLC_EGENERIC;
410
411     msg_Dbg (obj, "detected bzip2 compressed stream");
412     return Open (stream, "bzcat");
413 }
414
415 /**
416  * Detects xz file format
417  */
418 static int OpenXZ (vlc_object_t *obj)
419 {
420     stream_t      *stream = (stream_t *)obj;
421     const uint8_t *peek;
422
423     /* (Try to) parse the xz stream header */
424     if (stream_Peek (stream->p_source, &peek, 8) < 8)
425         return VLC_EGENERIC;
426
427     if (memcmp (peek, "\xfd\x37\x7a\x58\x5a", 6))
428         return VLC_EGENERIC;
429
430     msg_Dbg (obj, "detected xz compressed stream");
431     return Open (stream, "xzcat");
432 }