]> git.sesse.net Git - vlc/blob - modules/access/vcd/cdrom.c
* modules/access/vcd/*, modules/access/cdda.c: changed ioctl_ReadSector() into ioctl_...
[vlc] / modules / access / vcd / cdrom.c
1 /****************************************************************************
2  * cdrom.c: cdrom tools
3  *****************************************************************************
4  * Copyright (C) 1998-2001 VideoLAN
5  * $Id: cdrom.c,v 1.11 2003/05/18 15:44:03 gbazin Exp $
6  *
7  * Authors: Johan Bilien <jobi@via.ecp.fr>
8  *          Gildas Bazin <gbazin@netcourrier.com>
9  *          Jon Lech Johansen <jon-vl@nanocrew.net>
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29 #include <stdio.h>
30 #include <stdlib.h>
31
32 #include <vlc/vlc.h>
33
34 #ifdef HAVE_UNISTD_H
35 #   include <unistd.h>
36 #endif
37
38 #include <fcntl.h>
39 #include <sys/types.h>
40 #include <sys/stat.h>
41 #include <string.h>
42 #include <errno.h>
43
44 #ifdef HAVE_SYS_IOCTL_H
45 #   include <sys/ioctl.h>
46 #endif
47
48 #if defined( SYS_BSDI )
49 #   include <dvd.h>
50 #elif defined ( SYS_DARWIN )
51 #   include <CoreFoundation/CFBase.h>
52 #   include <IOKit/IOKitLib.h>
53 #   include <IOKit/storage/IOCDTypes.h>
54 #   include <IOKit/storage/IOCDMedia.h>
55 #   include <IOKit/storage/IOCDMediaBSDClient.h>
56 #elif defined( HAVE_SCSIREQ_IN_SYS_SCSIIO_H )
57 #   include <sys/inttypes.h>
58 #   include <sys/cdio.h>
59 #   include <sys/scsiio.h>
60 #elif defined( HAVE_IOC_TOC_HEADER_IN_SYS_CDIO_H )
61 #   include <sys/cdio.h>
62 #   include <sys/cdrio.h>
63 #elif defined( WIN32 )
64 #   include <windows.h>
65 #   include <winioctl.h>
66 #else
67 #   include <linux/cdrom.h>
68 #endif
69
70 #include "cdrom_internals.h"
71 #include "cdrom.h"
72
73 /*****************************************************************************
74  * ioctl_Open: Opens a VCD device or file and returns an opaque handle
75  *****************************************************************************/
76 vcddev_t *ioctl_Open( vlc_object_t *p_this, const char *psz_dev )
77 {
78     int i_ret;
79     int b_is_file;
80     vcddev_t *p_vcddev;
81 #ifndef WIN32
82     struct stat fileinfo;
83 #endif
84
85     if( !psz_dev ) return NULL;
86
87     /*
88      *  Initialize structure with default values
89      */
90     p_vcddev = (vcddev_t *)malloc( sizeof(vcddev_t) );
91     if( p_vcddev == NULL )
92     {
93         msg_Err( p_this, "out of memory" );
94         return NULL;
95     }
96     p_vcddev->i_vcdimage_handle = -1;
97     p_vcddev->psz_dev = NULL;
98     b_is_file = 1;
99
100     /*
101      *  Check if we are dealing with a device or a file (vcd image)
102      */
103 #ifdef WIN32
104     if( strlen( psz_dev ) == 1 ||
105         (strlen( psz_dev ) == 2 && psz_dev[1] == ':') )
106     {
107         b_is_file = 0;
108     }
109
110 #else
111     if( stat( psz_dev, &fileinfo ) < 0 )
112     {
113         free( p_vcddev );
114         return NULL;
115     }
116
117     /* Check if this is a block/char device */
118     if( S_ISBLK( fileinfo.st_mode ) || S_ISCHR( fileinfo.st_mode ) )
119         b_is_file = 0;
120 #endif
121
122     if( b_is_file )
123     {
124         i_ret = OpenVCDImage( p_this, psz_dev, p_vcddev );
125     }
126     else
127     {
128         /*
129          *  open the vcd device
130          */
131
132 #ifdef WIN32
133         i_ret = win32_vcd_open( p_this, psz_dev, p_vcddev );
134 #else
135         p_vcddev->i_device_handle = -1;
136         p_vcddev->i_device_handle = open( psz_dev, O_RDONLY | O_NONBLOCK );
137         i_ret = (p_vcddev->i_device_handle == -1) ? -1 : 0;
138 #endif
139     }
140
141     if( i_ret == 0 )
142     {
143         p_vcddev->psz_dev = (char *)strdup( psz_dev );
144     }
145     else
146     {
147         free( p_vcddev );
148         p_vcddev = NULL;
149     }
150
151     return p_vcddev;
152 }
153
154 /*****************************************************************************
155  * ioctl_Close: Closes an already opened VCD device or file.
156  *****************************************************************************/
157 void ioctl_Close( vlc_object_t * p_this, vcddev_t *p_vcddev )
158 {
159     if( p_vcddev->psz_dev ) free( p_vcddev->psz_dev );
160
161     if( p_vcddev->i_vcdimage_handle != -1 )
162     {
163         /*
164          *  vcd image mode
165          */
166
167         CloseVCDImage( p_this, p_vcddev );
168         return;
169     }
170
171     /*
172      *  vcd device mode
173      */
174
175 #ifdef WIN32
176     if( p_vcddev->h_device_handle )
177         CloseHandle( p_vcddev->h_device_handle );
178     if( p_vcddev->hASPI )
179         FreeLibrary( (HMODULE)p_vcddev->hASPI );
180 #else
181     if( p_vcddev->i_device_handle != -1 )
182         close( p_vcddev->i_device_handle );
183 #endif
184 }
185
186 /*****************************************************************************
187  * ioctl_GetTracksMap: Read the Table of Content, fill in the pp_sectors map
188  *                     if pp_sectors is not null and return the number of
189  *                     tracks available.
190  *****************************************************************************/
191 int ioctl_GetTracksMap( vlc_object_t *p_this, const vcddev_t *p_vcddev,
192                         int **pp_sectors )
193 {
194     int i_tracks = 0;
195
196     if( p_vcddev->i_vcdimage_handle != -1 )
197     {
198         /*
199          *  vcd image mode
200          */
201
202         i_tracks = p_vcddev->i_tracks;
203
204         if( pp_sectors )
205         {
206             *pp_sectors = malloc( (i_tracks + 1) * sizeof(int) );
207             if( *pp_sectors == NULL )
208             {
209                 msg_Err( p_this, "out of memory" );
210                 return 0;
211             }
212             memcpy( *pp_sectors, p_vcddev->p_sectors,
213                     (i_tracks + 1) * sizeof(int) );
214         }
215
216         return i_tracks;
217     }
218     else
219     {
220
221         /*
222          *  vcd device mode
223          */
224
225 #if defined( SYS_DARWIN )
226
227         CDTOC *pTOC;
228         int i_descriptors;
229
230         if( ( pTOC = darwin_getTOC( p_this, p_vcddev ) ) == NULL )
231         {
232             msg_Err( p_this, "failed to get the TOC" );
233             return 0;
234         }
235
236         i_descriptors = darwin_getNumberOfDescriptors( pTOC );
237         i_tracks = darwin_getNumberOfTracks( pTOC, i_descriptors );
238
239         if( pp_sectors )
240         {
241             int i, i_leadout = -1;
242             CDTOCDescriptor *pTrackDescriptors;
243             u_char track;
244
245             *pp_sectors = malloc( (i_tracks + 1) * sizeof(int) );
246             if( *pp_sectors == NULL )
247             {
248                 msg_Err( p_this, "out of memory" );
249                 darwin_freeTOC( pTOC );
250                 return 0;
251             }
252
253             pTrackDescriptors = pTOC->descriptors;
254
255             for( i_tracks = 0, i = 0; i <= i_descriptors; i++ )
256             {
257                 track = pTrackDescriptors[i].point;
258
259                 if( track == 0xA2 )
260                     i_leadout = i;
261
262                 if( track > CD_MAX_TRACK_NO || track < CD_MIN_TRACK_NO )
263                     continue;
264
265                 (*pp_sectors)[i_tracks++] =
266                     CDConvertMSFToLBA( pTrackDescriptors[i].p );
267             }
268
269             if( i_leadout == -1 )
270             {
271                 msg_Err( p_this, "leadout not found" );
272                 free( *pp_sectors );
273                 darwin_freeTOC( pTOC );
274                 return 0;
275             }
276
277             /* set leadout sector */
278             (*pp_sectors)[i_tracks] =
279                 CDConvertMSFToLBA( pTrackDescriptors[i_leadout].p );
280         }
281
282         darwin_freeTOC( pTOC );
283
284 #elif defined( WIN32 )
285         if( p_vcddev->hASPI )
286         {
287             HANDLE hEvent;
288             struct SRB_ExecSCSICmd ssc;
289             byte_t p_tocheader[ 4 ];
290
291             /* Create the transfer completion event */
292             hEvent = CreateEvent( NULL, TRUE, FALSE, NULL );
293             if( hEvent == NULL )
294             {
295                 return -1;
296             }
297
298             memset( &ssc, 0, sizeof( ssc ) );
299
300             ssc.SRB_Cmd         = SC_EXEC_SCSI_CMD;
301             ssc.SRB_Flags       = SRB_DIR_IN | SRB_EVENT_NOTIFY;
302             ssc.SRB_HaId        = LOBYTE( p_vcddev->i_sid );
303             ssc.SRB_Target      = HIBYTE( p_vcddev->i_sid );
304             ssc.SRB_SenseLen    = SENSE_LEN;
305
306             ssc.SRB_PostProc = (LPVOID) hEvent;
307             ssc.SRB_CDBLen      = 10;
308
309             /* Operation code */
310             ssc.CDBByte[ 0 ] = READ_TOC;
311
312             /* Format */
313             ssc.CDBByte[ 2 ] = READ_TOC_FORMAT_TOC;
314
315             /* Starting track */
316             ssc.CDBByte[ 6 ] = 0;
317
318             /* Allocation length and buffer */
319             ssc.SRB_BufLen = sizeof( p_tocheader );
320             ssc.SRB_BufPointer  = p_tocheader;
321             ssc.CDBByte[ 7 ] = ( ssc.SRB_BufLen >>  8 ) & 0xff;
322             ssc.CDBByte[ 8 ] = ( ssc.SRB_BufLen       ) & 0xff;
323
324             /* Initiate transfer */
325             ResetEvent( hEvent );
326             p_vcddev->lpSendCommand( (void*) &ssc );
327
328             /* If the command has still not been processed, wait until it's
329              * finished */
330             if( ssc.SRB_Status == SS_PENDING )
331                 WaitForSingleObject( hEvent, INFINITE );
332
333             /* check that the transfer went as planned */
334             if( ssc.SRB_Status != SS_COMP )
335             {
336                 CloseHandle( hEvent );
337                 return 0;
338             }
339
340             i_tracks = p_tocheader[3] - p_tocheader[2] + 1;
341
342             if( pp_sectors )
343             {
344                 int i, i_toclength;
345                 byte_t *p_fulltoc;
346
347                 i_toclength = 4 /* header */ + p_tocheader[0] +
348                               ((unsigned int)p_tocheader[1] << 8);
349
350                 p_fulltoc = malloc( i_toclength );
351                 *pp_sectors = malloc( (i_tracks + 1) * sizeof(int) );
352
353                 if( *pp_sectors == NULL || p_fulltoc == NULL )
354                 {
355                     if( *pp_sectors ) free( *pp_sectors );
356                     if( p_fulltoc ) free( p_fulltoc );
357                     msg_Err( p_this, "out of memory" );
358                     CloseHandle( hEvent );
359                     return 0;
360                 }
361
362                 /* Allocation length and buffer */
363                 ssc.SRB_BufLen = i_toclength;
364                 ssc.SRB_BufPointer  = p_fulltoc;
365                 ssc.CDBByte[ 7 ] = ( ssc.SRB_BufLen >>  8 ) & 0xff;
366                 ssc.CDBByte[ 8 ] = ( ssc.SRB_BufLen       ) & 0xff;
367
368                 /* Initiate transfer */
369                 ResetEvent( hEvent );
370                 p_vcddev->lpSendCommand( (void*) &ssc );
371
372                 /* If the command has still not been processed, wait until it's
373                  * finished */
374                 if( ssc.SRB_Status == SS_PENDING )
375                     WaitForSingleObject( hEvent, INFINITE );
376
377                 /* check that the transfer went as planned */
378                 if( ssc.SRB_Status != SS_COMP )
379                     i_tracks = 0;
380
381                 for( i = 0 ; i <= i_tracks ; i++ )
382                 {
383                     int i_index = 8 + 8 * i;
384                     (*pp_sectors)[ i ] = ((int)p_fulltoc[ i_index ] << 24) +
385                                          ((int)p_fulltoc[ i_index+1 ] << 16) +
386                                          ((int)p_fulltoc[ i_index+2 ] << 8) +
387                                          (int)p_fulltoc[ i_index+3 ];
388
389                     msg_Dbg( p_this, "p_sectors: %i, %i", i, (*pp_sectors)[i]);
390                 }
391
392                 free( p_fulltoc );
393             }
394
395             CloseHandle( hEvent );
396
397         }
398         else
399         {
400             DWORD dwBytesReturned;
401             CDROM_TOC cdrom_toc;
402
403             if( DeviceIoControl( p_vcddev->h_device_handle,
404                                  IOCTL_CDROM_READ_TOC,
405                                  NULL, 0, &cdrom_toc, sizeof(CDROM_TOC),
406                                  &dwBytesReturned, NULL ) == 0 )
407             {
408                 msg_Err( p_this, "could not read TOCHDR" );
409                 return 0;
410             }
411
412             i_tracks = cdrom_toc.LastTrack - cdrom_toc.FirstTrack + 1;
413
414             if( pp_sectors )
415             {
416                 int i;
417
418                 *pp_sectors = malloc( (i_tracks + 1) * sizeof(int) );
419                 if( *pp_sectors == NULL )
420                 {
421                     msg_Err( p_this, "out of memory" );
422                     return 0;
423                 }
424
425                 for( i = 0 ; i <= i_tracks ; i++ )
426                 {
427                     (*pp_sectors)[ i ] = MSF_TO_LBA2(
428                                            cdrom_toc.TrackData[i].Address[1],
429                                            cdrom_toc.TrackData[i].Address[2],
430                                            cdrom_toc.TrackData[i].Address[3] );
431                     msg_Dbg( p_this, "p_sectors: %i, %i", i, (*pp_sectors)[i]);
432                 }
433             }
434         }
435
436 #elif defined( HAVE_IOC_TOC_HEADER_IN_SYS_CDIO_H ) \
437        || defined( HAVE_SCSIREQ_IN_SYS_SCSIIO_H )
438         struct ioc_toc_header tochdr;
439         struct ioc_read_toc_entry toc_entries;
440
441         if( ioctl( p_vcddev->i_device_handle, CDIOREADTOCHEADER, &tochdr )
442             == -1 )
443         {
444             msg_Err( p_this, "could not read TOCHDR" );
445             return 0;
446         }
447
448         i_tracks = tochdr.ending_track - tochdr.starting_track + 1;
449
450         if( pp_sectors )
451         {
452              int i;
453
454              *pp_sectors = malloc( (i_tracks + 1) * sizeof(int) );
455              if( *pp_sectors == NULL )
456              {
457                  msg_Err( p_this, "out of memory" );
458                  return NULL;
459              }
460
461              toc_entries.address_format = CD_LBA_FORMAT;
462              toc_entries.starting_track = 0;
463              toc_entries.data_len = ( i_tracks + 1 ) *
464                                         sizeof( struct cd_toc_entry );
465              toc_entries.data = (struct cd_toc_entry *)
466                                     malloc( toc_entries.data_len );
467              if( toc_entries.data == NULL )
468              {
469                  msg_Err( p_this, "out of memory" );
470                  free( *pp_sectors );
471                  return 0;
472              }
473
474              /* Read the TOC */
475              if( ioctl( p_vcddev->i_device_handle, CDIOREADTOCENTRYS,
476                         &toc_entries ) == -1 )
477              {
478                  msg_Err( p_this, "could not read the TOC" );
479                  free( *pp_sectors );
480                  free( toc_entries.data );
481                  return 0;
482              }
483
484              /* Fill the p_sectors structure with the track/sector matches */
485              for( i = 0 ; i <= i_tracks ; i++ )
486              {
487 #if defined( HAVE_SCSIREQ_IN_SYS_SCSIIO_H )
488                  /* FIXME: is this ok? */
489                  (*pp_sectors)[ i ] = toc_entries.data[i].addr.lba;
490 #else
491                  (*pp_sectors)[ i ] = ntohl( toc_entries.data[i].addr.lba );
492 #endif
493              }
494         }
495 #else
496         struct cdrom_tochdr   tochdr;
497         struct cdrom_tocentry tocent;
498
499         /* First we read the TOC header */
500         if( ioctl( p_vcddev->i_device_handle, CDROMREADTOCHDR, &tochdr )
501             == -1 )
502         {
503             msg_Err( p_this, "could not read TOCHDR" );
504             return 0;
505         }
506
507         i_tracks = tochdr.cdth_trk1 - tochdr.cdth_trk0 + 1;
508
509         if( pp_sectors )
510         {
511             int i;
512
513             *pp_sectors = malloc( (i_tracks + 1) * sizeof(int) );
514             if( *pp_sectors == NULL )
515             {
516                 msg_Err( p_this, "out of memory" );
517                 return 0;
518             }
519
520             /* Fill the p_sectors structure with the track/sector matches */
521             for( i = 0 ; i <= i_tracks ; i++ )
522             {
523                 tocent.cdte_format = CDROM_LBA;
524                 tocent.cdte_track =
525                     ( i == i_tracks ) ? CDROM_LEADOUT : tochdr.cdth_trk0 + i;
526
527                 if( ioctl( p_vcddev->i_device_handle, CDROMREADTOCENTRY,
528                            &tocent ) == -1 )
529                 {
530                     msg_Err( p_this, "could not read TOCENTRY" );
531                     free( *pp_sectors );
532                     return 0;
533                 }
534
535                 (*pp_sectors)[ i ] = tocent.cdte_addr.lba;
536             }
537         }
538 #endif
539
540         return i_tracks;
541     }
542 }
543
544 /****************************************************************************
545  * ioctl_ReadSector: Read VCD or CDDA sectors
546  ****************************************************************************/
547 int ioctl_ReadSectors( vlc_object_t *p_this, const vcddev_t *p_vcddev,
548                        int i_sector, byte_t * p_buffer, int i_nb, int i_type )
549 {
550     byte_t *p_block;
551     int i;
552
553     if( i_type == VCD_TYPE ) p_block = malloc( VCD_SECTOR_SIZE * i_nb );
554     else p_block = p_buffer;
555
556     if( p_vcddev->i_vcdimage_handle != -1 )
557     {
558         /*
559          *  vcd image mode
560          */
561         if( lseek( p_vcddev->i_vcdimage_handle, i_sector * VCD_SECTOR_SIZE,
562                    SEEK_SET ) == -1 )
563         {
564             msg_Err( p_this, "Could not lseek to sector %d", i_sector );
565             if( i_type == VCD_TYPE ) free( p_block );
566             return -1;
567         }
568
569         if( read( p_vcddev->i_vcdimage_handle, p_block, VCD_SECTOR_SIZE * i_nb)
570             == -1 )
571         {
572             msg_Err( p_this, "Could not read sector %d", i_sector );
573             if( i_type == VCD_TYPE ) free( p_block );
574             return -1;
575         }
576
577     }
578     else
579     {
580
581         /*
582          *  vcd device mode
583          */
584
585 #if defined( SYS_DARWIN )
586         dk_cd_read_t cd_read;
587
588         memset( &cd_read, 0, sizeof(cd_read) );
589
590         cd_read.offset = i_sector * VCD_SECTOR_SIZE;
591         cd_read.sectorArea = kCDSectorAreaSync | kCDSectorAreaHeader |
592                              kCDSectorAreaSubHeader | kCDSectorAreaUser |
593                              kCDSectorAreaAuxiliary;
594         cd_read.sectorType = kCDSectorTypeUnknown;
595
596         cd_read.buffer = p_block;
597         cd_read.bufferLength = VCD_SECTOR_SIZE * i_nb;
598
599         if( ioctl( p_vcddev->i_device_handle, DKIOCCDREAD, &cd_read ) == -1 )
600         {
601             msg_Err( p_this, "could not read block %d", i_sector );
602             if( i_type == VCD_TYPE ) free( p_block );
603             return -1;
604         }
605
606 #elif defined( WIN32 )
607         if( p_vcddev->hASPI )
608         {
609             HANDLE hEvent;
610             struct SRB_ExecSCSICmd ssc;
611
612             /* Create the transfer completion event */
613             hEvent = CreateEvent( NULL, TRUE, FALSE, NULL );
614             if( hEvent == NULL )
615             {
616                 if( i_type == VCD_TYPE ) free( p_block );
617                 return -1;
618             }
619
620             memset( &ssc, 0, sizeof( ssc ) );
621
622             ssc.SRB_Cmd         = SC_EXEC_SCSI_CMD;
623             ssc.SRB_Flags       = SRB_DIR_IN | SRB_EVENT_NOTIFY;
624             ssc.SRB_HaId        = LOBYTE( p_vcddev->i_sid );
625             ssc.SRB_Target      = HIBYTE( p_vcddev->i_sid );
626             ssc.SRB_SenseLen    = SENSE_LEN;
627
628             ssc.SRB_PostProc = (LPVOID) hEvent;
629             ssc.SRB_CDBLen      = 12;
630
631             /* Operation code */
632             ssc.CDBByte[ 0 ] = READ_CD;
633
634             /* Sector type */
635             ssc.CDBByte[ 1 ] = i_type == VCD_TYPE ? SECTOR_TYPE_MODE2_FORM2 :
636                                                     SECTOR_TYPE_CDDA;
637
638             /* Start of LBA */
639             ssc.CDBByte[ 2 ] = ( i_sector >> 24 ) & 0xff;
640             ssc.CDBByte[ 3 ] = ( i_sector >> 16 ) & 0xff;
641             ssc.CDBByte[ 4 ] = ( i_sector >>  8 ) & 0xff;
642             ssc.CDBByte[ 5 ] = ( i_sector       ) & 0xff;
643
644             /* Transfer length */
645             ssc.CDBByte[ 6 ] = ( i_nb >> 16 ) & 0xff;
646             ssc.CDBByte[ 7 ] = ( i_nb >> 8  ) & 0xff;
647             ssc.CDBByte[ 8 ] = ( i_nb       ) & 0xff;
648
649             /* Data selection */
650             ssc.CDBByte[ 9 ] = i_type == VCD_TYPE ? READ_CD_RAW_MODE2 :
651                                                     READ_CD_USERDATA;
652
653             /* Result buffer */
654             ssc.SRB_BufPointer  = p_block;
655             ssc.SRB_BufLen = VCD_SECTOR_SIZE * i_nb;
656
657             /* Initiate transfer */
658             ResetEvent( hEvent );
659             p_vcddev->lpSendCommand( (void*) &ssc );
660
661             /* If the command has still not been processed, wait until it's
662              * finished */
663             if( ssc.SRB_Status == SS_PENDING )
664             {
665                 WaitForSingleObject( hEvent, INFINITE );
666             }
667             CloseHandle( hEvent );
668
669             /* check that the transfer went as planned */
670             if( ssc.SRB_Status != SS_COMP )
671             {
672                 if( i_type == VCD_TYPE ) free( p_block );
673                 return -1;
674             }
675         }
676         else
677         {
678             DWORD dwBytesReturned;
679             RAW_READ_INFO cdrom_raw;
680
681             /* Initialize CDROM_RAW_READ structure */
682             cdrom_raw.DiskOffset.QuadPart = CD_SECTOR_SIZE * i_sector;
683             cdrom_raw.SectorCount = i_nb;
684             cdrom_raw.TrackMode =  i_type == VCD_TYPE ? XAForm2 : CDDA;
685
686             if( DeviceIoControl( p_vcddev->h_device_handle,
687                                  IOCTL_CDROM_RAW_READ, &cdrom_raw,
688                                  sizeof(RAW_READ_INFO), p_block,
689                                  VCD_SECTOR_SIZE * i_nb, &dwBytesReturned,
690                                  NULL ) == 0 )
691             {
692                 if( i_type == VCD_TYPE ) free( p_block );
693                 return -1;
694             }
695         }
696
697 #elif defined( HAVE_SCSIREQ_IN_SYS_SCSIIO_H )
698         struct scsireq  sc;
699         int i_ret;
700
701         memset( &sc, 0, sizeof(sc) );
702         sc.cmd[0] = 0xBE;
703         sc.cmd[1] = i_type == VCD_TYPE ? SECTOR_TYPE_MODE2_FORM2:
704                                          SECTOR_TYPE_CDDA;
705         sc.cmd[2] = (i_sector >> 24) & 0xff;
706         sc.cmd[3] = (i_sector >> 16) & 0xff;
707         sc.cmd[4] = (i_sector >>  8) & 0xff;
708         sc.cmd[5] = (i_sector >>  0) & 0xff;
709         sc.cmd[6] = (i_nb >> 16) & 0xff;
710         sc.cmd[7] = (i_nb >>  8) & 0xff;
711         sc.cmd[8] = (i_nb      ) & 0xff;
712         sc.cmd[9] = i_type == VCD_TYPE ? READ_CD_RAW_MODE2 : READ_CD_USERDATA;
713         sc.cmd[10] = 0; /* sub channel */
714         sc.cmdlen = 12;
715         sc.databuf = (caddr_t)p_block;
716         sc.datalen = VCD_SECTOR_SIZE * i_nb;
717         sc.senselen = sizeof( sc.sense );
718         sc.flags = SCCMD_READ;
719         sc.timeout = 10000;
720
721         i_ret = ioctl( i_fd, SCIOCCOMMAND, &sc );
722         if( i_ret == -1 )
723         {
724             msg_Err( p_this, "SCIOCCOMMAND failed" );
725             if( i_type == VCD_TYPE ) free( p_block );
726             return -1;
727         }
728         if( sc.retsts || sc.error )
729         {
730             msg_Err( p_this, "SCSI command failed: status %d error %d\n",
731                              sc.retsts, sc.error );
732             if( i_type == VCD_TYPE ) free( p_block );
733            return -1;
734         }
735
736 #elif defined( HAVE_IOC_TOC_HEADER_IN_SYS_CDIO_H )
737         int i_size = VCD_SECTOR_SIZE;
738
739         if( ioctl( p_vcddev->i_device_handle, CDRIOCSETBLOCKSIZE, &i_size )
740             == -1 )
741         {
742             msg_Err( p_this, "Could not set block size" );
743             if( i_type == VCD_TYPE ) free( p_block );
744             return( -1 );
745         }
746
747         if( lseek( p_vcddev->i_device_handle,
748                    i_sector * VCD_SECTOR_SIZE, SEEK_SET ) == -1 )
749         {
750             msg_Err( p_this, "Could not lseek to sector %d", i_sector );
751             if( i_type == VCD_TYPE ) free( p_block );
752             return( -1 );
753         }
754
755         if( read( p_vcddev->i_device_handle,
756                   p_block, VCD_SECTOR_SIZE * i_nb ) == -1 )
757         {
758             msg_Err( p_this, "Could not read sector %d", i_sector );
759             if( i_type == VCD_TYPE ) free( p_block );
760             return( -1 );
761         }
762
763 #else
764         for( i = 0; i < i_nb; i++ )
765         {
766             int i_dummy = i_sector + i + 2 * CD_FRAMES;
767
768 #define p_msf ((struct cdrom_msf0 *)(p_block + i * VCD_SECTOR_SIZE))
769             p_msf->minute =   i_dummy / (CD_FRAMES * CD_SECS);
770             p_msf->second = ( i_dummy % (CD_FRAMES * CD_SECS) ) / CD_FRAMES;
771             p_msf->frame =  ( i_dummy % (CD_FRAMES * CD_SECS) ) % CD_FRAMES;
772 #undef p_msf
773
774             if( ioctl( p_vcddev->i_device_handle, CDROMREADRAW,
775                        p_block + i * VCD_SECTOR_SIZE ) == -1 )
776             {
777                 msg_Err( p_this, "could not read block %i from disc",
778                          i_sector );
779
780                 if( i == 0 )
781                 {
782                     if( i_type == VCD_TYPE ) free( p_block );
783                     return( -1 );
784                 }
785                 else break;
786             }
787         }
788 #endif
789     }
790
791     /* For VCDs, we don't want to keep the header and footer of the
792      * sectors read */
793     if( i_type == VCD_TYPE )
794     {
795         for( i = 0; i < i_nb; i++ )
796         {
797             memcpy( p_buffer + i * VCD_DATA_SIZE,
798                     p_block + i * VCD_SECTOR_SIZE + VCD_DATA_START,
799                     VCD_DATA_SIZE );
800         }
801         free( p_block );
802     }
803
804     return( 0 );
805 }
806
807 /****************************************************************************
808  * Private functions
809  ****************************************************************************/
810
811 /****************************************************************************
812  * OpenVCDImage: try to open a vcd image from a .cue file
813  ****************************************************************************/
814 static int OpenVCDImage( vlc_object_t * p_this, const char *psz_dev,
815                          vcddev_t *p_vcddev )
816 {
817     int i_ret = -1;
818     char *p_pos;
819     char *psz_vcdfile = NULL;
820     char *psz_cuefile = NULL;
821     FILE *cuefile;
822     char line[1024];
823
824     /* Check if we are dealing with a .cue file */
825     p_pos = strrchr( psz_dev, '.' );
826     if( p_pos && !strcmp( p_pos, ".cue" ) )
827     {
828         psz_cuefile = strdup( psz_dev );
829     }
830     else
831     {
832         /* psz_dev must be the actual vcd file. Let's assume there's a .cue
833          * file with the same filename */
834         if( p_pos )
835         {
836             psz_cuefile = malloc( p_pos - psz_dev + 5 /* ".cue" */ );
837             strncpy( psz_cuefile, psz_dev, p_pos - psz_dev );
838             strcpy( psz_cuefile + (p_pos - psz_dev), ".cue");
839         }
840         else
841         {
842             psz_cuefile = malloc( strlen(psz_dev) + 5 /* ".cue" */ );
843             sprintf( psz_cuefile, "%s.cue", psz_dev );
844         }
845     }
846
847     /* Open the cue file and try to parse it */
848     msg_Dbg( p_this,"trying .cue file: %s", psz_cuefile );
849     cuefile = fopen( psz_cuefile, "rt" );
850     if( cuefile && fscanf( cuefile, "FILE %c", line ) &&
851         fgets( line, 1024, cuefile ) )
852     {
853         p_pos = strchr( line, '"' );
854         if( p_pos )
855         {
856             *p_pos = 0;
857
858             /* Take care of path standardization */
859             if( *line != '/' && ((p_pos = strrchr( psz_cuefile, '/' ))
860                 || (p_pos = strrchr( psz_cuefile, '\\' ) )) )
861             {
862                 psz_vcdfile = malloc( strlen(line) +
863                                       (p_pos - psz_cuefile + 1) + 1 );
864                 strncpy( psz_vcdfile, psz_cuefile, (p_pos - psz_cuefile + 1) );
865                 strcpy( psz_vcdfile + (p_pos - psz_cuefile + 1), line );
866             }
867             else psz_vcdfile = strdup( line );
868         }
869     }
870
871     if( psz_vcdfile )
872     {
873         msg_Dbg( p_this,"using vcd image file: %s", psz_vcdfile );
874         p_vcddev->i_vcdimage_handle = open( psz_vcdfile,
875                                         O_RDONLY | O_NONBLOCK | O_BINARY );
876         i_ret = (p_vcddev->i_vcdimage_handle == -1) ? -1 : 0;
877     }
878
879     /* Try to parse the i_tracks and p_sectors info so we can just forget
880      * about the cuefile */
881     if( i_ret == 0 )
882     {
883         int p_sectors[100];
884         int i_tracks = 0;
885         int i_num;
886         char psz_dummy[10];
887
888         while( fgets( line, 1024, cuefile ) )
889         {
890             /* look for a TRACK line */
891             if( !sscanf( line, "%9s", psz_dummy ) ||
892                 strcmp(psz_dummy, "TRACK") )
893                 continue;
894
895             /* look for an INDEX line */
896             while( fgets( line, 1024, cuefile ) )
897             {
898                 int i_min, i_sec, i_frame;
899
900                 if( (sscanf( line, "%9s %2u %2u:%2u:%2u", psz_dummy, &i_num,
901                             &i_min, &i_sec, &i_frame ) != 5) || (i_num != 1) )
902                     continue;
903
904                 i_tracks++;
905                 p_sectors[i_tracks - 1] = MSF_TO_LBA(i_min, i_sec, i_frame);
906                 msg_Dbg( p_this, "vcd track %i begins at sector:%i",
907                          i_tracks - 1, p_sectors[i_tracks - 1] );
908                 break;
909             }
910         }
911
912         /* fill in the last entry */
913         p_sectors[i_tracks] = lseek(p_vcddev->i_vcdimage_handle, 0, SEEK_END)
914                                 / VCD_SECTOR_SIZE;
915         msg_Dbg( p_this, "vcd track %i, begins at sector:%i",
916                  i_tracks, p_sectors[i_tracks] );
917         p_vcddev->i_tracks = i_tracks;
918         p_vcddev->p_sectors = malloc( (i_tracks + 1) * sizeof(int) );
919         memcpy( p_vcddev->p_sectors, p_sectors, (i_tracks + 1) * sizeof(int) );
920
921     }
922
923     if( cuefile ) fclose( cuefile );
924     if( psz_cuefile ) free( psz_cuefile );
925     if( psz_vcdfile ) free( psz_vcdfile );
926
927     return i_ret;
928 }
929
930 /****************************************************************************
931  * CloseVCDImage: closes a vcd image opened by OpenVCDImage
932  ****************************************************************************/
933 static void CloseVCDImage( vlc_object_t * p_this, vcddev_t *p_vcddev )
934 {
935     if( p_vcddev->i_vcdimage_handle != -1 )
936         close( p_vcddev->i_vcdimage_handle );
937     else
938         return;
939
940     if( p_vcddev->p_sectors )
941         free( p_vcddev->p_sectors );
942 }
943
944 #if defined( SYS_DARWIN )
945 /****************************************************************************
946  * darwin_getTOC: get the TOC
947  ****************************************************************************/
948 static CDTOC *darwin_getTOC( vlc_object_t * p_this, const vcddev_t *p_vcddev )
949 {
950     mach_port_t port;
951     char *psz_devname;
952     kern_return_t ret;
953     CDTOC *pTOC = NULL;
954     io_iterator_t iterator;
955     io_registry_entry_t service;
956     CFMutableDictionaryRef properties;
957     CFDataRef data;
958
959     /* get the device name */
960     if( ( psz_devname = strrchr( p_vcddev->psz_dev, '/') ) != NULL )
961         ++psz_devname;
962     else
963         psz_devname = p_vcddev->psz_dev;
964
965     /* unraw the device name */
966     if( *psz_devname == 'r' )
967         ++psz_devname;
968
969     /* get port for IOKit communication */
970     if( ( ret = IOMasterPort( MACH_PORT_NULL, &port ) ) != KERN_SUCCESS )
971     {
972         msg_Err( p_this, "IOMasterPort: 0x%08x", ret );
973         return( NULL );
974     }
975
976     /* get service iterator for the device */
977     if( ( ret = IOServiceGetMatchingServices( 
978                     port, IOBSDNameMatching( port, 0, psz_devname ),
979                     &iterator ) ) != KERN_SUCCESS )
980     {
981         msg_Err( p_this, "IOServiceGetMatchingServices: 0x%08x", ret );
982         return( NULL );
983     }
984
985     /* first service */
986     service = IOIteratorNext( iterator );
987     IOObjectRelease( iterator );
988
989     /* search for kIOCDMediaClass */ 
990     while( service && !IOObjectConformsTo( service, kIOCDMediaClass ) )
991     {
992         if( ( ret = IORegistryEntryGetParentIterator( service, 
993                         kIOServicePlane, &iterator ) ) != KERN_SUCCESS )
994         {
995             msg_Err( p_this, "IORegistryEntryGetParentIterator: 0x%08x", ret );
996             IOObjectRelease( service );
997             return( NULL );
998         }
999
1000         IOObjectRelease( service );
1001         service = IOIteratorNext( iterator );
1002         IOObjectRelease( iterator );
1003     }
1004
1005     if( service == NULL )
1006     {
1007         msg_Err( p_this, "search for kIOCDMediaClass came up empty" );
1008         return( NULL );
1009     }
1010
1011     /* create a CF dictionary containing the TOC */
1012     if( ( ret = IORegistryEntryCreateCFProperties( service, &properties,
1013                     kCFAllocatorDefault, kNilOptions ) ) != KERN_SUCCESS )
1014     {
1015         msg_Err( p_this, "IORegistryEntryCreateCFProperties: 0x%08x", ret );
1016         IOObjectRelease( service );
1017         return( NULL );
1018     }
1019
1020     /* get the TOC from the dictionary */
1021     if( ( data = (CFDataRef) CFDictionaryGetValue( properties,
1022                                     CFSTR(kIOCDMediaTOCKey) ) ) != NULL )
1023     {
1024         CFRange range;
1025         CFIndex buf_len;
1026
1027         buf_len = CFDataGetLength( data ) + 1;
1028         range = CFRangeMake( 0, buf_len );
1029
1030         if( ( pTOC = (CDTOC *)malloc( buf_len ) ) != NULL )
1031         {
1032             CFDataGetBytes( data, range, (u_char *)pTOC );
1033         }
1034     }
1035     else
1036     {
1037         msg_Err( p_this, "CFDictionaryGetValue failed" );
1038     }
1039
1040     CFRelease( properties );
1041     IOObjectRelease( service ); 
1042
1043     return( pTOC ); 
1044 }
1045
1046 /****************************************************************************
1047  * darwin_getNumberOfDescriptors: get number of descriptors in TOC 
1048  ****************************************************************************/
1049 static int darwin_getNumberOfDescriptors( CDTOC *pTOC )
1050 {
1051     int i_descriptors;
1052
1053     /* get TOC length */
1054     i_descriptors = pTOC->length;
1055
1056     /* remove the first and last session */
1057     i_descriptors -= ( sizeof(pTOC->sessionFirst) +
1058                        sizeof(pTOC->sessionLast) );
1059
1060     /* divide the length by the size of a single descriptor */
1061     i_descriptors /= sizeof(CDTOCDescriptor);
1062
1063     return( i_descriptors );
1064 }
1065
1066 /****************************************************************************
1067  * darwin_getNumberOfTracks: get number of tracks in TOC 
1068  ****************************************************************************/
1069 static int darwin_getNumberOfTracks( CDTOC *pTOC, int i_descriptors )
1070 {
1071     u_char track;
1072     int i, i_tracks = 0; 
1073     CDTOCDescriptor *pTrackDescriptors;
1074
1075     pTrackDescriptors = pTOC->descriptors;
1076
1077     for( i = i_descriptors; i >= 0; i-- )
1078     {
1079         track = pTrackDescriptors[i].point;
1080
1081         if( track > CD_MAX_TRACK_NO || track < CD_MIN_TRACK_NO )
1082             continue;
1083
1084         i_tracks++; 
1085     }
1086
1087     return( i_tracks );
1088 }
1089 #endif /* SYS_DARWIN */
1090
1091 #if defined( WIN32 )
1092 /*****************************************************************************
1093  * win32_vcd_open: open vcd drive
1094  *****************************************************************************
1095  * Load and use aspi if it is available, otherwise use IOCTLs on WinNT/2K/XP.
1096  *****************************************************************************/
1097 static int win32_vcd_open( vlc_object_t * p_this, const char *psz_dev,
1098                            vcddev_t *p_vcddev )
1099 {
1100     /* Initializations */
1101     p_vcddev->h_device_handle = NULL;
1102     p_vcddev->i_sid = 0;
1103     p_vcddev->hASPI = 0;
1104     p_vcddev->lpSendCommand = 0;
1105
1106     if( WIN_NT )
1107     {
1108         char psz_win32_drive[7];
1109
1110         msg_Dbg( p_this, "using winNT/2K/XP ioctl layer" );
1111
1112         sprintf( psz_win32_drive, "\\\\.\\%c:", psz_dev[0] );
1113
1114         p_vcddev->h_device_handle = CreateFile( psz_win32_drive, GENERIC_READ,
1115                                             FILE_SHARE_READ | FILE_SHARE_WRITE,
1116                                             NULL, OPEN_EXISTING,
1117                                             FILE_FLAG_NO_BUFFERING |
1118                                             FILE_FLAG_RANDOM_ACCESS, NULL );
1119         return (p_vcddev->h_device_handle == NULL) ? -1 : 0;
1120     }
1121     else
1122     {
1123         HMODULE hASPI = NULL;
1124         long (*lpGetSupport)( void ) = NULL;
1125         long (*lpSendCommand)( void* ) = NULL;
1126         DWORD dwSupportInfo;
1127         int i, j, i_hostadapters;
1128         char c_drive = psz_dev[0];
1129
1130         hASPI = LoadLibrary( "wnaspi32.dll" );
1131         if( hASPI != NULL )
1132         {
1133             (FARPROC) lpGetSupport = GetProcAddress( hASPI,
1134                                                      "GetASPI32SupportInfo" );
1135             (FARPROC) lpSendCommand = GetProcAddress( hASPI,
1136                                                       "SendASPI32Command" );
1137         }
1138
1139         if( hASPI == NULL || lpGetSupport == NULL || lpSendCommand == NULL )
1140         {
1141             msg_Dbg( p_this,
1142                      "unable to load aspi or get aspi function pointers" );
1143             if( hASPI ) FreeLibrary( hASPI );
1144             return -1;
1145         }
1146
1147         /* ASPI support seems to be there */
1148
1149         dwSupportInfo = lpGetSupport();
1150
1151         if( HIBYTE( LOWORD ( dwSupportInfo ) ) == SS_NO_ADAPTERS )
1152         {
1153             msg_Dbg( p_this, "no host adapters found (aspi)" );
1154             FreeLibrary( hASPI );
1155             return -1;
1156         }
1157
1158         if( HIBYTE( LOWORD ( dwSupportInfo ) ) != SS_COMP )
1159         {
1160             msg_Dbg( p_this, "unable to initalize aspi layer" );
1161             FreeLibrary( hASPI );
1162             return -1;
1163         }
1164
1165         i_hostadapters = LOBYTE( LOWORD( dwSupportInfo ) );
1166         if( i_hostadapters == 0 )
1167         {
1168             FreeLibrary( hASPI );
1169             return -1;
1170         }
1171
1172         c_drive = c_drive > 'Z' ? c_drive - 'a' : c_drive - 'A';
1173
1174         for( i = 0; i < i_hostadapters; i++ )
1175         {
1176           for( j = 0; j < 15; j++ )
1177           {
1178               struct SRB_GetDiskInfo srbDiskInfo;
1179
1180               srbDiskInfo.SRB_Cmd         = SC_GET_DISK_INFO;
1181               srbDiskInfo.SRB_HaId        = i;
1182               srbDiskInfo.SRB_Flags       = 0;
1183               srbDiskInfo.SRB_Hdr_Rsvd    = 0;
1184               srbDiskInfo.SRB_Target      = j;
1185               srbDiskInfo.SRB_Lun         = 0;
1186
1187               lpSendCommand( (void*) &srbDiskInfo );
1188
1189               if( (srbDiskInfo.SRB_Status == SS_COMP) &&
1190                   (srbDiskInfo.SRB_Int13HDriveInfo == c_drive) )
1191               {
1192                   /* Make sure this is a cdrom device */
1193                   struct SRB_GDEVBlock   srbGDEVBlock;
1194
1195                   memset( &srbGDEVBlock, 0, sizeof(struct SRB_GDEVBlock) );
1196                   srbGDEVBlock.SRB_Cmd    = SC_GET_DEV_TYPE;
1197                   srbGDEVBlock.SRB_HaId   = i;
1198                   srbGDEVBlock.SRB_Target = j;
1199
1200                   lpSendCommand( (void*) &srbGDEVBlock );
1201
1202                   if( ( srbGDEVBlock.SRB_Status == SS_COMP ) &&
1203                       ( srbGDEVBlock.SRB_DeviceType == DTYPE_CDROM ) )
1204                   {
1205                       p_vcddev->i_sid = MAKEWORD( i, j );
1206                       p_vcddev->hASPI = (long)hASPI;
1207                       p_vcddev->lpSendCommand = lpSendCommand;
1208                       msg_Dbg( p_this, "using aspi layer" );
1209
1210                       return 0;
1211                   }
1212                   else
1213                   {
1214                       FreeLibrary( hASPI );
1215                       msg_Dbg( p_this, "%c: is not a cdrom drive",
1216                                psz_dev[0] );
1217                       return -1;
1218                   }
1219               }
1220           }
1221         }
1222
1223         FreeLibrary( hASPI );
1224         msg_Dbg( p_this, "unable to get haid and target (aspi)" );
1225
1226     }
1227
1228     return -1;
1229 }
1230
1231 #endif /* WIN32 */