Files
Aaru/Aaru.Images/VDI/Write.cs

351 lines
11 KiB
C#
Raw Normal View History

// /***************************************************************************
2020-02-27 12:31:25 +00:00
// Aaru Data Preservation Suite
// ----------------------------------------------------------------------------
//
// Filename : Write.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Disk image plugins.
//
// --[ Description ] ----------------------------------------------------------
//
// Writes VirtualBox 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 <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
2020-12-31 23:08:23 +00:00
// Copyright © 2011-2021 Natalia Portillo
// ****************************************************************************/
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
2020-02-27 00:33:26 +00:00
using Aaru.CommonTypes;
using Aaru.CommonTypes.Enums;
using Aaru.CommonTypes.Structs;
2020-07-20 15:43:52 +01:00
using Aaru.Helpers;
using Schemas;
2020-02-27 00:33:26 +00:00
using Marshal = Aaru.Helpers.Marshal;
2020-02-27 00:33:26 +00:00
namespace Aaru.DiscImages
{
2020-07-22 13:20:25 +01:00
public sealed partial class Vdi
{
2021-08-17 13:56:05 +01:00
/// <inheritdoc />
public bool Create(string path, MediaType mediaType, Dictionary<string, string> options, ulong sectors,
2020-02-29 18:03:35 +00:00
uint sectorSize)
{
if(sectorSize != 512)
{
ErrorMessage = "Unsupported sector size";
2020-02-29 18:03:35 +00:00
return false;
}
if(!SupportedMediaTypes.Contains(mediaType))
{
2020-07-22 13:20:25 +01:00
ErrorMessage = $"Unsupported media format {mediaType}";
2020-02-29 18:03:35 +00:00
return false;
}
if(sectors * sectorSize / DEFAULT_BLOCK_SIZE > uint.MaxValue)
{
ErrorMessage = "Too many sectors for selected cluster size";
2020-02-29 18:03:35 +00:00
return false;
}
2020-07-20 21:11:32 +01:00
_imageInfo = new ImageInfo
2020-02-29 18:03:35 +00:00
{
2020-07-20 04:34:16 +01:00
MediaType = mediaType,
SectorSize = sectorSize,
Sectors = sectors
2020-02-29 18:03:35 +00:00
};
2020-02-29 18:03:35 +00:00
try
{
2020-07-20 21:11:32 +01:00
_writingStream = new FileStream(path, FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.None);
2020-02-29 18:03:35 +00:00
}
catch(IOException e)
{
ErrorMessage = $"Could not create new image file, exception {e.Message}";
2020-02-29 18:03:35 +00:00
return false;
}
uint ibmEntries = (uint)(sectors * sectorSize / DEFAULT_BLOCK_SIZE);
2020-02-29 18:03:35 +00:00
if(sectors * sectorSize % DEFAULT_BLOCK_SIZE > 0)
2020-02-29 18:03:35 +00:00
ibmEntries++;
uint headerSectors = 1 + (ibmEntries * 4 / sectorSize);
2020-02-29 18:03:35 +00:00
if(ibmEntries * 4 % sectorSize != 0)
2020-02-29 18:03:35 +00:00
headerSectors++;
2020-07-20 21:11:32 +01:00
_ibm = new uint[ibmEntries];
_currentWritingPosition = headerSectors * sectorSize;
_vHdr = new Header
{
2020-07-20 04:34:16 +01:00
creator = DIC_AARU,
magic = VDI_MAGIC,
majorVersion = 1,
minorVersion = 1,
headerSize = Marshal.SizeOf<Header>() - 72,
2020-07-20 04:34:16 +01:00
imageType = VdiImageType.Normal,
offsetBlocks = sectorSize,
offsetData = (uint)_currentWritingPosition,
sectorSize = sectorSize,
2020-07-20 04:34:16 +01:00
size = sectors * sectorSize,
blockSize = DEFAULT_BLOCK_SIZE,
blocks = ibmEntries,
uuid = Guid.NewGuid(),
snapshotUuid = Guid.NewGuid()
};
2020-02-29 18:03:35 +00:00
for(uint i = 0; i < ibmEntries; i++)
2020-07-20 21:11:32 +01:00
_ibm[i] = VDI_EMPTY;
IsWriting = true;
ErrorMessage = null;
2020-02-29 18:03:35 +00:00
return true;
}
2021-08-17 13:56:05 +01:00
/// <inheritdoc />
public bool WriteMediaTag(byte[] data, MediaTagType tag)
{
ErrorMessage = "Writing media tags is not supported.";
2020-02-29 18:03:35 +00:00
return false;
}
2021-08-17 13:56:05 +01:00
/// <inheritdoc />
public bool WriteSector(byte[] data, ulong sectorAddress)
{
if(!IsWriting)
{
ErrorMessage = "Tried to write on a non-writable image";
2020-02-29 18:03:35 +00:00
return false;
}
2020-07-20 21:11:32 +01:00
if(data.Length != _imageInfo.SectorSize)
{
ErrorMessage = "Incorrect data size";
2020-02-29 18:03:35 +00:00
return false;
}
2020-07-20 21:11:32 +01:00
if(sectorAddress >= _imageInfo.Sectors)
{
ErrorMessage = "Tried to write past image size";
2020-02-29 18:03:35 +00:00
return false;
}
// Ignore empty sectors
2020-02-29 18:03:35 +00:00
if(ArrayHelpers.ArrayIsNullOrEmpty(data))
return true;
ulong index = sectorAddress * _vHdr.sectorSize / _vHdr.blockSize;
ulong secOff = sectorAddress * _vHdr.sectorSize % _vHdr.blockSize;
2020-07-20 21:11:32 +01:00
uint ibmOff = _ibm[index];
if(ibmOff == VDI_EMPTY)
{
ibmOff = (uint)((_currentWritingPosition - _vHdr.offsetData) / _vHdr.blockSize);
2020-07-20 21:11:32 +01:00
_ibm[index] = ibmOff;
_currentWritingPosition += _vHdr.blockSize;
_vHdr.allocatedBlocks++;
}
ulong imageOff = _vHdr.offsetData + ((ulong)ibmOff * _vHdr.blockSize);
2020-07-20 21:11:32 +01:00
_writingStream.Seek((long)imageOff, SeekOrigin.Begin);
_writingStream.Seek((long)secOff, SeekOrigin.Current);
_writingStream.Write(data, 0, data.Length);
ErrorMessage = "";
2020-02-29 18:03:35 +00:00
return true;
}
// TODO: This can be optimized
2021-08-17 13:56:05 +01:00
/// <inheritdoc />
public bool WriteSectors(byte[] data, ulong sectorAddress, uint length)
{
if(!IsWriting)
{
ErrorMessage = "Tried to write on a non-writable image";
2020-02-29 18:03:35 +00:00
return false;
}
2020-07-20 21:11:32 +01:00
if(data.Length % _imageInfo.SectorSize != 0)
{
ErrorMessage = "Incorrect data size";
2020-02-29 18:03:35 +00:00
return false;
}
2020-07-20 21:11:32 +01:00
if(sectorAddress + length > _imageInfo.Sectors)
{
ErrorMessage = "Tried to write past image size";
2020-02-29 18:03:35 +00:00
return false;
}
// Ignore empty sectors
2020-02-29 18:03:35 +00:00
if(ArrayHelpers.ArrayIsNullOrEmpty(data))
return true;
for(uint i = 0; i < length; i++)
{
2020-07-20 21:11:32 +01:00
byte[] tmp = new byte[_imageInfo.SectorSize];
Array.Copy(data, i * _imageInfo.SectorSize, tmp, 0, _imageInfo.SectorSize);
2020-02-29 18:03:35 +00:00
if(!WriteSector(tmp, sectorAddress + i))
return false;
}
ErrorMessage = "";
2020-02-29 18:03:35 +00:00
return true;
}
2021-08-17 13:56:05 +01:00
/// <inheritdoc />
public bool WriteSectorLong(byte[] data, ulong sectorAddress)
{
ErrorMessage = "Writing sectors with tags is not supported.";
2020-02-29 18:03:35 +00:00
return false;
}
2021-08-17 13:56:05 +01:00
/// <inheritdoc />
public bool WriteSectorsLong(byte[] data, ulong sectorAddress, uint length)
{
ErrorMessage = "Writing sectors with tags is not supported.";
2020-02-29 18:03:35 +00:00
return false;
}
2021-08-17 13:56:05 +01:00
/// <inheritdoc />
public bool Close()
{
if(!IsWriting)
{
ErrorMessage = "Image is not opened for writing";
2020-02-29 18:03:35 +00:00
return false;
}
2020-07-20 21:11:32 +01:00
if(!string.IsNullOrEmpty(_imageInfo.Comments))
_vHdr.comments = _imageInfo.Comments.Length > 255 ? _imageInfo.Comments.Substring(0, 255)
: _imageInfo.Comments;
if(_vHdr.logicalCylinders == 0)
{
_vHdr.logicalCylinders = (uint)(_imageInfo.Sectors / 16 / 63);
_vHdr.logicalHeads = 16;
_vHdr.logicalSpt = 63;
while(_vHdr.logicalCylinders == 0)
{
_vHdr.logicalHeads--;
if(_vHdr.logicalHeads == 0)
{
_vHdr.logicalSpt--;
_vHdr.logicalHeads = 16;
}
_vHdr.logicalCylinders = (uint)(_imageInfo.Sectors / _vHdr.logicalHeads / _vHdr.logicalSpt);
if(_vHdr.logicalCylinders == 0 &&
_vHdr.logicalHeads == 0 &&
_vHdr.logicalSpt == 0)
2020-02-29 18:03:35 +00:00
break;
}
}
byte[] hdr = new byte[Marshal.SizeOf<Header>()];
IntPtr hdrPtr = System.Runtime.InteropServices.Marshal.AllocHGlobal(Marshal.SizeOf<Header>());
2020-07-20 21:11:32 +01:00
System.Runtime.InteropServices.Marshal.StructureToPtr(_vHdr, hdrPtr, true);
System.Runtime.InteropServices.Marshal.Copy(hdrPtr, hdr, 0, hdr.Length);
System.Runtime.InteropServices.Marshal.FreeHGlobal(hdrPtr);
2020-07-20 21:11:32 +01:00
_writingStream.Seek(0, SeekOrigin.Begin);
_writingStream.Write(hdr, 0, hdr.Length);
2020-07-20 21:11:32 +01:00
_writingStream.Seek(_vHdr.offsetBlocks, SeekOrigin.Begin);
_writingStream.Write(MemoryMarshal.Cast<uint, byte>(_ibm).ToArray(), 0, 4 * _ibm.Length);
2020-07-20 21:11:32 +01:00
_writingStream.Flush();
_writingStream.Close();
IsWriting = false;
ErrorMessage = "";
2020-02-29 18:03:35 +00:00
return true;
}
2021-08-17 13:56:05 +01:00
/// <inheritdoc />
public bool SetMetadata(ImageInfo metadata)
{
2020-07-20 21:11:32 +01:00
_imageInfo.Comments = metadata.Comments;
2020-02-29 18:03:35 +00:00
return true;
}
2021-08-17 13:56:05 +01:00
/// <inheritdoc />
public bool SetGeometry(uint cylinders, uint heads, uint sectorsPerTrack)
{
2020-07-20 21:11:32 +01:00
_vHdr.cylinders = cylinders;
_vHdr.heads = heads;
_vHdr.spt = sectorsPerTrack;
2020-02-29 18:03:35 +00:00
return true;
}
2021-08-17 13:56:05 +01:00
/// <inheritdoc />
public bool WriteSectorTag(byte[] data, ulong sectorAddress, SectorTagType tag)
{
ErrorMessage = "Writing sectors with tags is not supported.";
2020-02-29 18:03:35 +00:00
return false;
}
2021-08-17 13:56:05 +01:00
/// <inheritdoc />
public bool WriteSectorsTag(byte[] data, ulong sectorAddress, uint length, SectorTagType tag)
{
ErrorMessage = "Writing sectors with tags is not supported.";
2020-02-29 18:03:35 +00:00
return false;
}
2021-08-17 13:56:05 +01:00
/// <inheritdoc />
2018-12-31 13:17:27 +00:00
public bool SetDumpHardware(List<DumpHardwareType> dumpHardware) => false;
2021-08-17 13:56:05 +01:00
/// <inheritdoc />
2018-12-31 13:17:27 +00:00
public bool SetCicmMetadata(CICMMetadataType metadata) => false;
}
}