123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255 |
- /* Copyright (C) 2014-2017 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
- *
- * You can redistribute this program and/or modify it under the terms of
- * the GNU Lesser Public License as published by the Free Software Foundation,
- * either version 3 of the License, or (at your option) any later version.
- */
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Text;
- using Utilities;
- namespace DiskAccessLibrary
- {
- public partial class RawDiskImage : DiskImage
- {
- public const int DefaultBytesPerSector = 512;
- const FileOptions FILE_FLAG_NO_BUFFERING = (FileOptions)0x20000000;
- private bool m_isExclusiveLock;
- private FileStream m_stream;
- private int m_bytesPerSector;
- private long m_size;
- /// <exception cref="System.IO.IOException"></exception>
- /// <exception cref="System.UnauthorizedAccessException"></exception>
- public RawDiskImage(string rawDiskImagePath) : base(rawDiskImagePath)
- {
- m_bytesPerSector = DetectBytesPerSector(rawDiskImagePath);
- m_size = new FileInfo(rawDiskImagePath).Length;
- }
- /// <exception cref="System.IO.IOException"></exception>
- /// <exception cref="System.UnauthorizedAccessException"></exception>
- public RawDiskImage(string rawDiskImagePath, int bytesPerSector) : base(rawDiskImagePath)
- {
- m_bytesPerSector = bytesPerSector;
- m_size = new FileInfo(rawDiskImagePath).Length;
- }
- /// <exception cref="System.IO.IOException"></exception>
- public override bool ExclusiveLock()
- {
- if (!m_isExclusiveLock)
- {
- m_isExclusiveLock = true;
- m_stream = OpenFileStream();
- return true;
- }
- else
- {
- return false;
- }
- }
- public override bool ReleaseLock()
- {
- if (m_isExclusiveLock)
- {
- m_isExclusiveLock = false;
- m_stream.Close();
- return true;
- }
- else
- {
- return false;
- }
- }
- private FileStream OpenFileStream()
- {
- FileAccess fileAccess = IsReadOnly ? FileAccess.Read : FileAccess.ReadWrite;
- // We should use noncached I/O operations to avoid excessive RAM usage.
- // Note: KB99794 provides information about FILE_FLAG_WRITE_THROUGH and FILE_FLAG_NO_BUFFERING.
- // We must avoid using buffered writes, using it will negatively affect the performance and reliability.
- // Note: once the file system write buffer is filled, Windows may delay any (buffer-dependent) pending write operations, which will create a deadlock.
- FileStream stream = new FileStream(this.Path, FileMode.Open, fileAccess, FileShare.Read, 0x1000, FILE_FLAG_NO_BUFFERING | FileOptions.WriteThrough);
- return stream;
- }
- /// <summary>
- /// Sector refers to physical disk sector, we can only read complete sectors
- /// </summary>
- public override byte[] ReadSectors(long sectorIndex, int sectorCount)
- {
- CheckBoundaries(sectorIndex, sectorCount);
- if (!m_isExclusiveLock)
- {
- m_stream = OpenFileStream();
- }
- long offset = sectorIndex * BytesPerSector;
- byte[] result = new byte[BytesPerSector * sectorCount];
- m_stream.Seek(offset, SeekOrigin.Begin);
- m_stream.Read(result, 0, BytesPerSector * sectorCount);
- if (!m_isExclusiveLock)
- {
- m_stream.Close();
- }
- return result;
- }
- public override void WriteSectors(long sectorIndex, byte[] data)
- {
- if (IsReadOnly)
- {
- throw new UnauthorizedAccessException("Attempted to perform write on a readonly disk");
- }
- CheckBoundaries(sectorIndex, data.Length / this.BytesPerSector);
- if (!m_isExclusiveLock)
- {
- m_stream = OpenFileStream();
- }
- long offset = sectorIndex * BytesPerSector;
- m_stream.Seek(offset, SeekOrigin.Begin);
- m_stream.Write(data, 0, data.Length);
- if (!m_isExclusiveLock)
- {
- m_stream.Close();
- }
- }
- /// <exception cref="System.IO.IOException"></exception>
- public override void Extend(long numberOfAdditionalBytes)
- {
- if (numberOfAdditionalBytes % this.BytesPerSector > 0)
- {
- throw new ArgumentException("numberOfAdditionalBytes must be a multiple of BytesPerSector");
- }
- #if Win32
- // calling AdjustTokenPrivileges and then immediately calling SetFileValidData will sometimes result in ERROR_PRIVILEGE_NOT_HELD.
- // We can work around the issue by obtaining the privilege before obtaining the handle.
- bool hasManageVolumePrivilege = SecurityUtils.ObtainManageVolumePrivilege();
- #endif
- if (!m_isExclusiveLock)
- {
- m_stream = OpenFileStream();
- }
- else
- {
- // Workaround for AdjustTokenPrivileges issue
- ReleaseLock();
- ExclusiveLock();
- }
- m_stream.SetLength(m_size + numberOfAdditionalBytes);
- m_size += numberOfAdditionalBytes;
- #if Win32
- if (hasManageVolumePrivilege)
- {
- try
- {
- FileStreamUtils.SetValidLength(m_stream, m_size);
- }
- catch (IOException)
- {
- }
- }
- #endif
- if (!m_isExclusiveLock)
- {
- m_stream.Close();
- }
- }
- public override int BytesPerSector
- {
- get
- {
- return m_bytesPerSector;
- }
- }
- public override long Size
- {
- get
- {
- return m_size;
- }
- }
- /// <param name="size">In bytes</param>
- /// <exception cref="System.IO.IOException"></exception>
- /// <exception cref="System.UnauthorizedAccessException"></exception>
- public static RawDiskImage Create(string path, long size)
- {
- int bytesPerSector = DetectBytesPerSector(path);
- return Create(path, size, bytesPerSector);
- }
- /// <param name="size">In bytes</param>
- /// <exception cref="System.IO.IOException"></exception>
- /// <exception cref="System.UnauthorizedAccessException"></exception>
- internal static RawDiskImage Create(string path, long size, int bytesPerSector)
- {
- if (size % bytesPerSector > 0)
- {
- throw new ArgumentException("size must be a multiple of bytesPerSector");
- }
- #if Win32
- // calling AdjustTokenPrivileges and then immediately calling SetFileValidData will sometimes result in ERROR_PRIVILEGE_NOT_HELD.
- // We can work around the issue by obtaining the privilege before obtaining the handle.
- bool hasManageVolumePrivilege = SecurityUtils.ObtainManageVolumePrivilege();
- #endif
- FileStream stream = new FileStream(path, FileMode.Create, FileAccess.Write, FileShare.None);
- try
- {
- stream.SetLength(size);
- }
- catch (IOException)
- {
- stream.Close();
- try
- {
- // Delete the incomplete file
- File.Delete(path);
- }
- catch (IOException)
- {
- }
- throw;
- }
- #if Win32
- if (hasManageVolumePrivilege)
- {
- try
- {
- FileStreamUtils.SetValidLength(stream, size);
- }
- catch (IOException)
- {
- }
- }
- #endif
- stream.Close();
- return new RawDiskImage(path, bytesPerSector);
- }
- public static int DetectBytesPerSector(string path)
- {
- FileInfo info = new FileInfo(path);
- string[] components = info.Name.Split('.');
- if (components.Length >= 3) // file.512.img
- {
- string bytesPerSectorString = components[components.Length - 2];
- int bytesPerSector = Conversion.ToInt32(bytesPerSectorString, DefaultBytesPerSector);
- return bytesPerSector;
- }
- else
- {
- return DefaultBytesPerSector;
- }
- }
- }
- }
|