RAID5ManagerBootRecord.cs 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /* Copyright (C) 2014 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
  2. *
  3. * You can redistribute this program and/or modify it under the terms of
  4. * the GNU Lesser Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. */
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Text;
  10. using Utilities;
  11. namespace DiskAccessLibrary
  12. {
  13. public enum RAID5ManagerOperation : ushort
  14. {
  15. //MoveExtent = 0x0100, // MoveExtent v0
  16. MoveExtent = 0x0101, // MoveExtent v1
  17. AddDiskToArray = 0x0200,
  18. }
  19. public abstract class RAID5ManagerBootRecord
  20. {
  21. public const int Length = 512;
  22. public const string ValidSignature = "RAID5MGR";
  23. public string Signature = ValidSignature;
  24. public byte RecordRevision = 1; // Must be 1
  25. protected RAID5ManagerOperation Operation; // 2 bytes
  26. // reserved 5 bytes
  27. public RAID5ManagerBootRecord()
  28. {
  29. }
  30. public RAID5ManagerBootRecord(byte[] buffer)
  31. {
  32. Signature = ByteReader.ReadAnsiString(buffer, 0, 8);
  33. RecordRevision = ByteReader.ReadByte(buffer, 8);
  34. Operation = (RAID5ManagerOperation)BigEndianConverter.ToUInt16(buffer, 9);
  35. ReadOperationParameters(buffer, 16);
  36. }
  37. protected abstract void ReadOperationParameters(byte[] buffer, int offset);
  38. public byte[] GetBytes()
  39. {
  40. byte[] buffer = new byte[Length];
  41. ByteWriter.WriteAnsiString(buffer, 0, Signature, 8);
  42. ByteWriter.WriteByte(buffer, 8, RecordRevision);
  43. BigEndianWriter.WriteUInt16(buffer, 9, (ushort)Operation);
  44. WriteOperationParameters(buffer, 16);
  45. return buffer;
  46. }
  47. protected abstract void WriteOperationParameters(byte[] buffer, int offset);
  48. public bool IsValid
  49. {
  50. get
  51. {
  52. return this.Signature == ValidSignature;
  53. }
  54. }
  55. public static RAID5ManagerBootRecord FromBytes(byte[] buffer)
  56. {
  57. string signature = ByteReader.ReadAnsiString(buffer, 0, 8);
  58. byte recordRevision = ByteReader.ReadByte(buffer, 8);
  59. RAID5ManagerOperation operation = (RAID5ManagerOperation)BigEndianConverter.ToUInt16(buffer, 9);
  60. if (signature == ValidSignature && recordRevision == 1)
  61. {
  62. if (operation == RAID5ManagerOperation.AddDiskToArray)
  63. {
  64. return new AddDiskOperationBootRecord(buffer);
  65. }
  66. else if (operation == RAID5ManagerOperation.MoveExtent)
  67. {
  68. return new MoveExtentOperationBootRecord(buffer);
  69. }
  70. }
  71. return null;
  72. }
  73. public static bool HasValidSignature(byte[] buffer)
  74. {
  75. string signature = ByteReader.ReadAnsiString(buffer, 0, 8);
  76. return (signature == ValidSignature);
  77. }
  78. }
  79. }