Sunday, January 20, 2013

CD ROM ACCESS AND TYPES

MORE INFO HERE
http://msdn.microsoft.com/en-us/library/windows/hardware/jj602792(v=vs.85).aspx

All public I/O control codes for drivers of CD-ROM devices use buffered I/O. Consequently, the input or output data for these requests is at Irp->AssociatedIrp.SystemBuffer.Class drivers for CD-ROM devices handle additional public I/O control codes, along with those described in this section. For more information about requirements for storage class drivers, see General Storage I/O Control Codes.


The following topics explain some of the key features of the IOCTL interface:CD-ROM Exclusive AccessCD-ROM Set SpeedCD-ROM Real-Time StreamingACLs and the Device Stack


D-ROM Exclusive Access Mode (Windows Drivers)

Windows Hardware DevelopmentDriversWindows Driver DevelopmentDevice and Driver TechnologiesStorage DevicesDesign GuideCD-ROM DriversCD-ROM Exclusive Access ModeCD-ROM Set SpeedCD-ROM Real-Time StreamingACLs and the Device Stack2 out of 3 rated this helpful - Rate this topicThe CD-ROM exclusive access mechanism (also known as exclusive access mode) enables applications and system components to obtain exclusive access to a CD-ROM device. Applications that require exclusive access to CD-ROM devices include the following examples:Optical media-authoring applicationsSome optical authoring software requires exclusive access to a CD-ROM device to write data without any interruption from other applications. Otherwise, data might be written incorrectly, causing data corruption.Firmware update utilitiesMany manufacturers of CD-ROM devices provide a firmware update utility. If an application sends a command to the device during a firmware update, it might make the device unusable.Without the exclusive access mechanism, the only way for vendors to give these two types of applications exclusive access would be to install a custom filter driver that fails I/O requests from other applications and components, and this approach causes system instability. You should not use filter drivers to obtain exclusive access to CD-ROM devices.To use the exclusive access mechanism, applications must send an IOCTL_CDROM_EXCLUSIVE_ACCESS request to the CD-ROM class driver at PASSIVE_LEVEL IRQL. When the caller makes this request, the caller must provide an identification string in the CallerName member of CDROM_EXCLUSIVE_LOCK. The class driver uses this string to identify the application that has exclusive access.Applications should query for the current state of the device before attempting to lock it. If the device is already locked, the class driver returns the identification string of the current owner of the device. Before locking the device, the caller must open it in read/write access mode. Therefore, the caller must have administrator privileges or permission to open the CD-ROM device in write access mode.Callers that request exclusive access should not open the CD-ROM device by simply sending a create request to the file system driver, because there is no guarantee that the CD-ROM class driver will receive the request. Instead, applications should use the SetupDiXxx routines to enumerate the interfaces for all CD-ROM devices in the system and then open the appropriate device interface.When a caller opens a device by using the drive letter or names like CdRom0 with the access mode set to 0, the file system driver is guaranteed to pass the create request to the CD-ROM class driver. But this guarantee is still not sufficient because the handle that the application obtains by this procedure does not give the caller read/write access to the device.Exclusive access mode has the following characteristics:Only the owner of the exclusive access lock can access the device.The system fails requests for access from other applications.The system processes Plug and Play (PnP) and power I/O request packets (IRPs) in the typical way.Media change notification is disabled for the device.The system fails requests to open the device while it is locked.Other applications that send an IOCTL_STORAGE_QUERY_PROPERTY request to the CD-ROM class driver will receive cached information from the device while it is locked. Specifically, if the STORAGE_QUERY_TYPE is PropertyExistsQuery, the IOCTL will behave the same as it does when the device is not locked. Also, if the STORAGE_QUERY_TYPE is PropertyStandardQuery and the STORAGE_PROPERTY_ID is StorageDeviceProperty or StorageAdapterProperty, the IOCTL returns information cached in the CD-ROM class driver. With other combinations of STORAGE_QUERY_TYPE and STORAGE_PROPERTY_ID, the IOCTL fails with the status value STATUS_ACCESS_DENIED.Other applications that send an IOCTL_CDROM_GET_INQUIRY_DATA request to the CD-ROM class driver receive cached information from the device while it is locked, and also when it is unlocked.The system removes exclusive access to a CD-ROM device when any of the following occurs:The owner of the exclusive access lock sends an IOCTL_CDROM_EXCLUSIVE_ACCESS request to the CD-ROM class driver with the RequestType member of CDROM_EXCLUSIVE_ACCESS set to ExclusiveAccessUnlockDevice.The owner of the exclusive access lock closes the device handle.The application that owns the exclusive access lock terminates.After removing the exclusive access lock on a device, the CD-ROM class driver takes the following actions :Enables media change notification on the device.Sets the DO_VERIFY_VOLUME flag in the device extension, so that the system will remount the device's file system.Forces an update of the device's multimedia capabilities.


No comments:

Post a Comment