1 /*****************************************************************************
2 * ioctl.h: DVD ioctl replacement function
3 *****************************************************************************
4 * Copyright (C) 1999-2001 VideoLAN
7 * Authors: Sam Hocevar <sam@zoy.org>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
22 *****************************************************************************/
24 int ioctl_ReadCopyright ( int, int, int * );
25 int ioctl_ReadDiscKey ( int, int *, uint8_t * );
26 int ioctl_ReadTitleKey ( int, int *, int, uint8_t * );
27 int ioctl_ReportAgid ( int, int * );
28 int ioctl_ReportChallenge ( int, int *, uint8_t * );
29 int ioctl_ReportKey1 ( int, int *, uint8_t * );
30 int ioctl_ReportASF ( int, int *, int * );
31 int ioctl_InvalidateAgid ( int, int * );
32 int ioctl_SendChallenge ( int, int *, uint8_t * );
33 int ioctl_SendKey2 ( int, int *, uint8_t * );
34 int ioctl_ReportRPC ( int, int *, int *, int * );
35 int ioctl_SendRPC ( int, int );
37 #define DVD_KEY_SIZE 5
38 #define DVD_CHALLENGE_SIZE 10
39 #define DVD_DISCKEY_SIZE 2048
41 /*****************************************************************************
42 * Common macro, BeOS specific
43 *****************************************************************************/
44 #if defined( SYS_BEOS )
45 #define INIT_RDC( TYPE, SIZE ) \
46 raw_device_command rdc; \
47 uint8_t p_buffer[ (SIZE)+1 ]; \
48 memset( &rdc, 0, sizeof( raw_device_command ) ); \
49 rdc.data = (char *)p_buffer; \
50 rdc.data_length = (SIZE); \
51 BeInitRDC( &rdc, (TYPE) );
54 /*****************************************************************************
55 * Common macro, HP-UX specific
56 *****************************************************************************/
57 #if defined( HPUX_SCTL_IO )
58 #define INIT_SCTL_IO( TYPE, SIZE ) \
59 struct sctl_io sctl_io; \
60 uint8_t p_buffer[ (SIZE)+1 ]; \
61 memset( &sctl_io, 0, sizeof( sctl_io ) ); \
62 sctl_io.data = (void *)p_buffer; \
63 sctl_io.data_length = (SIZE); \
64 HPUXInitSCTL( &sctl_io, (TYPE) );
67 /*****************************************************************************
68 * Common macro, Solaris specific
69 *****************************************************************************/
70 #if defined( SOLARIS_USCSI )
71 #define USCSI_TIMEOUT( SC, TO ) ( (SC)->uscsi_timeout = (TO) )
72 #define USCSI_RESID( SC ) ( (SC)->uscsi_resid )
73 #define INIT_USCSI( TYPE, SIZE ) \
74 struct uscsi_cmd sc; \
75 union scsi_cdb rs_cdb; \
76 uint8_t p_buffer[ (SIZE)+1 ]; \
77 memset( &sc, 0, sizeof( struct uscsi_cmd ) ); \
78 sc.uscsi_cdb = (caddr_t)&rs_cdb; \
79 sc.uscsi_bufaddr = (caddr_t)p_buffer; \
80 sc.uscsi_buflen = (SIZE); \
81 SolarisInitUSCSI( &sc, (TYPE) );
84 /*****************************************************************************
85 * Common macro, Darwin specific
86 *****************************************************************************/
87 #if defined( DARWIN_DVD_IOCTL )
88 #define INIT_DVDIOCTL( DKDVD_TYPE, BUFFER_TYPE, FORMAT ) \
91 memset( &dvd, 0, sizeof(dvd) ); \
92 memset( &dvdbs, 0, sizeof(dvdbs) ); \
93 dvd.format = FORMAT; \
94 dvd.buffer = &dvdbs; \
95 dvd.bufferLength = sizeof(dvdbs);
98 /*****************************************************************************
99 * Common macro, win32 specific
100 *****************************************************************************/
102 #define INIT_SPTD( TYPE, SIZE ) \
104 SCSI_PASS_THROUGH_DIRECT sptd; \
105 uint8_t p_buffer[ (SIZE) ]; \
106 memset( &sptd, 0, sizeof( SCSI_PASS_THROUGH_DIRECT ) ); \
107 sptd.Length = sizeof( SCSI_PASS_THROUGH_DIRECT ); \
108 sptd.DataBuffer = p_buffer; \
109 sptd.DataTransferLength = (SIZE); \
110 WinInitSPTD( &sptd, (TYPE) );
111 #define SEND_SPTD( DEV, SPTD, TMP ) \
112 (DeviceIoControl( (HANDLE)(DEV), IOCTL_SCSI_PASS_THROUGH_DIRECT, \
113 (SPTD), sizeof( SCSI_PASS_THROUGH_DIRECT ), \
114 (SPTD), sizeof( SCSI_PASS_THROUGH_DIRECT ), \
115 (TMP), NULL ) ? 0 : -1)
116 #define INIT_SSC( TYPE, SIZE ) \
117 struct SRB_ExecSCSICmd ssc; \
118 uint8_t p_buffer[ (SIZE)+1 ]; \
119 memset( &ssc, 0, sizeof( struct SRB_ExecSCSICmd ) ); \
120 ssc.SRB_BufPointer = (char *)p_buffer; \
121 ssc.SRB_BufLen = (SIZE); \
122 WinInitSSC( &ssc, (TYPE) );
125 /*****************************************************************************
126 * Common macro, QNX specific
127 *****************************************************************************/
128 #if defined( __QNXNTO__ )
129 #define INIT_CPT( TYPE, SIZE ) \
130 CAM_PASS_THRU * p_cpt; \
131 uint8_t * p_buffer; \
132 int structSize = sizeof( CAM_PASS_THRU ) + (SIZE); \
133 p_cpt = (CAM_PASS_THRU *) malloc ( structSize ); \
134 p_buffer = (uint8_t *) p_cpt + sizeof( CAM_PASS_THRU ); \
135 memset( p_cpt, 0, structSize ); \
136 p_cpt->cam_data_ptr = sizeof( CAM_PASS_THRU ); \
137 p_cpt->cam_dxfer_len = (SIZE); \
138 QNXInitCPT( p_cpt, (TYPE) );
141 /*****************************************************************************
142 * Common macro, OS2 specific
143 *****************************************************************************/
144 #if defined( SYS_OS2 )
145 #define INIT_SSC( TYPE, SIZE ) \
146 struct OS2_ExecSCSICmd sdc; \
147 uint8_t p_buffer[ (SIZE)+1 ]; \
148 unsigned long ulParamLen; \
149 unsigned long ulDataLen; \
150 memset( &sdc, 0, sizeof( OS2_ExecSCSICmd ) ); \
151 memset( &p_buffer, 0, SIZE ); \
152 sdc.data_length = (SIZE); \
153 ulParamLen = sizeof(sdc); \
154 OS2InitSDC( &sdc, (TYPE) )
157 /*****************************************************************************
158 * Additional types, OpenBSD specific
159 *****************************************************************************/
160 #if defined( HAVE_OPENBSD_DVD_STRUCT )
161 typedef union dvd_struct dvd_struct
;
162 typedef union dvd_authinfo dvd_authinfo
;
165 /*****************************************************************************
166 * Various DVD I/O tables
167 *****************************************************************************/
168 #if defined( SYS_BEOS ) || defined( WIN32 ) || defined ( SOLARIS_USCSI ) || defined ( HPUX_SCTL_IO ) || defined ( __QNXNTO__ ) || defined ( SYS_OS2 )
169 /* The generic packet command opcodes for CD/DVD Logical Units,
170 * From Table 57 of the SFF8090 Ver. 3 (Mt. Fuji) draft standard. */
171 # define GPCMD_READ_DVD_STRUCTURE 0xad
172 # define GPCMD_REPORT_KEY 0xa4
173 # define GPCMD_SEND_KEY 0xa3
174 /* DVD struct types */
175 # define DVD_STRUCT_PHYSICAL 0x00
176 # define DVD_STRUCT_COPYRIGHT 0x01
177 # define DVD_STRUCT_DISCKEY 0x02
178 # define DVD_STRUCT_BCA 0x03
179 # define DVD_STRUCT_MANUFACT 0x04
181 # define DVD_REPORT_AGID 0x00
182 # define DVD_REPORT_CHALLENGE 0x01
183 # define DVD_SEND_CHALLENGE 0x01
184 # define DVD_REPORT_KEY1 0x02
185 # define DVD_SEND_KEY2 0x03
186 # define DVD_REPORT_TITLE_KEY 0x04
187 # define DVD_REPORT_ASF 0x05
188 # define DVD_SEND_RPC 0x06
189 # define DVD_REPORT_RPC 0x08
190 # define DVD_INVALIDATE_AGID 0x3f
193 /*****************************************************************************
194 * win32 ioctl specific
195 *****************************************************************************/
198 #define WIN32_LEAN_AND_MEAN
201 #define IOCTL_DVD_START_SESSION CTL_CODE(FILE_DEVICE_DVD, 0x0400, METHOD_BUFFERED, FILE_READ_ACCESS)
202 #define IOCTL_DVD_READ_KEY CTL_CODE(FILE_DEVICE_DVD, 0x0401, METHOD_BUFFERED, FILE_READ_ACCESS)
203 #define IOCTL_DVD_SEND_KEY CTL_CODE(FILE_DEVICE_DVD, 0x0402, METHOD_BUFFERED, FILE_READ_ACCESS)
204 #define IOCTL_DVD_END_SESSION CTL_CODE(FILE_DEVICE_DVD, 0x0403, METHOD_BUFFERED, FILE_READ_ACCESS)
205 #define IOCTL_DVD_GET_REGION CTL_CODE(FILE_DEVICE_DVD, 0x0405, METHOD_BUFFERED, FILE_READ_ACCESS)
206 #define IOCTL_DVD_SEND_KEY2 CTL_CODE(FILE_DEVICE_DVD, 0x0406, METHOD_BUFFERED, FILE_READ_ACCESS | FILE_WRITE_ACCESS)
207 #define IOCTL_DVD_READ_STRUCTURE CTL_CODE(FILE_DEVICE_DVD, 0x0450, METHOD_BUFFERED, FILE_READ_ACCESS)
208 #define IOCTL_SCSI_PASS_THROUGH_DIRECT CTL_CODE(FILE_DEVICE_CONTROLLER, 0x0405, METHOD_BUFFERED, FILE_READ_ACCESS | FILE_WRITE_ACCESS)
210 #define DVD_CHALLENGE_KEY_LENGTH (12 + sizeof(DVD_COPY_PROTECT_KEY))
211 #define DVD_BUS_KEY_LENGTH (8 + sizeof(DVD_COPY_PROTECT_KEY))
212 #define DVD_TITLE_KEY_LENGTH (8 + sizeof(DVD_COPY_PROTECT_KEY))
213 #define DVD_DISK_KEY_LENGTH (2048 + sizeof(DVD_COPY_PROTECT_KEY))
214 #define DVD_RPC_KEY_LENGTH (sizeof(DVD_RPC_KEY) + sizeof(DVD_COPY_PROTECT_KEY))
215 #define DVD_ASF_LENGTH (sizeof(DVD_ASF) + sizeof(DVD_COPY_PROTECT_KEY))
217 #define DVD_COPYRIGHT_MASK 0x00000040
218 #define DVD_NOT_COPYRIGHTED 0x00000000
219 #define DVD_COPYRIGHTED 0x00000040
221 #define DVD_SECTOR_PROTECT_MASK 0x00000020
222 #define DVD_SECTOR_NOT_PROTECTED 0x00000000
223 #define DVD_SECTOR_PROTECTED 0x00000020
225 #define SCSI_IOCTL_DATA_OUT 0
226 #define SCSI_IOCTL_DATA_IN 1
228 typedef ULONG DVD_SESSION_ID
, *PDVD_SESSION_ID
;
230 typedef enum DVD_STRUCTURE_FORMAT
{
231 DvdPhysicalDescriptor
,
232 DvdCopyrightDescriptor
,
233 DvdDiskKeyDescriptor
,
235 DvdManufacturerDescriptor
,
237 } DVD_STRUCTURE_FORMAT
, *PDVD_STRUCTURE_FORMAT
;
239 typedef struct DVD_READ_STRUCTURE
{
240 LARGE_INTEGER BlockByteOffset
;
241 DVD_STRUCTURE_FORMAT Format
;
242 DVD_SESSION_ID SessionId
;
244 } DVD_READ_STRUCTURE
, *PDVD_READ_STRUCTURE
;
246 typedef struct DVD_COPYRIGHT_DESCRIPTOR
{
247 UCHAR CopyrightProtectionType
;
248 UCHAR RegionManagementInformation
;
250 } DVD_COPYRIGHT_DESCRIPTOR
, *PDVD_COPYRIGHT_DESCRIPTOR
;
254 DvdChallengeKey
= 0x01,
262 DvdInvalidateAGID
= 0x3f
265 typedef struct DVD_COPY_PROTECT_KEY
268 DVD_SESSION_ID SessionId
;
269 DVD_KEY_TYPE KeyType
;
276 ULONG Reserved
; // used for NT alignment
278 LARGE_INTEGER TitleOffset
;
281 } DVD_COPY_PROTECT_KEY
, *PDVD_COPY_PROTECT_KEY
;
283 typedef struct DVD_ASF
288 } DVD_ASF
, * PDVD_ASF
;
290 typedef struct DVD_RPC_KEY
292 UCHAR UserResetsAvailable
:3;
293 UCHAR ManufacturerResetsAvailable
:3;
298 } DVD_RPC_KEY
, * PDVD_RPC_KEY
;
300 typedef struct SCSI_PASS_THROUGH_DIRECT
308 UCHAR SenseInfoLength
;
310 ULONG DataTransferLength
;
313 ULONG SenseInfoOffset
;
315 } SCSI_PASS_THROUGH_DIRECT
, *PSCSI_PASS_THROUGH_DIRECT
;
317 /*****************************************************************************
318 * win32 aspi specific
319 *****************************************************************************/
321 typedef DWORD (CALLBACK
*GETASPI32SUPPORTINFO
)(VOID
);
322 typedef DWORD (CALLBACK
*SENDASPI32COMMAND
)(LPVOID
);
324 #define WIN2K ( GetVersion() < 0x80000000 )
326 #define ASPI_TARGET 0
327 #define DTYPE_CDROM 0x05
329 #define SENSE_LEN 0x0E
330 #define SC_GET_DEV_TYPE 0x01
331 #define SC_EXEC_SCSI_CMD 0x02
332 #define SC_GET_DISK_INFO 0x06
334 #define SS_PENDING 0x00
335 #define SS_NO_ADAPTERS 0xE8
336 #define SRB_DIR_IN 0x08
337 #define SRB_DIR_OUT 0x10
338 #define SRB_EVENT_NOTIFY 0x40
345 SENDASPI32COMMAND lpSendCommand
;
350 struct SRB_GetDiskInfo
352 unsigned char SRB_Cmd
;
353 unsigned char SRB_Status
;
354 unsigned char SRB_HaId
;
355 unsigned char SRB_Flags
;
356 unsigned long SRB_Hdr_Rsvd
;
357 unsigned char SRB_Target
;
358 unsigned char SRB_Lun
;
359 unsigned char SRB_DriveFlags
;
360 unsigned char SRB_Int13HDriveInfo
;
361 unsigned char SRB_Heads
;
362 unsigned char SRB_Sectors
;
363 unsigned char SRB_Rsvd1
[22];
368 unsigned char SRB_Cmd
;
369 unsigned char SRB_Status
;
370 unsigned char SRB_HaId
;
371 unsigned char SRB_Flags
;
372 unsigned long SRB_Hdr_Rsvd
;
373 unsigned char SRB_Target
;
374 unsigned char SRB_Lun
;
375 unsigned char SRB_DeviceType
;
376 unsigned char SRB_Rsvd1
;
379 struct SRB_ExecSCSICmd
381 unsigned char SRB_Cmd
;
382 unsigned char SRB_Status
;
383 unsigned char SRB_HaId
;
384 unsigned char SRB_Flags
;
385 unsigned long SRB_Hdr_Rsvd
;
386 unsigned char SRB_Target
;
387 unsigned char SRB_Lun
;
388 unsigned short SRB_Rsvd1
;
389 unsigned long SRB_BufLen
;
390 unsigned char *SRB_BufPointer
;
391 unsigned char SRB_SenseLen
;
392 unsigned char SRB_CDBLen
;
393 unsigned char SRB_HaStat
;
394 unsigned char SRB_TargStat
;
395 unsigned long *SRB_PostProc
;
396 unsigned char SRB_Rsvd2
[20];
397 unsigned char CDBByte
[16];
398 unsigned char SenseArea
[SENSE_LEN
+2];
405 /*****************************************************************************
407 *****************************************************************************/
408 #if defined( SYS_OS2 )
410 #define CDROMDISK_EXECMD 0x7A
412 #define EX_DIRECTION_IN 0x01
413 #define EX_PLAYING_CHK 0x02
417 struct OS2_ExecSCSICmd
419 unsigned long id_code
; // 'CD01'
420 unsigned short data_length
; // length of the Data Packet
421 unsigned short cmd_length
; // length of the Command Buffer
422 unsigned short flags
; // flags
423 unsigned char command
[16]; // Command Buffer for SCSI command