]> git.sesse.net Git - vlc/blob - modules/access/dvd/access.c
* ./modules/demux/mpeg/system.c: added a helper plugin for MPEG-related
[vlc] / modules / access / dvd / access.c
1 /* access.c: DVD access plugin.
2  *****************************************************************************
3  * This plugins should handle all the known specificities of the DVD format,
4  * especially the 2048 bytes logical block size.
5  * It depends on:
6  *  -libdvdcss for access and unscrambling
7  *  -ifo.* for ifo parsing and analyse
8  *  -udf.* to find files
9  *****************************************************************************
10  * Copyright (C) 1998-2001 VideoLAN
11  * $Id: access.c,v 1.2 2002/08/07 00:29:36 sam Exp $
12  *
13  * Author: Stéphane Borel <stef@via.ecp.fr>
14  *
15  * This program is free software; you can redistribute it and/or modify
16  * it under the terms of the GNU General Public License as published by
17  * the Free Software Foundation; either version 2 of the License, or
18  * (at your option) any later version.
19  * 
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, write to the Free Software
27  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
28  *****************************************************************************/
29
30 /*****************************************************************************
31  * Preamble
32  *****************************************************************************/
33 #include <stdio.h>
34 #include <stdlib.h>
35 #include <string.h>
36
37 #include <vlc/vlc.h>
38 #include <vlc/input.h>
39
40 #include "../../demux/mpeg/system.h"
41
42 #ifdef HAVE_UNISTD_H
43 #   include <unistd.h>
44 #endif
45
46 #include <fcntl.h>
47 #include <sys/types.h>
48 #include <sys/stat.h>
49 #include <string.h>
50 #include <errno.h>
51
52 #ifdef STRNCASECMP_IN_STRINGS_H
53 #   include <strings.h>
54 #endif
55
56 #ifdef GOD_DAMN_DMCA
57 #   include "dvdcss.h"
58 #else
59 #   include <dvdcss/dvdcss.h>
60 #endif
61
62 #include "dvd.h"
63 #include "es.h"
64 #include "seek.h"
65 #include "ifo.h"
66 #include "summary.h"
67 #include "iso_lang.h"
68
69 /*****************************************************************************
70  * Local prototypes
71  *****************************************************************************/
72
73 /* called from outside */
74 static int  DVDSetArea      ( input_thread_t *, input_area_t * );
75 static int  DVDSetProgram   ( input_thread_t *, pgrm_descriptor_t * );
76 static ssize_t DVDRead      ( input_thread_t *, byte_t *, size_t );
77 static void DVDSeek         ( input_thread_t *, off_t );
78
79 static char * DVDParse( input_thread_t * );
80
81 /*
82  * Data access functions
83  */
84
85 #define DVDTell   LB2OFF( p_dvd->i_vts_start + p_dvd->i_vts_lb ) \
86                   - p_input->stream.p_selected_area->i_start
87
88 /*****************************************************************************
89  * DVDOpen: open dvd
90  *****************************************************************************/
91 int E_(DVDOpen) ( vlc_object_t *p_this )
92 {
93     input_thread_t *     p_input = (input_thread_t *)p_this;
94     char *               psz_device;
95     thread_dvd_data_t *  p_dvd;
96     input_area_t *       p_area;
97     int                  i;
98     char *               psz_dvdcss_env;
99
100     p_dvd = malloc( sizeof(thread_dvd_data_t) );
101     if( p_dvd == NULL )
102     {
103         msg_Err( p_input, "out of memory" );
104         return -1;
105     }
106     p_input->p_access_data = (void *)p_dvd;
107     
108     p_input->pf_read = DVDRead;
109     p_input->pf_seek = DVDSeek;
110     p_input->pf_set_area = DVDSetArea;
111     p_input->pf_set_program = DVDSetProgram;
112
113     /* Parse command line */
114     if( !( psz_device = DVDParse( p_input ) ) )
115     {
116         free( p_dvd );
117         return -1;
118     }
119     
120     /* 
121      * set up input
122      */ 
123     p_input->i_mtu = 0;
124
125     /* override environment variable DVDCSS_METHOD with config option
126      * (FIXME: this creates a small memory leak) */
127     psz_dvdcss_env = config_GetPsz( p_input, "dvd-css-method" );
128     if( psz_dvdcss_env && *psz_dvdcss_env )
129     {
130         char *psz_env;
131
132         psz_env = malloc( strlen("DVDCSS_METHOD=") +
133                           strlen( psz_dvdcss_env ) + 1 );
134
135         if( !psz_env )
136         {
137             free( p_dvd );
138             return -1;
139         }
140
141         sprintf( psz_env, "%s%s", "DVDCSS_METHOD=", psz_dvdcss_env );
142
143         putenv( psz_env );
144     }
145     if( psz_dvdcss_env ) free( psz_dvdcss_env );
146
147     /*
148      *  get plugin ready
149      */ 
150     p_dvd->dvdhandle = dvdcss_open( psz_device );
151     
152     /* free allocated string */
153     free( psz_device );
154
155     if( p_dvd->dvdhandle == NULL )
156     {
157         msg_Err( p_input, "dvdcss cannot open device" );
158         free( p_dvd );
159         return -1;
160     }
161
162     if( dvdcss_seek( p_dvd->dvdhandle, 0, DVDCSS_NOFLAGS ) < 0 )
163     {
164         msg_Err( p_input, "%s", dvdcss_error( p_dvd->dvdhandle ) );
165         dvdcss_close( p_dvd->dvdhandle );
166         free( p_dvd );
167         return -1;
168     }
169
170     /* Ifo allocation & initialisation */
171     if( IfoCreate( p_dvd ) < 0 )
172     {
173         msg_Err( p_input, "allcation error in ifo" );
174         dvdcss_close( p_dvd->dvdhandle );
175         free( p_dvd );
176         return -1;
177     }
178
179     if( IfoInit( p_dvd->p_ifo ) < 0 )
180     {
181         msg_Err( p_input, "fatal failure in ifo" );
182         IfoDestroy( p_dvd->p_ifo );
183         dvdcss_close( p_dvd->dvdhandle );
184         free( p_dvd );
185         return -1;
186     }
187
188     /* Set stream and area data */
189     vlc_mutex_lock( &p_input->stream.stream_lock );
190
191     p_input->stream.i_method = INPUT_METHOD_DVD;
192     p_input->stream.b_pace_control = 1;
193     p_input->stream.b_seekable = 1;
194     p_input->stream.p_selected_area->i_size = 0;
195     p_input->stream.p_selected_area->i_tell = 0;
196
197     /* Initialize ES structures */
198     input_InitStream( p_input, sizeof( stream_ps_data_t ) );
199
200 #define title_inf p_dvd->p_ifo->vmg.title_inf
201     msg_Dbg( p_input, "number of titles: %d", title_inf.i_title_nb );
202
203 #define area p_input->stream.pp_areas
204     /* We start from 1 here since the default area 0
205      * is reserved for video_ts.vob */
206     for( i = 1 ; i <= title_inf.i_title_nb ; i++ )
207     {
208         input_AddArea( p_input );
209
210         /* Titles are Program Chains */
211         area[i]->i_id = i;
212
213         /* Absolute start offset and size 
214          * We can only set that with vts ifo, so we do it during the
215          * first call to DVDSetArea */
216         area[i]->i_start = 0;
217         area[i]->i_size = 0;
218
219         /* Number of chapters */
220         area[i]->i_part_nb = title_inf.p_attr[i-1].i_chapter_nb;
221         area[i]->i_part = 1;
222
223         /* Offset to vts_i_0.ifo */
224         area[i]->i_plugin_data = p_dvd->p_ifo->i_start +
225                        title_inf.p_attr[i-1].i_start_sector;
226     }   
227 #undef area
228     
229     p_dvd->i_title = p_dvd->i_title <= title_inf.i_title_nb ?
230                      p_dvd->i_title : 1;
231 #undef title_inf
232
233     p_area = p_input->stream.pp_areas[p_dvd->i_title];
234     
235     p_area->i_part = p_dvd->i_chapter <= p_area->i_part_nb ?
236                      p_dvd->i_chapter : 1;
237     p_dvd->i_chapter = 1;
238     
239     p_dvd->b_new_chapter = 0;
240     p_dvd->i_audio_nb = 0;
241     p_dvd->i_spu_nb = 0;
242     
243     /* set title, chapter, audio and subpic */
244     if( DVDSetArea( p_input, p_area ) < 0 )
245     {
246         vlc_mutex_unlock( &p_input->stream.stream_lock );
247         IfoDestroy( p_dvd->p_ifo );
248         dvdcss_close( p_dvd->dvdhandle );
249         free( p_dvd );
250         return -1;
251     }
252
253     vlc_mutex_unlock( &p_input->stream.stream_lock );
254
255     p_input->psz_demux = "dvdold";
256
257     return 0;
258 }
259
260 /*****************************************************************************
261  * DVDClose: close dvd
262  *****************************************************************************/
263 void E_(DVDClose) ( vlc_object_t *p_this )
264 {
265     input_thread_t * p_input = (input_thread_t *)p_this;
266     thread_dvd_data_t *p_dvd = (thread_dvd_data_t*)p_input->p_access_data;
267
268     IfoDestroy( p_dvd->p_ifo );
269     dvdcss_close( p_dvd->dvdhandle );
270     free( p_dvd );
271 }
272
273 /*****************************************************************************
274  * DVDSetProgram: used to change angle
275  *****************************************************************************/
276 static int DVDSetProgram( input_thread_t    * p_input,
277                           pgrm_descriptor_t * p_program ) 
278 {
279     if( p_input->stream.p_selected_program != p_program )
280     {
281         thread_dvd_data_t *  p_dvd;
282         int                  i_angle;
283     
284         p_dvd   = (thread_dvd_data_t*)(p_input->p_access_data);
285         i_angle = p_program->i_number;
286
287         /* DVD is actually mono-program: we only need the current angle
288          * number, so copy the data between programs */
289         memcpy( p_program,
290                 p_input->stream.p_selected_program,
291                 sizeof(pgrm_descriptor_t) );
292         p_program->i_number                = i_angle;
293         p_input->stream.p_selected_program = p_program;
294
295 #define title \
296     p_dvd->p_ifo->vts.title_unit.p_title[p_dvd->i_title_id-1].title
297         if( title.p_cell_play[p_dvd->i_prg_cell].i_category & 0xf000 )
298         {
299             if( ( p_program->i_number - p_dvd->i_angle ) < 0 )
300             {
301                 /* we have to go backwards */
302                 p_dvd->i_map_cell = 0;
303             }
304             p_dvd->i_prg_cell += ( p_program->i_number - p_dvd->i_angle );
305             p_dvd->i_map_cell =  CellPrg2Map( p_dvd );
306             p_dvd->i_map_cell += p_dvd->i_angle_cell;
307             p_dvd->i_vts_lb   =  CellFirstSector( p_dvd );
308             p_dvd->i_last_lb  =  CellLastSector( p_dvd );
309             p_dvd->i_angle    =  p_program->i_number;
310         }
311         else
312         {
313             p_dvd->i_angle    =  p_program->i_number;
314         }
315 #undef title
316         msg_Dbg( p_input, "angle %d selected", p_dvd->i_angle );
317     }
318
319     return 0;
320 }
321
322 /*****************************************************************************
323  * DVDSetArea: initialize input data for title x, chapter y.
324  * It should be called for each user navigation request.
325  *****************************************************************************
326  * Take care that i_title starts from 0 (vmg) and i_chapter start from 1.
327  * Note that you have to take the lock before entering here.
328  *****************************************************************************/
329 #define vmg p_dvd->p_ifo->vmg
330 #define vts p_dvd->p_ifo->vts
331
332 static void DVDFlushStream( input_thread_t * p_input )
333 {
334     if( p_input->stream.pp_programs != NULL )
335     {
336         /* We don't use input_EndStream here since
337          * we keep area structures */
338         while( p_input->stream.i_es_number )
339         {
340             input_DelES( p_input, p_input->stream.pp_es[0] );
341         }
342         
343         while( p_input->stream.i_pgrm_number )
344         {
345             input_DelProgram( p_input, p_input->stream.pp_programs[0] );
346         }
347
348         if( p_input->stream.pp_selected_es )
349         {
350             free( p_input->stream.pp_selected_es );
351             p_input->stream.pp_selected_es = NULL;
352         }
353         p_input->stream.i_selected_es_number = 0;
354     }
355
356     return;
357 }
358
359 static int DVDReadAngle( input_thread_t * p_input )
360 {
361     thread_dvd_data_t * p_dvd;
362     int                 i_angle_nb;
363     int                 i;
364
365     p_dvd      = (thread_dvd_data_t*)(p_input->p_access_data);
366     i_angle_nb = vmg.title_inf.p_attr[p_dvd->i_title-1].i_angle_nb;
367     
368     input_AddProgram( p_input, 1, sizeof( stream_ps_data_t ) );
369     p_input->stream.p_selected_program = p_input->stream.pp_programs[0];
370
371     for( i = 1 ; i < i_angle_nb ; i++ )
372     {
373         input_AddProgram( p_input, i+1, 0 );
374     }
375
376     return i_angle_nb;
377 }
378
379 static int DVDSetArea( input_thread_t * p_input, input_area_t * p_area )
380 {
381     thread_dvd_data_t *  p_dvd;
382
383     p_dvd = (thread_dvd_data_t*)(p_input->p_access_data);
384
385     /* we can't use the interface slider until initilization is complete */
386     p_input->stream.b_seekable = 0;
387
388     if( p_area != p_input->stream.p_selected_area )
389     {
390         int     i_vts_title;
391         u32     i_first;
392         u32     i_last;
393
394         /* Reset the Chapter position of the old title */
395         p_input->stream.p_selected_area->i_part = 1;
396         p_input->stream.p_selected_area         = p_area;
397
398         /*
399          *  We have to load all title information
400          */
401
402         /* title number as it appears in the interface list */
403         p_dvd->i_title      = p_area->i_id;
404         p_dvd->i_chapter_nb = p_area->i_part_nb;
405
406         if( IfoTitleSet( p_dvd->p_ifo, p_dvd->i_title ) < 0 )
407         {
408             msg_Err( p_input, "fatal error in vts ifo" );
409             free( p_dvd );
410             return -1;
411         }
412
413         /* title position inside the selected vts */
414         i_vts_title       = vmg.title_inf.p_attr[p_dvd->i_title-1].i_title_num;
415         p_dvd->i_title_id =
416             vts.title_inf.p_title_start[i_vts_title-1].i_title_id;
417
418         msg_Dbg( p_input, "title %d vts_title %d pgc %d",
419                           p_dvd->i_title, i_vts_title, p_dvd->i_title_id );
420
421         /* title set offset XXX: convert to block values */
422         p_dvd->i_vts_start =
423             vts.i_pos + vts.manager_inf.i_title_vob_start_sector;
424
425         /* last cell */
426         p_dvd->i_prg_cell = -1 +
427             vts.title_unit.p_title[p_dvd->i_title_id-1].title.i_cell_nb;
428         p_dvd->i_map_cell = 0;
429         p_dvd->i_map_cell = CellPrg2Map( p_dvd );
430         i_last            = CellLastSector( p_dvd );
431
432         /* first cell */
433         p_dvd->i_prg_cell   = 0;
434         p_dvd->i_map_cell   = 0;
435         p_dvd->i_angle_cell = 0;
436         p_dvd->i_map_cell   = CellPrg2Map    ( p_dvd );
437         p_dvd->i_vts_lb     = CellFirstSector( p_dvd );
438         p_dvd->i_last_lb    = CellLastSector ( p_dvd );
439
440         /* Force libdvdcss to check its title key.
441          * It is only useful for title cracking method. Methods using the
442          * decrypted disc key are fast enough to check the key at each seek */
443         i_first = dvdcss_seek( p_dvd->dvdhandle,
444                                p_dvd->i_vts_start + p_dvd->i_vts_lb,
445                                DVDCSS_SEEK_KEY );
446         if( i_first < 0 )
447         {
448             msg_Err( p_input, "%s", dvdcss_error( p_dvd->dvdhandle ) );
449             return -1;
450         }
451
452         /* Area definition */
453         p_input->stream.p_selected_area->i_start = LB2OFF( i_first );
454         p_input->stream.p_selected_area->i_size  =
455                                         LB2OFF( i_last + 1 - p_dvd->i_vts_lb );
456
457         /* Destroy obsolete ES by reinitializing programs */
458         DVDFlushStream( p_input );
459         
460         /* Angle management: angles are handled through programs */
461         p_dvd->i_angle_nb = DVDReadAngle( p_input );
462         if( ( p_dvd->i_angle <= 0 ) || p_dvd->i_angle > p_dvd->i_angle_nb )
463         {
464             p_dvd->i_angle = 1;
465         }
466        
467         DVDSetProgram( p_input,
468                        p_input->stream.pp_programs[p_dvd->i_angle-1] ); 
469
470         msg_Dbg( p_input, "title first %i, last %i, size %i",
471                           i_first, i_last, i_last + 1 - p_dvd->i_vts_lb );
472         IfoPrintTitle( p_dvd );
473
474         /* No PSM to read in DVD mode, we already have all information */
475         p_input->stream.p_selected_program->b_is_ok = 1;
476
477         /* Find all ES in title with ifo data */
478         DVDReadVideo( p_input );
479         DVDReadAudio( p_input );
480         DVDReadSPU  ( p_input );
481    
482         if( p_input->p_demux )
483         {
484             DVDLaunchDecoders( p_input );
485         }
486
487     } /* i_title >= 0 */
488     else
489     {
490         p_area = p_input->stream.p_selected_area;
491     }
492
493     /* Chapter selection */
494     p_dvd->i_chapter = DVDSetChapter( p_dvd, p_area->i_part );
495     
496     p_input->stream.p_selected_area->i_tell = DVDTell;
497
498     /* warn interface that something has changed */
499     p_input->stream.b_seekable = 1;
500     p_input->stream.b_changed  = 1;
501
502     return 0;
503 }
504 #undef vts
505 #undef vmg
506
507 #define title \
508     p_dvd->p_ifo->vts.title_unit.p_title[p_dvd->i_title_id-1].title
509     
510 /*****************************************************************************
511  * DVDRead: reads data packets.
512  *****************************************************************************
513  * Returns -1 in case of error, 0 in case of EOF, otherwise the number of
514  * bytes.
515  *****************************************************************************/
516 static ssize_t DVDRead( input_thread_t * p_input,
517                         byte_t * p_buffer, size_t i_count )
518 {
519     thread_dvd_data_t *     p_dvd;
520     int                     i_read;
521     int                     i_blocks;
522     int                     i_block_once = 0;
523
524     p_dvd = (thread_dvd_data_t *)(p_input->p_access_data);
525
526     i_read = 0;
527     i_blocks = OFF2LB(i_count);
528
529     while( i_blocks )
530     {
531         i_block_once = LbMaxOnce( p_dvd );
532         if( i_block_once > i_blocks )
533         {
534             i_block_once = i_blocks;
535         }
536         else if( i_block_once <= 0 )
537         {
538             /* EOT */
539             break;
540         }
541
542         if( i_block_once != dvdcss_read( p_dvd->dvdhandle, p_buffer,
543                                          i_block_once, DVDCSS_READ_DECRYPT ) )
544         {
545             return -1;
546         }
547
548         i_blocks -= i_block_once;
549         i_read += i_block_once;
550         p_buffer += LB2OFF( i_block_once );
551
552         /* Update global position */
553         p_dvd->i_vts_lb += i_block_once;
554     }
555
556     vlc_mutex_lock( &p_input->stream.stream_lock );
557
558     p_input->stream.p_selected_area->i_tell += LB2OFF( i_read );
559     if( p_dvd->b_new_chapter )
560     {
561         p_input->stream.p_selected_area->i_part = p_dvd->i_chapter;
562         p_dvd->b_new_chapter                    = 0;
563     }
564
565     if( ( p_input->stream.p_selected_area->i_tell
566             >= p_input->stream.p_selected_area->i_size )
567        || ( i_block_once  <= 0 ) )
568     {
569         if( ( p_dvd->i_title + 1 ) >= p_input->stream.i_area_nb )
570         {
571             /* EOF */
572             vlc_mutex_unlock( &p_input->stream.stream_lock );
573             return 0;
574         }
575
576         /* EOT */
577         msg_Dbg( p_input, "new title" );
578         p_dvd->i_title++;
579         DVDSetArea( p_input, p_input->stream.pp_areas[p_dvd->i_title] );
580     }
581
582     vlc_mutex_unlock( &p_input->stream.stream_lock );
583
584     return LB2OFF( i_read );
585 }
586
587 /*****************************************************************************
588  * DVDSeek : Goes to a given position on the stream.
589  *****************************************************************************
590  * This one is used by the input and translate chronological position from
591  * input to logical position on the device.
592  * The lock should be taken before calling this function.
593  *****************************************************************************/
594 static void DVDSeek( input_thread_t * p_input, off_t i_off )
595 {
596     thread_dvd_data_t *     p_dvd;
597     
598     p_dvd = ( thread_dvd_data_t * )(p_input->p_access_data);
599
600     vlc_mutex_lock( &p_input->stream.stream_lock );
601     p_dvd->i_vts_lb = OFF2LB(i_off + p_input->stream.p_selected_area->i_start)
602                        - p_dvd->i_vts_start;
603     vlc_mutex_unlock( &p_input->stream.stream_lock );
604
605     p_dvd->i_prg_cell = Lb2CellPrg( p_dvd );
606     p_dvd->i_map_cell = Lb2CellMap( p_dvd );
607     
608     if( CellIsInterleaved( p_dvd ) )
609     {
610         /* if we're inside a multi-angle zone, we have to choose i_sector
611          * in the current angle ; we can't do it all the time since cells
612          * can be very wide out of such zones */
613         p_dvd->i_vts_lb = CellFirstSector( p_dvd );
614     }
615     
616     p_dvd->i_last_lb  = CellLastSector( p_dvd );
617     p_dvd->i_chapter  = CellPrg2Chapter( p_dvd );
618
619     if( dvdcss_seek( p_dvd->dvdhandle, p_dvd->i_vts_start + p_dvd->i_vts_lb,
620                      DVDCSS_SEEK_MPEG ) < 0 )
621     {
622         msg_Err( p_input, "%s", dvdcss_error( p_dvd->dvdhandle ) );
623         p_input->b_error = 1;
624         return;
625     }
626
627     vlc_mutex_lock( &p_input->stream.stream_lock );
628     p_input->stream.p_selected_area->i_part = p_dvd->i_chapter;
629     p_input->stream.p_selected_area->i_tell = DVDTell;
630     vlc_mutex_unlock( &p_input->stream.stream_lock );
631
632     msg_Dbg( p_input, "program cell: %d cell: %d chapter: %d tell %lld",
633              p_dvd->i_prg_cell, p_dvd->i_map_cell, p_dvd->i_chapter, DVDTell );
634
635     return;
636 }
637
638 /*****************************************************************************
639  * DVDParse: parse command line
640  *****************************************************************************/
641 static char * DVDParse( input_thread_t * p_input )
642 {
643     thread_dvd_data_t *  p_dvd;
644     struct stat          stat_info;
645     char *               psz_parser;
646     char *               psz_device;
647     char *               psz_raw;
648     char *               psz_next;
649     vlc_bool_t           b_options = 0;
650     int                  i_title = 1;
651     int                  i_chapter = 1;
652     int                  i_angle = 1;
653     int                  i;
654
655     p_dvd = (thread_dvd_data_t*)(p_input->p_access_data);
656
657 #ifdef WIN32
658     /* On Win32 we want the DVD access plugin to be explicitly requested,
659      * we end up with lots of problems otherwise */
660     if( !p_input->psz_access || !*p_input->psz_access ) return NULL;
661 #endif
662
663     psz_parser = psz_device = strdup( p_input->psz_name );
664     if( !psz_parser )
665     {
666         return NULL;
667     }
668
669     /* Parse input string :
670      * [device][@rawdevice][@[title][,[chapter][,angle]]] */
671     while( *psz_parser && *psz_parser != '@' )
672     {
673         psz_parser++;
674     }
675
676     if( *psz_parser == '@' )
677     {
678         /* Maybe found raw device or option list */
679         *psz_parser = '\0';
680         psz_raw = ++psz_parser;
681     }
682     else
683     {
684         psz_raw = "";
685     }
686
687     if( *psz_parser && !strtol( psz_parser, NULL, 10 ) )
688     {
689         /* what we've found is either a raw device or a partial option
690          * list e.g. @,29 or both a device and a list ; search end of string */
691         while( *psz_parser && *psz_parser != '@' )
692         {
693             psz_parser++;
694         }
695         
696         if( *psz_parser == '@' )
697         {
698             /* found end of raw device, and beginning of options */
699             *psz_parser = '\0';
700             ++psz_parser;
701             b_options = 1;
702         }
703         else
704         {
705             psz_parser = psz_raw + 1;
706             for( i=0 ; i<3 ; i++ )
707             {
708                 if( !*psz_parser )
709                 {
710                     /* we have only a raw device */
711                     break;
712                 }
713                 if( strtol( psz_parser, NULL, 10 ) )
714                 {
715                     /* we have only a partial list of options, no device */
716                     psz_parser = psz_raw;
717                     psz_raw = "";
718                     b_options = 1;
719                     break;
720                 }
721                 psz_parser++;
722             }
723         }
724     }
725     else
726     {
727         /* found beginning of options ; no raw device specified */
728         psz_raw = "";
729         b_options = 1;
730     }
731
732     if( b_options )
733     {
734         /* Found options */
735         i_title = (int)strtol( psz_parser, &psz_next, 10 );
736         if( *psz_next )
737         {
738             psz_parser = psz_next + 1;
739             i_chapter = (int)strtol( psz_parser, &psz_next, 10 );
740             if( *psz_next )
741             {
742                 i_angle = (int)strtol( psz_next + 1, NULL, 10 );
743             }
744         }
745
746         p_dvd->i_title = i_title ? i_title : 1;
747         p_dvd->i_chapter = i_chapter ? i_chapter : 1;
748         p_dvd->i_angle = i_angle ? i_angle : 1;
749     }
750
751     if( *psz_raw )
752     {
753         if( *psz_raw )
754         {
755             /* check the raw device */
756             if( stat( psz_raw, &stat_info ) == -1 )
757             {
758                 msg_Warn( p_input, "cannot stat() raw device `%s' (%s)",
759                                    psz_raw, strerror(errno));
760                 /* put back '@' */
761                 *(psz_raw - 1) = '@';
762                 psz_raw = "";
763             }
764             else
765             {
766                 char * psz_env;
767                 
768 #ifndef WIN32    
769                 if( !S_ISCHR(stat_info.st_mode) )
770                 {
771                     msg_Warn( p_input, "raw device %s is"
772                               " not a valid char device", psz_raw );
773                     /* put back '@' */
774                     *(psz_raw - 1) = '@';
775                     psz_raw = "";
776                 }
777                 else
778 #endif
779                 {
780                     psz_env = malloc( strlen("DVDCSS_RAW_DEVICE=")
781                                     + strlen( psz_raw ) + 1 );
782                     sprintf( psz_env, "DVDCSS_RAW_DEVICE=%s", psz_raw );
783                     putenv( psz_env );
784                 }
785             }
786         }
787         else
788         {
789             psz_raw = "";
790         }
791     }
792     
793     if( !*psz_device )
794     {
795         free( psz_device );
796         
797         if( !p_input->psz_access )
798         {
799             /* no device and no access specified: we probably don't want DVD */
800             return NULL;
801         }
802         psz_device = config_GetPsz( p_input, "dvd" );
803     }
804
805 #ifndef WIN32    
806     /* check block device */
807     if( stat( psz_device, &stat_info ) == -1 )
808     {
809         msg_Err( p_input, "cannot stat() device `%s' (%s)",
810                           psz_device, strerror(errno));
811         free( psz_device );
812         return NULL;                    
813     }
814     
815     if( !S_ISBLK(stat_info.st_mode) && !S_ISCHR(stat_info.st_mode) )
816     {
817         msg_Warn( p_input,
818                   "dvd module discarded (not a valid block device)" );
819         free( psz_device );
820         return NULL;
821     }
822 #endif
823     
824     msg_Dbg( p_input, "dvd=%s raw=%s title=%d chapter=%d angle=%d",
825                       psz_device, psz_raw, p_dvd->i_title,
826                       p_dvd->i_chapter, p_dvd->i_angle );
827
828     return psz_device;
829