// /*************************************************************************** // Aaru Data Preservation Suite // ---------------------------------------------------------------------------- // // Filename : Read.cs // Author(s) : Natalia Portillo // // Component : Disk image plugins. // // --[ Description ] ---------------------------------------------------------- // // Reads HD-Copy disk images. // // --[ 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 © 2017 Michael Drüing // Copyright © 2011-2020 Natalia Portillo // ****************************************************************************/ using System; using System.IO; using Aaru.CommonTypes; using Aaru.CommonTypes.Enums; using Aaru.CommonTypes.Interfaces; using Aaru.Console; using Aaru.Helpers; namespace Aaru.DiscImages { public sealed partial class HdCopy { public bool Open(IFilter imageFilter) { Stream stream = imageFilter.GetDataForkStream(); stream.Seek(0, SeekOrigin.Begin); byte[] header = new byte[2 + (2 * 82)]; stream.Read(header, 0, 2 + (2 * 82)); HdcpFileHeader fheader = Marshal.ByteArrayToStructureLittleEndian(header); AaruConsole.DebugWriteLine("HDCP plugin", "Detected HD-Copy image with {0} tracks and {1} sectors per track.", fheader.lastCylinder + 1, fheader.sectorsPerTrack); _imageInfo.Cylinders = (uint)fheader.lastCylinder + 1; _imageInfo.SectorsPerTrack = fheader.sectorsPerTrack; _imageInfo.SectorSize = 512; // only 512 bytes per sector supported _imageInfo.Heads = 2; // only 2-sided floppies are supported _imageInfo.Sectors = 2 * _imageInfo.Cylinders * _imageInfo.SectorsPerTrack; _imageInfo.ImageSize = _imageInfo.Sectors * _imageInfo.SectorSize; _imageInfo.XmlMediaType = XmlMediaType.BlockMedia; _imageInfo.CreationTime = imageFilter.GetCreationTime(); _imageInfo.LastModificationTime = imageFilter.GetLastWriteTime(); _imageInfo.MediaTitle = Path.GetFileNameWithoutExtension(imageFilter.GetFilename()); _imageInfo.MediaType = Geometry.GetMediaType(((ushort)_imageInfo.Cylinders, 2, (ushort)_imageInfo.SectorsPerTrack, 512, MediaEncoding.MFM, false)); // the start offset of the track data long currentOffset = 2 + (2 * 82); // build table of track offsets for(int i = 0; i < _imageInfo.Cylinders * 2; i++) if(fheader.trackMap[i] == 0) _trackOffset[i] = -1; else { // track is present, read the block header if(currentOffset + 3 >= stream.Length) return false; byte[] blkHeader = new byte[2]; stream.Read(blkHeader, 0, 2); short blkLength = BitConverter.ToInt16(blkHeader, 0); // assume block sizes are positive if(blkLength < 0) return false; AaruConsole.DebugWriteLine("HDCP plugin", "Track {0} offset 0x{1:x8}, size={2:x4}", i, currentOffset, blkLength); _trackOffset[i] = currentOffset; currentOffset += 2 + blkLength; // skip the block data stream.Seek(blkLength, SeekOrigin.Current); } // ensure that the last track is present completely if(currentOffset > stream.Length) return false; // save some variables for later use _fileHeader = fheader; _hdcpImageFilter = imageFilter; return true; } public byte[] ReadSector(ulong sectorAddress) { int trackNum = (int)(sectorAddress / _imageInfo.SectorsPerTrack); int sectorOffset = (int)(sectorAddress % _imageInfo.SectorsPerTrack); if(sectorAddress > _imageInfo.Sectors - 1) throw new ArgumentOutOfRangeException(nameof(sectorAddress), "Sector address not found"); if(trackNum > 2 * _imageInfo.Cylinders) throw new ArgumentOutOfRangeException(nameof(sectorAddress), "Sector address not found"); byte[] result = new byte[_imageInfo.SectorSize]; if(_trackOffset[trackNum] == -1) Array.Clear(result, 0, (int)_imageInfo.SectorSize); else { // track is present in file, make sure it has been loaded if(!_trackCache.ContainsKey(trackNum)) ReadTrackIntoCache(_hdcpImageFilter.GetDataForkStream(), trackNum); Array.Copy(_trackCache[trackNum], sectorOffset * _imageInfo.SectorSize, result, 0, _imageInfo.SectorSize); } return result; } public byte[] ReadSectors(ulong sectorAddress, uint length) { byte[] result = new byte[length * _imageInfo.SectorSize]; if(sectorAddress + length > _imageInfo.Sectors) throw new ArgumentOutOfRangeException(nameof(length), "Requested more sectors than available"); for(int i = 0; i < length; i++) ReadSector(sectorAddress + (ulong)i).CopyTo(result, i * _imageInfo.SectorSize); return result; } } }