KernalUpdateLog.cs 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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.LogicalDiskManager
  12. {
  13. public class KernelUpdateLog
  14. {
  15. List<KernelUpdateLogPage> m_pages = new List<KernelUpdateLogPage>();
  16. public KernelUpdateLog(List<KernelUpdateLogPage> pages)
  17. {
  18. m_pages = pages;
  19. }
  20. public void SetLastEntry(DynamicDisk databaseDisk, ulong committedTransactionID, ulong pendingTransactionID)
  21. {
  22. SetLastEntry(databaseDisk.Disk, databaseDisk.PrivateHeader, databaseDisk.TOCBlock, committedTransactionID, pendingTransactionID);
  23. }
  24. public void SetLastEntry(Disk disk, PrivateHeader privateHeader, TOCBlock tocBlock, ulong committedTransactionID, ulong pendingTransactionID)
  25. {
  26. if (m_pages.Count > 0)
  27. {
  28. m_pages[0].SetLastEntry(committedTransactionID, pendingTransactionID);
  29. // Windows kernel stores the last committedTransactionID / pendingTransactionID in memory,
  30. // and it will overwrite the values we write as soon as dmadmin is started,
  31. // However, it doesn't seem to cause any issues
  32. KernelUpdateLogPage.WriteToDisk(disk, privateHeader, tocBlock, m_pages[0]);
  33. }
  34. else
  35. {
  36. throw new InvalidOperationException("KLog records have not been previously read from disk");
  37. }
  38. }
  39. public static KernelUpdateLog ReadFromDisk(DynamicDisk databaseDisk)
  40. {
  41. return ReadFromDisk(databaseDisk.Disk, databaseDisk.PrivateHeader, databaseDisk.TOCBlock);
  42. }
  43. public static KernelUpdateLog ReadFromDisk(Disk disk, PrivateHeader privateHeader, TOCBlock tocBlock)
  44. {
  45. List<KernelUpdateLogPage> pages = new List<KernelUpdateLogPage>();
  46. KernelUpdateLogPage firstPage = KernelUpdateLogPage.ReadFromDisk(disk, privateHeader, tocBlock, 0);
  47. pages.Add(firstPage);
  48. for (int index = 2; index < firstPage.NumberOfPages; index++)
  49. {
  50. KernelUpdateLogPage page = KernelUpdateLogPage.ReadFromDisk(disk, privateHeader, tocBlock, index);
  51. pages.Add(page);
  52. }
  53. return new KernelUpdateLog(pages);
  54. }
  55. public List<KernelUpdateLogPage> Pages
  56. {
  57. get
  58. {
  59. return m_pages;
  60. }
  61. }
  62. }
  63. }