2018-07-23 23:25:43 +01:00
|
|
|
|
// /***************************************************************************
|
2020-02-27 12:31:25 +00:00
|
|
|
|
// Aaru Data Preservation Suite
|
2018-07-23 23:25:43 +01:00
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
//
|
|
|
|
|
|
// Filename : Write.cs
|
|
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
|
|
|
|
//
|
|
|
|
|
|
// Component : Disk image plugins.
|
|
|
|
|
|
//
|
|
|
|
|
|
// --[ Description ] ----------------------------------------------------------
|
|
|
|
|
|
//
|
2018-12-31 13:17:27 +00:00
|
|
|
|
// Writes QEMU Enhanced Disk images.
|
2018-07-23 23:25:43 +01:00
|
|
|
|
//
|
|
|
|
|
|
// --[ 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/>.
|
|
|
|
|
|
//
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2022-02-18 10:02:53 +00:00
|
|
|
|
// Copyright © 2011-2022 Natalia Portillo
|
2018-07-23 23:25:43 +01:00
|
|
|
|
// ****************************************************************************/
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-07 07:36:44 +00:00
|
|
|
|
namespace Aaru.DiscImages;
|
|
|
|
|
|
|
2018-12-31 13:17:27 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
using System.Linq;
|
2019-03-15 23:00:12 +00:00
|
|
|
|
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;
|
2018-12-31 13:17:27 +00:00
|
|
|
|
using Schemas;
|
2020-02-27 00:33:26 +00:00
|
|
|
|
using Marshal = Aaru.Helpers.Marshal;
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
public sealed partial class Qed
|
2018-07-23 23:25:43 +01:00
|
|
|
|
{
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
public bool Create(string path, MediaType mediaType, Dictionary<string, string> options, ulong sectors,
|
|
|
|
|
|
uint sectorSize)
|
2018-07-23 23:25:43 +01:00
|
|
|
|
{
|
2022-03-06 13:29:38 +00:00
|
|
|
|
if(sectorSize != 512)
|
2018-12-31 13:17:27 +00:00
|
|
|
|
{
|
2022-03-06 13:29:38 +00:00
|
|
|
|
ErrorMessage = "Unsupported sector size";
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
}
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
if(!SupportedMediaTypes.Contains(mediaType))
|
|
|
|
|
|
{
|
|
|
|
|
|
ErrorMessage = $"Unsupported media format {mediaType}";
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
}
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
// TODO: Correct this calculation
|
|
|
|
|
|
if(sectors * sectorSize / DEFAULT_CLUSTER_SIZE > uint.MaxValue)
|
|
|
|
|
|
{
|
|
|
|
|
|
ErrorMessage = "Too many sectors for selected cluster size";
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
}
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
_imageInfo = new ImageInfo
|
|
|
|
|
|
{
|
|
|
|
|
|
MediaType = mediaType,
|
|
|
|
|
|
SectorSize = sectorSize,
|
|
|
|
|
|
Sectors = sectors
|
|
|
|
|
|
};
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
try
|
|
|
|
|
|
{
|
|
|
|
|
|
_writingStream = new FileStream(path, FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.None);
|
|
|
|
|
|
}
|
|
|
|
|
|
catch(IOException e)
|
|
|
|
|
|
{
|
|
|
|
|
|
ErrorMessage = $"Could not create new image file, exception {e.Message}";
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
}
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
_qHdr = new QedHeader
|
|
|
|
|
|
{
|
|
|
|
|
|
magic = QED_MAGIC,
|
|
|
|
|
|
cluster_size = DEFAULT_CLUSTER_SIZE,
|
|
|
|
|
|
table_size = DEFAULT_TABLE_SIZE,
|
|
|
|
|
|
header_size = 1,
|
|
|
|
|
|
l1_table_offset = DEFAULT_CLUSTER_SIZE,
|
|
|
|
|
|
image_size = sectors * sectorSize
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
_clusterSectors = _qHdr.cluster_size / 512;
|
|
|
|
|
|
_tableSize = _qHdr.cluster_size * _qHdr.table_size / 8;
|
|
|
|
|
|
|
|
|
|
|
|
_l1Table = new ulong[_tableSize];
|
|
|
|
|
|
_l1Mask = 0;
|
2022-03-07 07:36:44 +00:00
|
|
|
|
var c = 0;
|
2022-03-06 13:29:38 +00:00
|
|
|
|
_clusterBits = Ctz32(_qHdr.cluster_size);
|
|
|
|
|
|
_l2Mask = (_tableSize - 1) << _clusterBits;
|
|
|
|
|
|
_l1Shift = _clusterBits + Ctz32(_tableSize);
|
|
|
|
|
|
|
2022-03-07 07:36:44 +00:00
|
|
|
|
for(var i = 0; i < 64; i++)
|
2022-03-06 13:29:38 +00:00
|
|
|
|
{
|
|
|
|
|
|
_l1Mask <<= 1;
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
if(c >= 64 - _l1Shift)
|
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
|
|
_l1Mask += 1;
|
|
|
|
|
|
c++;
|
|
|
|
|
|
}
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
_sectorMask = 0;
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-07 07:36:44 +00:00
|
|
|
|
for(var i = 0; i < _clusterBits; i++)
|
2022-03-06 13:29:38 +00:00
|
|
|
|
_sectorMask = (_sectorMask << 1) + 1;
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-07 07:36:44 +00:00
|
|
|
|
var empty = new byte[_qHdr.l1_table_offset + _tableSize * 8];
|
2022-03-06 13:29:38 +00:00
|
|
|
|
_writingStream.Write(empty, 0, empty.Length);
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
IsWriting = true;
|
|
|
|
|
|
ErrorMessage = null;
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
return true;
|
|
|
|
|
|
}
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
public bool WriteMediaTag(byte[] data, MediaTagType tag)
|
|
|
|
|
|
{
|
|
|
|
|
|
ErrorMessage = "Writing media tags is not supported.";
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
}
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
public bool WriteSector(byte[] data, ulong sectorAddress)
|
|
|
|
|
|
{
|
|
|
|
|
|
if(!IsWriting)
|
2018-12-31 13:17:27 +00:00
|
|
|
|
{
|
2022-03-06 13:29:38 +00:00
|
|
|
|
ErrorMessage = "Tried to write on a non-writable image";
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2018-12-31 13:17:27 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
if(data.Length != _imageInfo.SectorSize)
|
2018-12-31 13:17:27 +00:00
|
|
|
|
{
|
2022-03-06 13:29:38 +00:00
|
|
|
|
ErrorMessage = "Incorrect data size";
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
}
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
if(sectorAddress >= _imageInfo.Sectors)
|
|
|
|
|
|
{
|
|
|
|
|
|
ErrorMessage = "Tried to write past image size";
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
}
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
// Ignore empty sectors
|
|
|
|
|
|
if(ArrayHelpers.ArrayIsNullOrEmpty(data))
|
|
|
|
|
|
return true;
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
ulong byteAddress = sectorAddress * 512;
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
ulong l1Off = (byteAddress & _l1Mask) >> _l1Shift;
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
if((long)l1Off >= _l1Table.LongLength)
|
|
|
|
|
|
{
|
|
|
|
|
|
ErrorMessage = $"Trying to write past L1 table, position {l1Off} of a max {_l1Table.LongLength}";
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
}
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
if(_l1Table[l1Off] == 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
_writingStream.Seek(0, SeekOrigin.End);
|
|
|
|
|
|
_l1Table[l1Off] = (ulong)_writingStream.Position;
|
2022-03-07 07:36:44 +00:00
|
|
|
|
var l2TableB = new byte[_tableSize * 8];
|
2022-03-06 13:29:38 +00:00
|
|
|
|
_writingStream.Seek(0, SeekOrigin.End);
|
|
|
|
|
|
_writingStream.Write(l2TableB, 0, l2TableB.Length);
|
|
|
|
|
|
}
|
2021-09-21 04:55:28 +01:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
_writingStream.Position = (long)_l1Table[l1Off];
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
ulong l2Off = (byteAddress & _l2Mask) >> _clusterBits;
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-07 07:36:44 +00:00
|
|
|
|
_writingStream.Seek((long)(_l1Table[l1Off] + l2Off * 8), SeekOrigin.Begin);
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-07 07:36:44 +00:00
|
|
|
|
var entry = new byte[8];
|
2022-11-14 09:43:16 +00:00
|
|
|
|
_writingStream.EnsureRead(entry, 0, 8);
|
2022-03-07 07:36:44 +00:00
|
|
|
|
var offset = BitConverter.ToUInt64(entry, 0);
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
if(offset == 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
offset = (ulong)_writingStream.Length;
|
2022-03-07 07:36:44 +00:00
|
|
|
|
var cluster = new byte[_qHdr.cluster_size];
|
2022-03-06 13:29:38 +00:00
|
|
|
|
entry = BitConverter.GetBytes(offset);
|
2022-03-07 07:36:44 +00:00
|
|
|
|
_writingStream.Seek((long)(_l1Table[l1Off] + l2Off * 8), SeekOrigin.Begin);
|
2022-03-06 13:29:38 +00:00
|
|
|
|
_writingStream.Write(entry, 0, 8);
|
|
|
|
|
|
_writingStream.Seek(0, SeekOrigin.End);
|
|
|
|
|
|
_writingStream.Write(cluster, 0, cluster.Length);
|
|
|
|
|
|
}
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
_writingStream.Seek((long)(offset + (byteAddress & _sectorMask)), SeekOrigin.Begin);
|
|
|
|
|
|
_writingStream.Write(data, 0, data.Length);
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
ErrorMessage = "";
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
return true;
|
|
|
|
|
|
}
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
// TODO: This can be optimized
|
|
|
|
|
|
/// <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
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
return false;
|
2018-12-31 13:17:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
if(data.Length % _imageInfo.SectorSize != 0)
|
2018-12-31 13:17:27 +00:00
|
|
|
|
{
|
2022-03-06 13:29:38 +00:00
|
|
|
|
ErrorMessage = "Incorrect data size";
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
}
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
if(sectorAddress + length > _imageInfo.Sectors)
|
|
|
|
|
|
{
|
|
|
|
|
|
ErrorMessage = "Tried to write past image size";
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
}
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
// Ignore empty sectors
|
|
|
|
|
|
if(ArrayHelpers.ArrayIsNullOrEmpty(data))
|
|
|
|
|
|
return true;
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
for(uint i = 0; i < length; i++)
|
|
|
|
|
|
{
|
2022-03-07 07:36:44 +00:00
|
|
|
|
var tmp = new byte[_imageInfo.SectorSize];
|
2022-03-06 13:29:38 +00:00
|
|
|
|
Array.Copy(data, i * _imageInfo.SectorSize, tmp, 0, _imageInfo.SectorSize);
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
if(!WriteSector(tmp, sectorAddress + i))
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
ErrorMessage = "";
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
return true;
|
|
|
|
|
|
}
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00: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
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
}
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00: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
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
}
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
public bool Close()
|
|
|
|
|
|
{
|
|
|
|
|
|
if(!IsWriting)
|
2018-12-31 13:17:27 +00:00
|
|
|
|
{
|
2022-03-06 13:29:38 +00:00
|
|
|
|
ErrorMessage = "Image is not opened for writing";
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2018-12-31 13:17:27 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-03-07 07:36:44 +00:00
|
|
|
|
var hdr = new byte[Marshal.SizeOf<QedHeader>()];
|
2022-03-06 13:29:38 +00:00
|
|
|
|
MemoryMarshal.Write(hdr, ref _qHdr);
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
_writingStream.Seek(0, SeekOrigin.Begin);
|
|
|
|
|
|
_writingStream.Write(hdr, 0, hdr.Length);
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
_writingStream.Seek((long)_qHdr.l1_table_offset, SeekOrigin.Begin);
|
|
|
|
|
|
byte[] l1TableB = MemoryMarshal.Cast<ulong, byte>(_l1Table).ToArray();
|
|
|
|
|
|
_writingStream.Write(l1TableB, 0, l1TableB.Length);
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
_writingStream.Flush();
|
|
|
|
|
|
_writingStream.Close();
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
IsWriting = false;
|
|
|
|
|
|
ErrorMessage = "";
|
2020-02-29 18:03:35 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
return true;
|
|
|
|
|
|
}
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
public bool SetMetadata(ImageInfo metadata) => true;
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
public bool SetGeometry(uint cylinders, uint heads, uint sectorsPerTrack) => true;
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00: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
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
}
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00: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
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
}
|
2018-12-31 13:17:27 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
public bool SetDumpHardware(List<DumpHardwareType> dumpHardware) => false;
|
2018-12-29 17:34:38 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
public bool SetCicmMetadata(CICMMetadataType metadata) => false;
|
2018-07-23 23:25:43 +01:00
|
|
|
|
}
|