/* * Copyright (c) 1998-2012 Apple Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this * file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_LICENSE_HEADER_END@ */ #ifndef _IODVDMEDIABSDCLIENT_H #define _IODVDMEDIABSDCLIENT_H #include #include /* * Definitions * * ioctl description * ---------------------------- ------------------------------------------------ * DKIOCDVDREADSTRUCTURE see IODVDMedia::readStructure() in IODVDMedia.h * * DKIOCDVDREADDISCINFO see IODVDMedia::readDiscInfo() in IODVDMedia.h * DKIOCDVDREADRZONEINFO see IODVDMedia::readRZoneInfo() in IODVDMedia.h * * DKIOCDVDREPORTKEY see IODVDMedia::reportKey() in IODVDMedia.h * DKIOCDVDSENDKEY see IODVDMedia::sendKey() in IODVDMedia.h * * DKIOCDVDGETSPEED see IODVDMedia::getSpeed() in IODVDMedia.h * DKIOCDVDSETSPEED see IODVDMedia::setSpeed() in IODVDMedia.h * * in /System/Library/Frameworks/Kernel.framework/Headers/IOKit/storage/ */ typedef struct { uint8_t format; uint8_t reserved0008[3]; /* reserved, clear to zero */ uint32_t address; uint8_t grantID; uint8_t layer; #ifdef __LP64__ uint8_t reserved0080[4]; /* reserved, clear to zero */ #endif /* __LP64__ */ uint16_t bufferLength; void * buffer; } dk_dvd_read_structure_t; typedef struct { uint8_t format; uint8_t keyClass; uint8_t reserved0016[2]; /* reserved, clear to zero */ uint32_t address; uint8_t grantID; #ifdef __LP64__ uint8_t reserved0072[5]; /* reserved, clear to zero */ #else /* !__LP64__ */ uint8_t reserved0072[1]; /* reserved, clear to zero */ #endif /* !__LP64__ */ uint16_t bufferLength; void * buffer; } dk_dvd_report_key_t; typedef struct { uint8_t format; uint8_t keyClass; uint8_t reserved0016[6]; /* reserved, clear to zero */ uint8_t grantID; #ifdef __LP64__ uint8_t reserved0072[5]; /* reserved, clear to zero */ #else /* !__LP64__ */ uint8_t reserved0072[1]; /* reserved, clear to zero */ #endif /* !__LP64__ */ uint16_t bufferLength; void * buffer; } dk_dvd_send_key_t; typedef struct { #ifdef __LP64__ uint8_t reserved0000[14]; /* reserved, clear to zero */ #else /* !__LP64__ */ uint8_t reserved0000[10]; /* reserved, clear to zero */ #endif /* !__LP64__ */ uint16_t bufferLength; /* actual length on return */ void * buffer; } dk_dvd_read_disc_info_t; typedef struct { uint8_t reserved0000[4]; /* reserved, clear to zero */ uint32_t address; uint8_t addressType; #ifdef __LP64__ uint8_t reserved0072[5]; /* reserved, clear to zero */ #else /* !__LP64__ */ uint8_t reserved0072[1]; /* reserved, clear to zero */ #endif /* !__LP64__ */ uint16_t bufferLength; /* actual length on return */ void * buffer; } dk_dvd_read_rzone_info_t; #define DKIOCDVDREADSTRUCTURE _IOW('d', 128, dk_dvd_read_structure_t) #define DKIOCDVDREPORTKEY _IOW('d', 129, dk_dvd_report_key_t) #define DKIOCDVDSENDKEY _IOW('d', 130, dk_dvd_send_key_t) #define DKIOCDVDGETSPEED _IOR('d', 131, uint16_t) #define DKIOCDVDSETSPEED _IOW('d', 131, uint16_t) #define DKIOCDVDREADDISCINFO _IOWR('d', 132, dk_dvd_read_disc_info_t) #define DKIOCDVDREADRZONEINFO _IOWR('d', 133, dk_dvd_read_rzone_info_t) #ifdef KERNEL #ifdef __cplusplus /* * Kernel */ #include #include /* * Class */ class IODVDMediaBSDClient : public IOMediaBSDClient { OSDeclareDefaultStructors(IODVDMediaBSDClient) protected: struct ExpansionData { /* */ }; ExpansionData * _expansionData; public: /* * Obtain this object's provider. We override the superclass's method * to return a more specific subclass of IOService -- IODVDMedia. This * method serves simply as a convenience to subclass developers. */ virtual IODVDMedia * getProvider() const; /* * Process a DVD-specific ioctl. */ virtual int ioctl(dev_t dev, u_long cmd, caddr_t data, int flags, proc_t proc); OSMetaClassDeclareReservedUnused(IODVDMediaBSDClient, 0); OSMetaClassDeclareReservedUnused(IODVDMediaBSDClient, 1); OSMetaClassDeclareReservedUnused(IODVDMediaBSDClient, 2); OSMetaClassDeclareReservedUnused(IODVDMediaBSDClient, 3); OSMetaClassDeclareReservedUnused(IODVDMediaBSDClient, 4); OSMetaClassDeclareReservedUnused(IODVDMediaBSDClient, 5); OSMetaClassDeclareReservedUnused(IODVDMediaBSDClient, 6); OSMetaClassDeclareReservedUnused(IODVDMediaBSDClient, 7); }; #endif /* __cplusplus */ #endif /* KERNEL */ #endif /* !_IODVDMEDIABSDCLIENT_H */