FileFullEAInformation.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /* Copyright (C) 2014-2017 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 SMBLibrary
  12. {
  13. /// <summary>
  14. /// [MS-FSCC] 2.4.15 - FileFullEaInformation
  15. /// </summary>
  16. public class FileFullEAInformation : FileInformation
  17. {
  18. List<FileFullEAEntry> m_entries = new List<FileFullEAEntry>();
  19. public FileFullEAInformation()
  20. {
  21. }
  22. public FileFullEAInformation(byte[] buffer, int offset)
  23. {
  24. m_entries = ReadList(buffer, offset);
  25. }
  26. public override void WriteBytes(byte[] buffer, int offset)
  27. {
  28. WriteList(buffer, offset, m_entries);
  29. }
  30. public override FileInformationClass FileInformationClass
  31. {
  32. get
  33. {
  34. return FileInformationClass.FileFullEaInformation;
  35. }
  36. }
  37. public override int Length
  38. {
  39. get
  40. {
  41. int length = 0;
  42. for (int index = 0; index < m_entries.Count; index++)
  43. {
  44. length += m_entries[index].Length;
  45. if (index < m_entries.Count - 1)
  46. {
  47. // When multiple FILE_FULL_EA_INFORMATION data elements are present in the buffer, each MUST be aligned on a 4-byte boundary
  48. int padding = (4 - (length % 4)) % 4;
  49. length += padding;
  50. }
  51. }
  52. return length;
  53. }
  54. }
  55. public static List<FileFullEAEntry> ReadList(byte[] buffer, int offset)
  56. {
  57. List<FileFullEAEntry> result = new List<FileFullEAEntry>();
  58. FileFullEAEntry entry;
  59. do
  60. {
  61. entry = new FileFullEAEntry(buffer, offset);
  62. result.Add(entry);
  63. offset += (int)entry.NextEntryOffset;
  64. }
  65. while (entry.NextEntryOffset != 0);
  66. return result;
  67. }
  68. public static void WriteList(byte[] buffer, int offset, List<FileFullEAEntry> list)
  69. {
  70. for (int index = 0; index < list.Count; index++)
  71. {
  72. FileFullEAEntry entry = list[index];
  73. entry.WriteBytes(buffer, offset);
  74. int entryLength = entry.Length;
  75. offset += entryLength;
  76. if (index < list.Count - 1)
  77. {
  78. // When multiple FILE_FULL_EA_INFORMATION data elements are present in the buffer, each MUST be aligned on a 4-byte boundary
  79. int padding = (4 - (entryLength % 4)) % 4;
  80. offset += padding;
  81. }
  82. }
  83. }
  84. }
  85. }