]> git.sesse.net Git - vlc/blob - extras/libdvdcss/libdvdcss.c
ade73a0ca823b1c41cd3683fef291536365e5a9a
[vlc] / extras / libdvdcss / libdvdcss.c
1 /*****************************************************************************
2  * libdvdcss.c: DVD reading library.
3  *****************************************************************************
4  * Copyright (C) 1998-2001 VideoLAN
5  * $Id: libdvdcss.c,v 1.12 2001/07/30 00:53:04 sam Exp $
6  *
7  * Authors: Stéphane Borel <stef@via.ecp.fr>
8  *          Samuel Hocevar <sam@zoy.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  * 
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include "defs.h"
29
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <sys/types.h>
33 #include <sys/stat.h>
34 #include <fcntl.h>
35
36 #ifdef HAVE_UNISTD_H
37 #   include <unistd.h>
38 #endif
39
40 #if defined( WIN32 )
41 #   include <io.h>                                                 /* read() */
42 #else
43 #   include <sys/uio.h>                                      /* struct iovec */
44 #endif
45
46 #include "config.h"
47 #include "common.h"
48
49 #if defined( WIN32 )
50 #   include "input_iovec.h"
51 #endif
52
53 #include "videolan/dvdcss.h"
54 #include "libdvdcss.h"
55 #include "ioctl.h"
56
57 /*****************************************************************************
58  * Local prototypes
59  *****************************************************************************/
60 static int _dvdcss_open  ( dvdcss_handle, char *psz_target );
61 static int _dvdcss_close ( dvdcss_handle );
62 static int _dvdcss_seek  ( dvdcss_handle, int i_blocks );
63 static int _dvdcss_read  ( dvdcss_handle, void *p_buffer, int i_blocks );
64 static int _dvdcss_readv ( dvdcss_handle, struct iovec *p_iovec, int i_blocks );
65
66 /*****************************************************************************
67  * Local prototypes, win32 specific
68  *****************************************************************************/
69 #if defined( WIN32 )
70 static int _win32_dvdcss_readv  ( int i_fd, struct iovec *p_iovec,
71                                   int i_num_buffers, char *p_tmp_buffer );
72 static int _win32_dvdcss_aopen  ( char c_drive, dvdcss_handle dvdcss );
73 static int _win32_dvdcss_aclose ( int i_fd );
74 static int _win32_dvdcss_aseek  ( int i_fd, int i_blocks, int i_method );
75 static int _win32_dvdcss_aread  ( int i_fd, void *p_data, int i_blocks );
76 #endif
77
78 /*****************************************************************************
79  * dvdcss_open: initialize library, open a DVD device, crack CSS key
80  *****************************************************************************/
81 extern dvdcss_handle dvdcss_open ( char *psz_target, int i_flags )
82 {
83     int i_ret;
84
85     dvdcss_handle dvdcss;
86
87     /* Allocate the library structure */
88     dvdcss = malloc( sizeof( struct dvdcss_s ) );
89     if( dvdcss == NULL )
90     {
91         if( ! (i_flags & DVDCSS_INIT_QUIET) )
92         {
93             DVDCSS_ERROR( "could not initialize library" );
94         }
95
96         return NULL;
97     }
98
99     /* Initialize structure */
100     dvdcss->p_titles = NULL;
101     dvdcss->b_debug = i_flags & DVDCSS_INIT_DEBUG;
102     dvdcss->b_errors = !(i_flags & DVDCSS_INIT_QUIET);
103     dvdcss->psz_error = "no error";
104
105     i_ret = _dvdcss_open( dvdcss, psz_target );
106     if( i_ret < 0 )
107     {
108         free( dvdcss );
109         return NULL;
110     }
111
112     i_ret = CSSTest( dvdcss );
113     if( i_ret < 0 )
114     {
115         _dvdcss_error( dvdcss, "css test failed" );
116         _dvdcss_close( dvdcss );
117         free( dvdcss );
118         return NULL;
119     }
120
121     dvdcss->b_encrypted = i_ret;
122
123     /* If drive is encrypted, crack its key */
124     if( dvdcss->b_encrypted )
125     {
126         i_ret = CSSInit( dvdcss );
127
128         if( i_ret < 0 )
129         {
130             _dvdcss_close( dvdcss );
131             free( dvdcss );
132             return NULL;
133         }
134     }
135
136     return dvdcss;
137 }
138
139 /*****************************************************************************
140  * dvdcss_error: return the last libdvdcss error message
141  *****************************************************************************/
142 extern char * dvdcss_error ( dvdcss_handle dvdcss )
143 {
144     return dvdcss->psz_error;
145 }
146
147 /*****************************************************************************
148  * dvdcss_seek: seek into the device
149  *****************************************************************************/
150 extern int dvdcss_seek ( dvdcss_handle dvdcss, int i_blocks )
151 {
152     return _dvdcss_seek( dvdcss, i_blocks );
153 }
154
155 /*****************************************************************************
156  * dvdcss_title: crack the current title key if needed
157  *****************************************************************************/
158 extern int dvdcss_title ( dvdcss_handle dvdcss, int i_block )
159 {
160     dvd_title_t *p_title;
161     dvd_key_t p_key;
162     int i_ret;
163
164     if( ! dvdcss->b_encrypted )
165     {
166         return 0;
167     }
168
169     //fprintf( stderr, "looking for a key for offset %i\n", i_block );
170
171     /* Check if we've already cracked this key */
172     p_title = dvdcss->p_titles;
173     while( p_title != NULL
174             && p_title->p_next != NULL
175             && p_title->p_next->i_startlb <= i_block )
176     {
177         p_title = p_title->p_next;
178     }
179
180     if( p_title != NULL
181          && p_title->i_startlb == i_block )
182     {
183         /* We've already cracked this key, nothing to do */
184         return 0;
185     }
186
187     /* Crack CSS title key for current VTS */
188     i_ret = CSSGetKey( dvdcss, i_block, p_key );
189
190     if( i_ret < 0 )
191     {
192         _dvdcss_error( dvdcss, "fatal error in vts css key" );
193         return i_ret;
194     }
195     else if( i_ret > 0 )
196     {
197         _dvdcss_error( dvdcss, "decryption unavailable" );
198         return -1;
199     }
200
201     //fprintf( stderr, "cracked key is %.2x %.2x %.2x %.2x %.2x\n",
202     //         p_key[0], p_key[1], p_key[2], p_key[3], p_key[4] );
203
204     /* Add key to keytable if it isn't empty */
205     if( p_key[0] | p_key[1] | p_key[2] | p_key[3] | p_key[4] )
206     {
207         dvd_title_t *p_newtitle;
208
209         /* Find our spot in the list */
210         p_newtitle = NULL;
211         p_title = dvdcss->p_titles;
212         while( p_title != NULL
213                 && p_title->i_startlb < i_block )
214         {
215             p_newtitle = p_title;
216             p_title = p_title->p_next;
217         }
218
219         /* Save the found title */
220         p_title = p_newtitle;
221
222         /* Write in the new title and its key */
223         p_newtitle = malloc( sizeof( dvd_title_t ) );
224         p_newtitle->i_startlb = i_block;
225         memcpy( p_newtitle->p_key, p_key, KEY_SIZE );
226
227         /* Link the new title, either at the beginning or inside the list */
228         if( p_title == NULL )
229         {
230             dvdcss->p_titles = p_newtitle;
231             p_newtitle->p_next = NULL;
232         }
233         else
234         {
235             p_newtitle->p_next = p_title->p_next;
236             p_title->p_next = p_newtitle;
237         }
238     }
239
240     return 0;
241 }
242
243 /*****************************************************************************
244  * dvdcss_read: read data from the device, decrypt if requested
245  *****************************************************************************/
246 extern int dvdcss_read ( dvdcss_handle dvdcss, void *p_buffer,
247                                                int i_blocks,
248                                                int i_flags )
249 {
250     dvd_title_t *p_title;
251     int i_ret, i_index;
252
253     i_ret = _dvdcss_read( dvdcss, p_buffer, i_blocks );
254
255     if( i_ret <= 0
256          || !dvdcss->b_encrypted
257          || !(i_flags & DVDCSS_READ_DECRYPT) )
258     {
259         return i_ret;
260     }
261
262     /* find our key */
263     p_title = dvdcss->p_titles;
264     while( p_title != NULL
265             && p_title->p_next
266             && p_title->p_next->i_startlb <= dvdcss->i_seekpos )
267     {
268         p_title = p_title->p_next;
269     }
270
271     if( p_title == NULL )
272     {
273         /* no css key found to use, so no decryption to do */
274         return 0;
275     }
276
277     /* Decrypt the blocks we managed to read */
278     for( i_index = i_ret; i_index; i_index-- )
279     {
280         CSSDescrambleSector( p_title->p_key, p_buffer );
281         ((u8*)p_buffer)[0x14] &= 0x8f;
282         (u8*)p_buffer += DVDCSS_BLOCK_SIZE;
283     }
284
285     return i_ret;
286 }
287
288 /*****************************************************************************
289  * dvdcss_readv: read data to an iovec structure, decrypt if reaquested
290  *****************************************************************************/
291 extern int dvdcss_readv ( dvdcss_handle dvdcss, void *p_iovec,
292                                                 int i_blocks,
293                                                 int i_flags )
294 {
295 #define P_IOVEC ((struct iovec*)p_iovec)
296     dvd_title_t *p_title;
297     int i_ret, i_index;
298     void *iov_base;
299     size_t iov_len;
300
301     i_ret = _dvdcss_readv( dvdcss, P_IOVEC, i_blocks );
302
303     if( i_ret <= 0
304          || !dvdcss->b_encrypted
305          || !(i_flags & DVDCSS_READ_DECRYPT) )
306     {
307         return i_ret;
308     }
309
310     /* Find our key */
311     p_title = dvdcss->p_titles;
312     while( p_title != NULL
313             && p_title->p_next != NULL
314             && p_title->p_next->i_startlb <= dvdcss->i_seekpos )
315     {
316         p_title = p_title->p_next;
317     }
318
319     if( p_title == NULL )
320     {
321         /* no css key found to use, so no decryption to do */
322         return 0;
323     }
324
325     /* Initialize loop for decryption */
326     iov_base = P_IOVEC->iov_base;
327     iov_len = P_IOVEC->iov_len;
328
329     /* Decrypt the blocks we managed to read */
330     for( i_index = i_ret; i_index; i_index-- )
331     {
332         /* Check that iov_len is a multiple of 2048 */
333         if( iov_len & 0x7ff )
334         {
335             return -1;
336         }
337
338         while( iov_len == 0 )
339         {
340             P_IOVEC++;
341             iov_base = P_IOVEC->iov_base;
342             iov_len = P_IOVEC->iov_len;
343         }
344
345         CSSDescrambleSector( p_title->p_key, iov_base );
346         ((u8*)iov_base)[0x14] &= 0x8f;
347
348         (u8*)iov_base += DVDCSS_BLOCK_SIZE;
349         (u8*)iov_len -= DVDCSS_BLOCK_SIZE;
350     }
351
352     return i_ret;
353 #undef P_IOVEC
354 }
355
356 /*****************************************************************************
357  * dvdcss_close: close the DVD device and clean up the library
358  *****************************************************************************/
359 extern int dvdcss_close ( dvdcss_handle dvdcss )
360 {
361     dvd_title_t *p_title;
362     int i_ret;
363
364     /* Free our list of keys */
365     p_title = dvdcss->p_titles;
366     while( p_title )
367     {
368         dvd_title_t *p_tmptitle = p_title->p_next;
369         free( p_title );
370         p_title = p_tmptitle;
371     }
372
373     i_ret = _dvdcss_close( dvdcss );
374
375     if( i_ret < 0 )
376     {
377         return i_ret;
378     }
379
380     free( dvdcss );
381
382     return 0;
383 }
384
385 /* Following functions are local */
386
387 static int _dvdcss_open ( dvdcss_handle dvdcss, char *psz_target )
388 {
389 #if defined( WIN32 )
390     if( WIN2K )
391     {
392         char psz_dvd[7];
393         _snprintf( psz_dvd, 7, "\\\\.\\%c:", psz_target[0] );
394         (HANDLE) dvdcss->i_fd =
395                 CreateFile( psz_dvd, GENERIC_READ | GENERIC_WRITE,
396                                 FILE_SHARE_READ | FILE_SHARE_WRITE,
397                                 NULL, OPEN_EXISTING, 0, NULL );
398         if( (HANDLE) dvdcss->i_fd == INVALID_HANDLE_VALUE )
399         {
400             _dvdcss_error( dvdcss, "failed opening device" );
401             return -1;
402         }
403     }
404     else
405     {
406         dvdcss->i_fd = _win32_dvdcss_aopen( psz_target[0], dvdcss );
407         if( dvdcss->i_fd == -1 )
408         {
409             _dvdcss_error( dvdcss, "failed opening device" );
410             return -1;
411         }
412     }
413
414     /* initialise readv temporary buffer */
415     dvdcss->p_readv_buffer   = NULL;
416     dvdcss->i_readv_buf_size = 0;
417
418 #else
419     dvdcss->i_fd = open( psz_target, 0 );
420
421     if( dvdcss->i_fd == -1 )
422     {
423         _dvdcss_error( dvdcss, "failed opening device" );
424         return -1;
425     }
426
427 #endif
428
429     return 0;
430 }
431
432 static int _dvdcss_close ( dvdcss_handle dvdcss )
433 {
434 #if defined( WIN32 )
435     if( WIN2K )
436     {
437         CloseHandle( (HANDLE) dvdcss->i_fd );
438     }
439     else
440     {
441         _win32_dvdcss_aclose( dvdcss->i_fd );
442     }
443
444     /* Free readv temporary buffer */
445     if( dvdcss->p_readv_buffer )
446     {
447         free( dvdcss->p_readv_buffer );
448         dvdcss->p_readv_buffer   = NULL;
449         dvdcss->i_readv_buf_size = 0;
450     }
451
452 #else
453     close( dvdcss->i_fd );
454
455 #endif
456
457     return 0;
458 }
459
460 static int _dvdcss_seek ( dvdcss_handle dvdcss, int i_blocks )
461 {
462 #if defined( WIN32 )
463     if( WIN2K )
464     {
465         LARGE_INTEGER li_read;
466
467 #ifndef INVALID_SET_FILE_POINTER
468 #define INVALID_SET_FILE_POINTER ((DWORD)-1)
469 #endif
470
471         li_read.QuadPart = (LONGLONG)i_blocks * DVDCSS_BLOCK_SIZE;
472
473         li_read.LowPart = SetFilePointer( (HANDLE) dvdcss->i_fd,
474                                           li_read.LowPart,
475                                           &li_read.HighPart, FILE_BEGIN );
476         if( (li_read.LowPart == INVALID_SET_FILE_POINTER)
477             && GetLastError() != NO_ERROR)
478         {
479             li_read.QuadPart = -DVDCSS_BLOCK_SIZE;
480         }
481
482         li_read.QuadPart /= DVDCSS_BLOCK_SIZE;
483         return (int)li_read.QuadPart;
484     }
485     else
486     {
487         return ( _win32_dvdcss_aseek( dvdcss->i_fd, i_blocks, SEEK_SET ) );
488     }
489 #else
490     off_t i_read;
491
492     dvdcss->i_seekpos = i_blocks;
493
494     i_read = lseek( dvdcss->i_fd,
495                     (off_t)i_blocks * (off_t)DVDCSS_BLOCK_SIZE, SEEK_SET );
496
497     return i_read / DVDCSS_BLOCK_SIZE;
498 #endif
499
500 }
501
502 static int _dvdcss_read ( dvdcss_handle dvdcss, void *p_buffer, int i_blocks )
503 {
504 #if defined( WIN32 ) 
505     if( WIN2K )
506     {
507         int i_bytes;
508
509         if( !ReadFile( (HANDLE) dvdcss->i_fd, p_buffer,
510                   i_blocks * DVDCSS_BLOCK_SIZE,
511                   (LPDWORD)&i_bytes, NULL ) )
512         {
513             return -1;
514         }
515         return i_bytes / DVDCSS_BLOCK_SIZE;
516     }
517     else
518     {
519         return _win32_dvdcss_aread( dvdcss->i_fd, p_buffer, i_blocks );
520     }
521
522 #else
523     int i_bytes;
524
525     i_bytes = read( dvdcss->i_fd, p_buffer,
526                     (size_t)i_blocks * DVDCSS_BLOCK_SIZE );
527     return i_bytes / DVDCSS_BLOCK_SIZE;
528 #endif
529
530 }
531
532 static int _dvdcss_readv ( dvdcss_handle dvdcss, struct iovec *p_iovec,
533                            int i_blocks )
534 {
535     int i_read;
536
537 #if defined( WIN32 )
538     /* Check the size of the readv temp buffer, just in case we need to
539      * realloc something bigger */
540     if( dvdcss->i_readv_buf_size < i_blocks * DVDCSS_BLOCK_SIZE )
541     {
542         dvdcss->i_readv_buf_size = i_blocks * DVDCSS_BLOCK_SIZE;
543
544         if( dvdcss->p_readv_buffer ) free( dvdcss->p_readv_buffer );
545
546         /* Allocate a buffer which will be used as a temporary storage
547          * for readv */
548         dvdcss->p_readv_buffer = malloc( dvdcss->i_readv_buf_size );
549         if( !dvdcss->p_readv_buffer )
550         {
551             _dvdcss_error( dvdcss, " failed (readv)" );
552             return -1;
553         }
554     }
555
556     i_read = _win32_dvdcss_readv( dvdcss->i_fd, p_iovec, i_blocks,
557                                   dvdcss->p_readv_buffer );
558     return i_read;
559
560 #else
561     i_read = readv( dvdcss->i_fd, p_iovec, i_blocks );
562     return i_read / DVDCSS_BLOCK_SIZE;
563
564 #endif
565 }
566
567
568 #if defined( WIN32 )
569
570 /*****************************************************************************
571  * _win32_dvdcss_readv: vectored read using ReadFile for Win2K and
572  *                      _win32_dvdcss_aread for win9x
573  *****************************************************************************/
574 static int _win32_dvdcss_readv( int i_fd, struct iovec *p_iovec,
575                                 int i_num_buffers, char *p_tmp_buffer )
576 {
577     int i_index;
578     int i_blocks, i_blocks_total = 0;
579
580     for( i_index = i_num_buffers; i_index; i_index-- )
581     {
582         i_blocks_total += p_iovec[i_index-1].iov_len; 
583     }
584
585     if( i_blocks_total <= 0 ) return 0;
586
587     i_blocks_total /= DVDCSS_BLOCK_SIZE;
588
589     if( WIN2K )
590     {
591         unsigned long int i_bytes;
592         if( !ReadFile( (HANDLE)i_fd, p_tmp_buffer,
593                        i_blocks_total * DVDCSS_BLOCK_SIZE, &i_bytes, NULL ) )
594         {
595             return -1;
596             /* The read failed... too bad.
597                As in the posix spec the file postition is left
598                unspecified after a failure */
599         }
600         i_blocks = i_bytes / DVDCSS_BLOCK_SIZE;
601     }
602     else /* Win9x */
603     {
604         i_blocks = _win32_dvdcss_aread( i_fd, p_tmp_buffer, i_blocks_total );
605         if( i_blocks < 0 )
606         {
607             return -1;  /* idem */
608         }
609     }
610
611     /* We just have to copy the content of the temp buffer into the iovecs */
612     i_index = 0;
613     i_blocks_total = i_blocks;
614     while( i_blocks_total > 0 )
615     {
616         memcpy( p_iovec[i_index].iov_base,
617                 &p_tmp_buffer[(i_blocks - i_blocks_total) * DVDCSS_BLOCK_SIZE],
618                 p_iovec[i_index].iov_len );
619         /* if we read less blocks than asked, we'll just end up copying
620            garbage, this isn't an issue as we return the number of
621            blocks actually read */
622         i_blocks_total -= ( p_iovec[i_index].iov_len / DVDCSS_BLOCK_SIZE );
623         i_index++;
624     } 
625
626     return i_blocks;
627 }
628
629 /*****************************************************************************
630  * _win32_dvdcss_aopen: open dvd drive (load aspi and init w32_aspidev
631  *                      structure)
632  *****************************************************************************/
633 static int _win32_dvdcss_aopen( char c_drive, dvdcss_handle dvdcss )
634 {
635     HMODULE hASPI;
636     DWORD dwSupportInfo;
637     struct w32_aspidev *fd;
638     int i, j, i_hostadapters;
639     long (*lpGetSupport)( void );
640     long (*lpSendCommand)( void* );
641      
642     hASPI = LoadLibrary( "wnaspi32.dll" );
643     if( hASPI == NULL )
644     {
645         _dvdcss_error( dvdcss, "unable to load wnaspi32.dll" );
646         return -1;
647     }
648
649     (FARPROC) lpGetSupport = GetProcAddress( hASPI, "GetASPI32SupportInfo" );
650     (FARPROC) lpSendCommand = GetProcAddress( hASPI, "SendASPI32Command" );
651  
652     if(lpGetSupport == NULL || lpSendCommand == NULL )
653     {
654         _dvdcss_debug( dvdcss, "unable to get aspi function pointers" );
655         FreeLibrary( hASPI );
656         return -1;
657     }
658
659     dwSupportInfo = lpGetSupport();
660
661     if( HIBYTE( LOWORD ( dwSupportInfo ) ) == SS_NO_ADAPTERS )
662     {
663         _dvdcss_debug( dvdcss, "no host adapters found (aspi)" );
664         FreeLibrary( hASPI );
665         return -1;
666     }
667
668     if( HIBYTE( LOWORD ( dwSupportInfo ) ) != SS_COMP )
669     {
670         _dvdcss_error( dvdcss, "unable to initalize aspi layer" );
671         FreeLibrary( hASPI );
672         return -1;
673     }
674
675     i_hostadapters = LOBYTE( LOWORD( dwSupportInfo ) );
676     if( i_hostadapters == 0 )
677     {
678         FreeLibrary( hASPI );
679         return -1;
680     }
681
682     fd = malloc( sizeof( struct w32_aspidev ) );
683     if( fd == NULL )
684     {
685         FreeLibrary( hASPI );
686         return -1;
687     }
688
689     fd->i_blocks = 0;
690     fd->hASPI = (long) hASPI;
691     fd->lpSendCommand = lpSendCommand;
692
693     c_drive = c_drive > 'Z' ? c_drive - 'a' : c_drive - 'A';
694
695     for( i = 0; i < i_hostadapters; i++ )
696     {
697         for( j = 0; j < 15; j++ )
698         {
699             struct SRB_GetDiskInfo srbDiskInfo;
700
701             srbDiskInfo.SRB_Cmd         = SC_GET_DISK_INFO;
702             srbDiskInfo.SRB_HaId        = i;
703             srbDiskInfo.SRB_Flags       = 0;
704             srbDiskInfo.SRB_Hdr_Rsvd    = 0;
705             srbDiskInfo.SRB_Target      = j;
706             srbDiskInfo.SRB_Lun         = 0;
707
708             lpSendCommand( (void*) &srbDiskInfo );
709
710             if( (srbDiskInfo.SRB_Status == SS_COMP) &&
711                 (srbDiskInfo.SRB_Int13HDriveInfo == c_drive) )
712             {
713                 fd->i_sid = MAKEWORD( i, j );
714                 return (int) fd;
715             }
716         }
717     }
718
719     free( (void*) fd );
720     FreeLibrary( hASPI );
721     _dvdcss_debug( dvdcss, "unable to get haid and target (aspi)" );
722     return( -1 );        
723 }
724
725 /*****************************************************************************
726  * _win32_dvdcss_aclose: close dvd drive (unload aspi and free w32_aspidev
727  *                       structure)
728  *****************************************************************************/
729 static int _win32_dvdcss_aclose( int i_fd )
730 {
731     struct w32_aspidev *fd = (struct w32_aspidev *) i_fd;
732
733     FreeLibrary( (HMODULE) fd->hASPI );
734     free( (void*) i_fd );
735
736     return 0;
737 }
738
739 /*****************************************************************************
740  * _win32_dvdcss_aseek: aspi version of _dvdcss_seek
741  * 
742  * returns the number of blocks read.
743  *****************************************************************************/
744 static int _win32_dvdcss_aseek( int i_fd, int i_blocks, int i_method )
745 {
746     int i_old_blocks;
747     char sz_buf[ DVDCSS_BLOCK_SIZE ];
748     struct w32_aspidev *fd = (struct w32_aspidev *) i_fd;
749     
750     i_old_blocks = fd->i_blocks;
751     fd->i_blocks = i_blocks;
752
753     if( _win32_dvdcss_aread( i_fd, sz_buf, 1 ) == -1 )
754     {
755         fd->i_blocks = i_old_blocks;
756         return -1;
757     }
758
759     (fd->i_blocks)--;
760
761     return fd->i_blocks;
762 }
763
764 /*****************************************************************************
765  * _win32_dvdcss_aread: aspi version of _dvdcss_read
766  *
767  * returns the number of blocks read.
768  *****************************************************************************/
769 static int _win32_dvdcss_aread( int i_fd, void *p_data, int i_blocks )
770 {
771     HANDLE hEvent;
772     struct SRB_ExecSCSICmd ssc;
773     struct w32_aspidev *fd = (struct w32_aspidev *) i_fd;
774
775     /* Create the transfer completion event */
776     hEvent = CreateEvent( NULL, TRUE, FALSE, NULL );
777     if( hEvent == NULL )
778     {
779         return -1;
780     }
781
782     memset( &ssc, 0, sizeof( ssc ) );
783
784     ssc.SRB_Cmd         = SC_EXEC_SCSI_CMD;
785     ssc.SRB_Flags       = SRB_DIR_IN | SRB_EVENT_NOTIFY;
786     ssc.SRB_HaId        = LOBYTE( fd->i_sid );
787     ssc.SRB_Target      = HIBYTE( fd->i_sid );
788     ssc.SRB_SenseLen    = SENSE_LEN;
789     
790     ssc.SRB_PostProc = (LPVOID) hEvent;
791     ssc.SRB_BufPointer  = p_data;
792     ssc.SRB_CDBLen      = 12;
793     
794     ssc.CDBByte[0]      = 0xA8; /* RAW */
795     ssc.CDBByte[2]      = (UCHAR) (fd->i_blocks >> 24);
796     ssc.CDBByte[3]      = (UCHAR) (fd->i_blocks >> 16) & 0xff;
797     ssc.CDBByte[4]      = (UCHAR) (fd->i_blocks >> 8) & 0xff;
798     ssc.CDBByte[5]      = (UCHAR) (fd->i_blocks) & 0xff;
799     
800     /* We have to break down the reads into 64kb pieces (ASPI restriction) */
801     if( i_blocks > 32 )
802     {
803         ssc.SRB_BufLen = 32 * DVDCSS_BLOCK_SIZE;
804         ssc.CDBByte[9] = 32;
805         fd->i_blocks  += 32;
806
807         /* Initiate transfer */  
808         ResetEvent( hEvent );
809         fd->lpSendCommand( (void*) &ssc );
810
811         /* transfer the next 64kb (_win32_dvdcss_aread is called recursively)
812          * We need to check the status of the read on return */
813         if( _win32_dvdcss_aread( i_fd, (u8*) p_data + 32 * DVDCSS_BLOCK_SIZE,
814                                  i_blocks - 32) < 0 )
815         {
816             return -1;
817         }
818     }
819     else
820     {
821         /* This is the last transfer */
822         ssc.SRB_BufLen   = i_blocks * DVDCSS_BLOCK_SIZE;
823         ssc.CDBByte[9]   = (UCHAR) i_blocks;
824         fd->i_blocks += i_blocks;
825
826         /* Initiate transfer */  
827         ResetEvent( hEvent );
828         fd->lpSendCommand( (void*) &ssc );
829
830     }
831
832     /* If the command has still not been processed, wait until it's finished */
833     if( ssc.SRB_Status == SS_PENDING )
834     {
835         WaitForSingleObject( hEvent, INFINITE );
836     }
837     CloseHandle( hEvent );
838
839     /* check that the transfer went as planned */
840     if( ssc.SRB_Status != SS_COMP )
841     {
842       return -1;
843     }
844
845     return i_blocks;
846 }
847
848 #endif
849