FindFileIDFullDirectoryInfo.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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.SMB1
  12. {
  13. /// <summary>
  14. /// SMB_FIND_FILE_ID_FULL_DIRECTORY_INFO
  15. /// </summary>
  16. public class FindFileIDFullDirectoryInfo : FindInformation
  17. {
  18. public const int FixedLength = 80;
  19. public uint NextEntryOffset;
  20. public uint FileIndex; // SHOULD be set to zero when sent in a response and SHOULD be ignored when received by the client
  21. public DateTime? CreationTime;
  22. public DateTime? LastAccessTime;
  23. public DateTime? LastWriteTime;
  24. public DateTime? LastAttrChangeTime;
  25. public long EndOfFile;
  26. public long AllocationSize;
  27. public ExtendedFileAttributes ExtFileAttributes;
  28. //uint FileNameLength; // In bytes, MUST exclude the null termination.
  29. public uint EASize;
  30. public uint Reserved;
  31. public ulong FileID;
  32. public string FileName; // OEM / Unicode character array. MUST be written as SMB_STRING, and read as fixed length string.
  33. public FindFileIDFullDirectoryInfo() : base(false)
  34. {
  35. }
  36. public FindFileIDFullDirectoryInfo(byte[] buffer, ref int offset, bool isUnicode) : base(false)
  37. {
  38. NextEntryOffset = LittleEndianReader.ReadUInt32(buffer, ref offset);
  39. FileIndex = LittleEndianReader.ReadUInt32(buffer, ref offset);
  40. CreationTime = FileTimeHelper.ReadNullableFileTime(buffer, ref offset);
  41. LastAccessTime = FileTimeHelper.ReadNullableFileTime(buffer, ref offset);
  42. LastWriteTime = FileTimeHelper.ReadNullableFileTime(buffer, ref offset);
  43. LastAttrChangeTime = FileTimeHelper.ReadNullableFileTime(buffer, ref offset);
  44. EndOfFile = LittleEndianReader.ReadInt64(buffer, ref offset);
  45. AllocationSize = LittleEndianReader.ReadInt64(buffer, ref offset);
  46. ExtFileAttributes = (ExtendedFileAttributes)LittleEndianReader.ReadUInt32(buffer, ref offset);
  47. uint fileNameLength = LittleEndianReader.ReadUInt32(buffer, ref offset);
  48. EASize = LittleEndianReader.ReadUInt32(buffer, ref offset);
  49. Reserved = LittleEndianReader.ReadUInt32(buffer, ref offset);
  50. FileID = LittleEndianReader.ReadUInt64(buffer, ref offset);
  51. FileName = SMB1Helper.ReadFixedLengthString(buffer, ref offset, isUnicode, (int)fileNameLength);
  52. }
  53. public override void WriteBytes(byte[] buffer, ref int offset, bool isUnicode)
  54. {
  55. uint fileNameLength = (byte)(isUnicode ? FileName.Length * 2 : FileName.Length);
  56. LittleEndianWriter.WriteUInt32(buffer, ref offset, NextEntryOffset);
  57. LittleEndianWriter.WriteUInt32(buffer, ref offset, FileIndex);
  58. FileTimeHelper.WriteFileTime(buffer, ref offset, CreationTime);
  59. FileTimeHelper.WriteFileTime(buffer, ref offset, LastAccessTime);
  60. FileTimeHelper.WriteFileTime(buffer, ref offset, LastWriteTime);
  61. FileTimeHelper.WriteFileTime(buffer, ref offset, LastAttrChangeTime);
  62. LittleEndianWriter.WriteInt64(buffer, ref offset, EndOfFile);
  63. LittleEndianWriter.WriteInt64(buffer, ref offset, AllocationSize);
  64. LittleEndianWriter.WriteUInt32(buffer, ref offset, (uint)ExtFileAttributes);
  65. LittleEndianWriter.WriteUInt32(buffer, ref offset, fileNameLength);
  66. LittleEndianWriter.WriteUInt32(buffer, ref offset, EASize);
  67. LittleEndianWriter.WriteUInt32(buffer, ref offset, Reserved);
  68. LittleEndianWriter.WriteUInt64(buffer, ref offset, FileID);
  69. SMB1Helper.WriteSMBString(buffer, ref offset, isUnicode, FileName);
  70. }
  71. public override int GetLength(bool isUnicode)
  72. {
  73. int length = FixedLength;
  74. if (isUnicode)
  75. {
  76. length += FileName.Length * 2 + 2;
  77. }
  78. else
  79. {
  80. length += FileName.Length + 1;
  81. }
  82. return length;
  83. }
  84. public override FindInformationLevel InformationLevel
  85. {
  86. get
  87. {
  88. return FindInformationLevel.SMB_FIND_FILE_ID_FULL_DIRECTORY_INFO;
  89. }
  90. }
  91. }
  92. }