2017-05-19 20:28:49 +01:00
// /***************************************************************************
2016-01-11 19:40:58 +00:00
// The Disc Image Chef
// ----------------------------------------------------------------------------
//
// Filename : Pioneer.cs
2016-07-28 18:13:49 +01:00
// Author(s) : Natalia Portillo <claunia@claunia.com>
2016-01-11 19:40:58 +00:00
//
2016-07-28 18:13:49 +01:00
// Component : Pioneer vendor commands.
2016-01-11 19:40:58 +00:00
//
// --[ Description ] ----------------------------------------------------------
//
2016-07-28 18:13:49 +01:00
// Contains vendor commands for Pioneer SCSI devices.
2016-01-11 19:40:58 +00:00
//
// --[ License ] --------------------------------------------------------------
//
2016-07-28 18:13:49 +01:00
// This library is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation; either version 2.1 of the
2016-01-11 19:40:58 +00:00
// License, or (at your option) any later version.
//
2016-07-28 18:13:49 +01:00
// This library is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
2016-01-11 19:40:58 +00:00
//
2016-07-28 18:13:49 +01:00
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
2016-01-11 19:40:58 +00:00
//
// ----------------------------------------------------------------------------
2017-12-19 03:50:57 +00:00
// Copyright © 2011-2018 Natalia Portillo
2016-01-11 19:40:58 +00:00
// ****************************************************************************/
2016-07-28 18:13:49 +01:00
2016-01-11 19:40:58 +00:00
using DiscImageChef.Console ;
namespace DiscImageChef.Devices
{
public partial class Device
{
/// <summary>
/// Sends the Pioneer READ CD-DA command
/// </summary>
/// <returns><c>true</c> if the command failed and <paramref name="senseBuffer"/> contains the sense buffer.</returns>
/// <param name="buffer">Buffer where the Pioneer READ CD-DA response will be stored</param>
/// <param name="senseBuffer">Sense buffer.</param>
/// <param name="timeout">Timeout in seconds.</param>
/// <param name="duration">Duration in milliseconds it took for the device to execute the command.</param>
/// <param name="lba">Start block address.</param>
/// <param name="transferLength">How many blocks to read.</param>
/// <param name="blockSize">Block size.</param>
/// <param name="subchannel">Subchannel selection.</param>
2017-12-19 20:33:03 +00:00
public bool PioneerReadCdDa ( out byte [ ] buffer , out byte [ ] senseBuffer , uint lba , uint blockSize ,
uint transferLength , PioneerSubchannel subchannel , uint timeout ,
out double duration )
2016-01-11 19:40:58 +00:00
{
senseBuffer = new byte [ 32 ] ;
byte [ ] cdb = new byte [ 12 ] ;
cdb [ 0 ] = ( byte ) ScsiCommands . ReadCdDa ;
cdb [ 2 ] = ( byte ) ( ( lba & 0xFF000000 ) > > 24 ) ;
cdb [ 3 ] = ( byte ) ( ( lba & 0xFF0000 ) > > 16 ) ;
cdb [ 4 ] = ( byte ) ( ( lba & 0xFF00 ) > > 8 ) ;
cdb [ 5 ] = ( byte ) ( lba & 0xFF ) ;
cdb [ 7 ] = ( byte ) ( ( transferLength & 0xFF0000 ) > > 16 ) ;
cdb [ 8 ] = ( byte ) ( ( transferLength & 0xFF00 ) > > 8 ) ;
cdb [ 9 ] = ( byte ) ( transferLength & 0xFF ) ;
cdb [ 10 ] = ( byte ) subchannel ;
buffer = new byte [ blockSize * transferLength ] ;
2017-12-21 07:19:46 +00:00
LastError = SendScsiCommand ( cdb , ref buffer , out senseBuffer , timeout , ScsiDirection . In , out duration ,
2017-12-22 03:13:43 +00:00
out bool sense ) ;
2017-12-21 07:19:46 +00:00
Error = LastError ! = 0 ;
2016-01-11 19:40:58 +00:00
2016-01-14 02:46:36 +00:00
DicConsole . DebugWriteLine ( "SCSI Device" , "PIONEER READ CD-DA took {0} ms." , duration ) ;
2016-01-11 19:40:58 +00:00
return sense ;
}
/// <summary>
/// Sends the Pioneer READ CD-DA MSF command
/// </summary>
/// <returns><c>true</c> if the command failed and <paramref name="senseBuffer"/> contains the sense buffer.</returns>
/// <param name="buffer">Buffer where the Pioneer READ CD-DA MSF response will be stored</param>
/// <param name="senseBuffer">Sense buffer.</param>
/// <param name="timeout">Timeout in seconds.</param>
/// <param name="duration">Duration in milliseconds it took for the device to execute the command.</param>
/// <param name="startMsf">Start MM:SS:FF of read encoded as 0x00MMSSFF.</param>
/// <param name="endMsf">End MM:SS:FF of read encoded as 0x00MMSSFF.</param>
/// <param name="blockSize">Block size.</param>
/// <param name="subchannel">Subchannel selection.</param>
2017-12-19 20:33:03 +00:00
public bool PioneerReadCdDaMsf ( out byte [ ] buffer , out byte [ ] senseBuffer , uint startMsf , uint endMsf ,
uint blockSize , PioneerSubchannel subchannel , uint timeout , out double duration )
2016-01-11 19:40:58 +00:00
{
senseBuffer = new byte [ 32 ] ;
byte [ ] cdb = new byte [ 12 ] ;
2017-12-18 17:53:46 +00:00
cdb [ 0 ] = ( byte ) ScsiCommands . ReadCdDaMsf ;
2016-01-11 19:40:58 +00:00
cdb [ 3 ] = ( byte ) ( ( startMsf & 0xFF0000 ) > > 16 ) ;
cdb [ 4 ] = ( byte ) ( ( startMsf & 0xFF00 ) > > 8 ) ;
cdb [ 5 ] = ( byte ) ( startMsf & 0xFF ) ;
cdb [ 7 ] = ( byte ) ( ( endMsf & 0xFF0000 ) > > 16 ) ;
cdb [ 8 ] = ( byte ) ( ( endMsf & 0xFF00 ) > > 8 ) ;
cdb [ 9 ] = ( byte ) ( endMsf & 0xFF ) ;
cdb [ 10 ] = ( byte ) subchannel ;
* DiscImageChef.CommonTypes/MediaTypeFromSCSI.cs:
* DiscImageChef.CommonTypes/DiscImageChef.CommonTypes.csproj:
Added method to calculate MediaType from SCSI parameters
(mode, density, medium type, device type, etc).
* DiscImageChef.Metadata/DeviceReport.cs:
Added command to guess drive and media parameters and output
an XML report of them.
* DiscImageChef/Commands/DeviceReport.cs:
* DiscImageChef.Metadata/DiscImageChef.Metadata.csproj:
Added command to guess drive and media parameters and output
an XML report of them.
* DiscImageChef/Commands/DumpMedia.cs:
Added preliminary command to dump media. Only SCSI for now.
CDs and tapes are not supported. Errors are blalanty
ignored. Options are incomplete. Not yet usable.
* DiscImageChef/Core/Checksum.cs:
* DiscImageChef/Commands/CreateSidecar.cs:
Moved checksum generation to a separate class.
* CICMMetadata:
Added support for ADIP.
* DiscImageChef.CommonTypes/MediaType.cs:
Added parameters of UDO media.
Moved DataPlay outside of Iomega, as it's not from that
manufacturer.
Added missing Exatape media and corrected 160m XL one.
Added SyJet media.
Added all ECMA defined magneto-optical (sectors calculated
from specifications, unchecked).
Added PD media.
Added Imation 320Gb RDX.
Added generic USB flash drives.
* DiscImageChef.Decoders/SCSI/Enums.cs:
Make enumerations public.
* DiscImageChef.Decoders/SCSI/Inquiry.cs:
* DiscImageChef.Devices/Device/Constructor.cs:
Trim space padded strings on SCSI INQUIRY.
* DiscImageChef.Devices/Device/ScsiCommands/MMC.cs:
Added PREVENT ALLOW MEDIUM REMOVAL.
Added START STOP UNIT.
* DiscImageChef.Devices/Device/ScsiCommands/NEC.cs:
Rename NEC methods.
* DiscImageChef.Devices/Device/ScsiCommands/Pioneer.cs:
Corrected Pioneer transfer length calculation.
* DiscImageChef.Devices/Device/ScsiCommands/Plextor.cs:
Renamed Plextor methods.
* DiscImageChef.Devices/Device/ScsiCommands/SPC.cs:
Renamed SSC PREVENT ALLOW MEDIUM REMOVAL to uncollide with
MMC same name but different command.
* DiscImageChef.Devices/DiscImageChef.Devices.csproj:
Set platform target to x86 (does it really matter?).
* DiscImageChef.Devices/Linux/Command.cs:
Reduced allocation for readlink() to current kernel
MAX_PATH.
* DiscImageChef.Devices/Linux/Enums.cs:
Modified Linux ioctl to 32-bit. Works on 64-bit also. Solves
commands not working on 32-bit environments.
* DiscImageChef.DiscImages/ZZZRawImage.cs:
Changed ECMA-184 and ECMA-183 enums.
* DiscImageChef.Metadata/Dimensions.cs:
Added all ECMA defined magneto-opticals.
Added PD media.
Added 320Gb RDX.
Corrected Exatape 160m XL.
Added Exatape 22m and 28m.
* DiscImageChef.Metadata/MediaType.cs:
Added 356mm magneto-optical media.
Changed ECMA-184 and ECMA-183 enums.
Added USB generic flash drive.
* DiscImageChef/Commands/DeviceInfo.cs:
Corrected SCSI INQUIRY naming.
Corrected SCSI MODE SENSE (6) parameters.
Reduced SCSI MODE SENSE timeout, some devices just get stuck
with unsupported MODE SENSE commanda and must be left to
timeout.
Changed FUJITSU vendor string comparison.
* DiscImageChef/Commands/MediaInfo.cs:
Added method to calculate MediaType from SCSI parameters
(mode, density, medium type, device type, etc).
Changed some error WriteLine() to debug ones. Too much
verbosity.
Added DVD media type decoding from PFI.
Found a drive that dumps ADIP, enabling it again (not
decoded).
* DiscImageChef/Commands/MediaScan.cs:
Added option to generate ImgBurn compatible log to
media-scan command.
* DiscImageChef/DiscImageChef.csproj:
Moved checksum generation to a separate class.
Added command to guess drive and media parameters and output
an XML report of them.
Added preliminary command to dump media. Only SCSI for now.
CDs and tapes are not supported. Errors are blalanty
ignored. Options are incomplete. Not yet usable.
* DiscImageChef/Main.cs:
Added command to guess drive and media parameters and output
an XML report of them.
Added preliminary command to dump media. Only SCSI for now.
CDs and tapes are not supported. Errors are blalanty
ignored. Options are incomplete. Not yet usable.
* DiscImageChef/Options.cs:
Added command to guess drive and media parameters and output
an XML report of them.
Added preliminary command to dump media. Only SCSI for now.
CDs and tapes are not supported. Errors are blalanty
ignored. Options are incomplete. Not yet usable.
Added option to generate ImgBurn compatible log to media-scan
command.
2016-01-31 08:05:56 +00:00
uint transferLength = ( uint ) ( ( cdb [ 7 ] - cdb [ 3 ] ) * 60 * 75 + ( cdb [ 8 ] - cdb [ 4 ] ) * 75 + ( cdb [ 9 ] - cdb [ 5 ] ) ) ;
2016-01-11 19:40:58 +00:00
buffer = new byte [ blockSize * transferLength ] ;
2017-12-21 07:19:46 +00:00
LastError = SendScsiCommand ( cdb , ref buffer , out senseBuffer , timeout , ScsiDirection . In , out duration ,
2017-12-22 03:13:43 +00:00
out bool sense ) ;
2017-12-21 07:19:46 +00:00
Error = LastError ! = 0 ;
2016-01-11 19:40:58 +00:00
2016-01-14 02:46:36 +00:00
DicConsole . DebugWriteLine ( "SCSI Device" , "PIONEER READ CD-DA MSF took {0} ms." , duration ) ;
return sense ;
}
/// <summary>
/// Sends the Pioneer READ CD-XA command
/// </summary>
/// <returns><c>true</c> if the command failed and <paramref name="senseBuffer"/> contains the sense buffer.</returns>
/// <param name="buffer">Buffer where the Pioneer READ CD-XA response will be stored</param>
/// <param name="senseBuffer">Sense buffer.</param>
/// <param name="timeout">Timeout in seconds.</param>
/// <param name="duration">Duration in milliseconds it took for the device to execute the command.</param>
/// <param name="errorFlags">If set to <c>true</c>, returns all sector data with 294 bytes of error flags. Superseedes <paramref name="wholeSector"/></param>
/// <param name="wholeSector">If set to <c>true</c>, returns all 2352 bytes of sector data.</param>
/// <param name="lba">Start block address.</param>
/// <param name="transferLength">How many blocks to read.</param>
2017-12-19 20:33:03 +00:00
public bool PioneerReadCdXa ( out byte [ ] buffer , out byte [ ] senseBuffer , uint lba , uint transferLength ,
bool errorFlags , bool wholeSector , uint timeout , out double duration )
2016-01-14 02:46:36 +00:00
{
senseBuffer = new byte [ 32 ] ;
byte [ ] cdb = new byte [ 12 ] ;
cdb [ 0 ] = ( byte ) ScsiCommands . ReadCdXa ;
cdb [ 2 ] = ( byte ) ( ( lba & 0xFF000000 ) > > 24 ) ;
cdb [ 3 ] = ( byte ) ( ( lba & 0xFF0000 ) > > 16 ) ;
cdb [ 4 ] = ( byte ) ( ( lba & 0xFF00 ) > > 8 ) ;
cdb [ 5 ] = ( byte ) ( lba & 0xFF ) ;
cdb [ 7 ] = ( byte ) ( ( transferLength & 0xFF0000 ) > > 16 ) ;
cdb [ 8 ] = ( byte ) ( ( transferLength & 0xFF00 ) > > 8 ) ;
cdb [ 9 ] = ( byte ) ( transferLength & 0xFF ) ;
2016-04-19 02:11:47 +01:00
if ( errorFlags )
2016-01-14 02:46:36 +00:00
{
buffer = new byte [ 2646 * transferLength ] ;
cdb [ 6 ] = 0x1F ;
}
2016-04-19 02:11:47 +01:00
else if ( wholeSector )
2016-01-14 02:46:36 +00:00
{
buffer = new byte [ 2352 * transferLength ] ;
cdb [ 6 ] = 0x0F ;
}
else
{
buffer = new byte [ 2048 * transferLength ] ;
cdb [ 6 ] = 0x00 ;
}
2017-12-21 07:19:46 +00:00
LastError = SendScsiCommand ( cdb , ref buffer , out senseBuffer , timeout , ScsiDirection . In , out duration ,
2017-12-22 03:13:43 +00:00
out bool sense ) ;
2017-12-21 07:19:46 +00:00
Error = LastError ! = 0 ;
2016-01-14 02:46:36 +00:00
DicConsole . DebugWriteLine ( "SCSI Device" , "PIONEER READ CD-XA took {0} ms." , duration ) ;
2016-01-11 19:40:58 +00:00
return sense ;
}
}
2017-12-19 20:33:03 +00:00
}