// /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // // Filename : DDS.cs // Author(s) : Natalia Portillo // // Component : Device structures decoders. // // --[ Description ] ---------------------------------------------------------- // // Decodes Blu-ray Disc Definition Structure. // // --[ License ] -------------------------------------------------------------- // // 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 // License, or (at your option) any later version. // // 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. // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, see . // // ---------------------------------------------------------------------------- // Copyright © 2011-2016 Natalia Portillo // ****************************************************************************/ using System; using DiscImageChef.Console; using System.Text; namespace DiscImageChef.Decoders.Bluray { /// /// Information from the following standards: /// ANSI X3.304-1997 /// T10/1048-D revision 9.0 /// T10/1048-D revision 10a /// T10/1228-D revision 7.0c /// T10/1228-D revision 11a /// T10/1363-D revision 10g /// T10/1545-D revision 1d /// T10/1545-D revision 5 /// T10/1545-D revision 5a /// T10/1675-D revision 2c /// T10/1675-D revision 4 /// T10/1836-D revision 2g /// public static class DDS { #region Private constants /// /// Disc Definition Structure Identifier "DS" /// const UInt16 DDSIdentifier = 0x4453; #endregion Private constants #region Public methods public static DiscDefinitionStructure? Decode(byte[] DDSResponse) { if(DDSResponse == null) return null; DiscDefinitionStructure decoded = new DiscDefinitionStructure(); BigEndianBitConverter.IsLittleEndian = BitConverter.IsLittleEndian; decoded.DataLength = BigEndianBitConverter.ToUInt16(DDSResponse, 0); decoded.Reserved1 = DDSResponse[2]; decoded.Reserved2 = DDSResponse[3]; decoded.Signature = BigEndianBitConverter.ToUInt16(DDSResponse, 4); if(decoded.Signature != DDSIdentifier) { DicConsole.DebugWriteLine("BD DDS decoder", "Found incorrect DDS signature (0x{0:X4})", decoded.Signature); return null; } decoded.Format = DDSResponse[6]; decoded.Reserved3 = DDSResponse[7]; decoded.UpdateCount = BigEndianBitConverter.ToUInt32(DDSResponse, 8); decoded.Reserved4 = BigEndianBitConverter.ToUInt64(DDSResponse, 12); decoded.DriveAreaPSN = BigEndianBitConverter.ToUInt32(DDSResponse, 20); decoded.Reserved5 = BigEndianBitConverter.ToUInt32(DDSResponse, 24); decoded.DefectListPSN = BigEndianBitConverter.ToUInt32(DDSResponse, 28); decoded.Reserved6 = BigEndianBitConverter.ToUInt32(DDSResponse, 32); decoded.PSNofLSNZero = BigEndianBitConverter.ToUInt32(DDSResponse, 36); decoded.LastUserAreaLSN = BigEndianBitConverter.ToUInt32(DDSResponse, 40); decoded.ISA0 = BigEndianBitConverter.ToUInt32(DDSResponse, 44); decoded.OSA = BigEndianBitConverter.ToUInt32(DDSResponse, 48); decoded.ISA1 = BigEndianBitConverter.ToUInt32(DDSResponse, 52); decoded.SpareAreaFullFlags = DDSResponse[56]; decoded.Reserved7 = DDSResponse[57]; decoded.DiscTypeSpecificField1 = DDSResponse[58]; decoded.Reserved8 = DDSResponse[59]; decoded.DiscTypeSpecificField2 = BigEndianBitConverter.ToUInt32(DDSResponse, 60); decoded.Reserved9 = BigEndianBitConverter.ToUInt32(DDSResponse, 64); decoded.StatusBits = new byte[32]; Array.Copy(DDSResponse, 68, decoded.StatusBits, 0, 32); decoded.DiscTypeSpecificData = new byte[DDSResponse.Length - 100]; Array.Copy(DDSResponse, 100, decoded.DiscTypeSpecificData, 0, DDSResponse.Length - 100); return decoded; } public static string Prettify(DiscDefinitionStructure? DDSResponse) { if(DDSResponse == null) return null; DiscDefinitionStructure response = DDSResponse.Value; StringBuilder sb = new StringBuilder(); sb.AppendFormat("DDS Format: 0x{0:X2}", response.Format).AppendLine(); sb.AppendFormat("DDS has ben updated {0} times", response.UpdateCount).AppendLine(); sb.AppendFormat("First PSN of Drive Area: 0x{0:X8}", response.DriveAreaPSN).AppendLine(); sb.AppendFormat("First PSN of Defect List: 0x{0:X8}", response.DefectListPSN).AppendLine(); sb.AppendFormat("PSN of User Data Area's LSN 0: 0x{0:X8}", response.PSNofLSNZero).AppendLine(); sb.AppendFormat("Last User Data Area's LSN 0: 0x{0:X8}", response.LastUserAreaLSN).AppendLine(); sb.AppendFormat("ISA0 size: {0}", response.ISA0).AppendLine(); sb.AppendFormat("OSA size: {0}", response.OSA).AppendLine(); sb.AppendFormat("ISA1 size: {0}", response.ISA1).AppendLine(); sb.AppendFormat("Spare Area Full Flags: 0x{0:X2}", response.SpareAreaFullFlags).AppendLine(); sb.AppendFormat("Disc Type Specific Field 1: 0x{0:X2}", response.DiscTypeSpecificField1).AppendLine(); sb.AppendFormat("Disc Type Specific Field 2: 0x{0:X8}", response.DiscTypeSpecificField2).AppendLine(); sb.AppendFormat("Blu-ray DDS Status Bits in hex follows:"); sb.AppendLine(PrintHex.ByteArrayToHexArrayString(response.StatusBits, 80)); sb.AppendFormat("Blu-ray DDS Disc Type Specific Data in hex follows:"); sb.AppendLine(PrintHex.ByteArrayToHexArrayString(response.DiscTypeSpecificData, 80)); #if DEBUG if(response.Reserved1 != 0) sb.AppendFormat("Reserved1 = 0x{0:X2}", response.Reserved1).AppendLine(); if(response.Reserved2 != 0) sb.AppendFormat("Reserved2 = 0x{0:X2}", response.Reserved2).AppendLine(); if(response.Reserved3 != 0) sb.AppendFormat("Reserved3 = 0x{0:X2}", response.Reserved3).AppendLine(); if(response.Reserved4 != 0) sb.AppendFormat("Reserved4 = 0x{0:X16}", response.Reserved4).AppendLine(); if(response.Reserved5 != 0) sb.AppendFormat("Reserved5 = 0x{0:X8}", response.Reserved5).AppendLine(); if(response.Reserved6 != 0) sb.AppendFormat("Reserved6 = 0x{0:X8}", response.Reserved6).AppendLine(); if(response.Reserved7 != 0) sb.AppendFormat("Reserved7 = 0x{0:X2}", response.Reserved7).AppendLine(); if(response.Reserved8 != 0) sb.AppendFormat("Reserved8 = 0x{0:X2}", response.Reserved8).AppendLine(); if(response.Reserved9 != 0) sb.AppendFormat("Reserved9 = 0x{0:X8}", response.Reserved9).AppendLine(); #endif return sb.ToString(); } public static string Prettify(byte[] DDSResponse) { return Prettify(Decode(DDSResponse)); } #endregion Public methods #region Public structures public struct DiscDefinitionStructure { /// /// Bytes 0 to 1 /// Data Length /// public UInt16 DataLength; /// /// Byte 2 /// Reserved /// public byte Reserved1; /// /// Byte 3 /// Reserved /// public byte Reserved2; /// /// Bytes 4 to 5 /// "DS" /// public UInt16 Signature; /// /// Byte 6 /// DDS format /// public byte Format; /// /// Byte 7 /// Reserved /// public byte Reserved3; /// /// Bytes 8 to 11 /// DDS update count /// public UInt32 UpdateCount; /// /// Bytes 12 to 19 /// Reserved /// public UInt64 Reserved4; /// /// Bytes 20 to 23 /// First PSN of Drive Area /// public UInt32 DriveAreaPSN; /// /// Bytes 24 to 27 /// Reserved /// public UInt32 Reserved5; /// /// Bytes 28 to 31 /// First PSN of Defect List /// public UInt32 DefectListPSN; /// /// Bytes 32 to 35 /// Reserved /// public UInt32 Reserved6; /// /// Bytes 36 to 39 /// PSN of LSN 0 of user data area /// public UInt32 PSNofLSNZero; /// /// Bytes 40 to 43 /// Last LSN of user data area /// public UInt32 LastUserAreaLSN; /// /// Bytes 44 to 47 /// ISA0 size /// public UInt32 ISA0; /// /// Bytes 48 to 51 /// OSA size /// public UInt32 OSA; /// /// Bytes 52 to 55 /// ISA1 size /// public UInt32 ISA1; /// /// Byte 56 /// Spare Area full flags /// public byte SpareAreaFullFlags; /// /// Byte 57 /// Reserved /// public byte Reserved7; /// /// Byte 58 /// Disc type specific field /// public byte DiscTypeSpecificField1; /// /// Byte 59 /// Reserved /// public byte Reserved8; /// /// Byte 60 to 63 /// Disc type specific field /// public UInt32 DiscTypeSpecificField2; /// /// Byte 64 to 67 /// Reserved /// public UInt32 Reserved9; /// /// Bytes 68 to 99 /// Status bits of INFO1/2 and PAC1/2 on L0 and L1 /// public byte[] StatusBits; /// /// Bytes 100 to end /// Disc type specific data /// public byte[] DiscTypeSpecificData; } #endregion Public structures } }