NTFileSystemAdapter.Query.cs 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. /* Copyright (C) 2014-2018 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.IO;
  10. using Utilities;
  11. namespace SMBLibrary
  12. {
  13. public partial class NTFileSystemAdapter
  14. {
  15. public NTStatus GetFileInformation(out FileInformation result, object handle, FileInformationClass informationClass)
  16. {
  17. FileHandle fileHandle = (FileHandle)handle;
  18. string path = fileHandle.Path;
  19. FileSystemEntry entry;
  20. try
  21. {
  22. entry = m_fileSystem.GetEntry(path);
  23. }
  24. catch (Exception ex)
  25. {
  26. NTStatus status = ToNTStatus(ex);
  27. Log(Severity.Verbose, "GetFileInformation on '{0}' failed. {1}", path, status);
  28. result = null;
  29. return status;
  30. }
  31. switch (informationClass)
  32. {
  33. case FileInformationClass.FileBasicInformation:
  34. {
  35. FileBasicInformation information = new FileBasicInformation();
  36. information.CreationTime = entry.CreationTime;
  37. information.LastAccessTime = entry.LastAccessTime;
  38. information.LastWriteTime = entry.LastWriteTime;
  39. information.ChangeTime = entry.LastWriteTime;
  40. information.FileAttributes = GetFileAttributes(entry);
  41. result = information;
  42. return NTStatus.STATUS_SUCCESS;
  43. }
  44. case FileInformationClass.FileStandardInformation:
  45. {
  46. FileStandardInformation information = new FileStandardInformation();
  47. information.AllocationSize = (long)GetAllocationSize(entry.Size);
  48. information.EndOfFile = (long)entry.Size;
  49. information.Directory = entry.IsDirectory;
  50. information.DeletePending = fileHandle.DeleteOnClose;
  51. result = information;
  52. return NTStatus.STATUS_SUCCESS;
  53. }
  54. case FileInformationClass.FileInternalInformation:
  55. {
  56. FileInternalInformation information = new FileInternalInformation();
  57. result = information;
  58. return NTStatus.STATUS_SUCCESS;
  59. }
  60. case FileInformationClass.FileEaInformation:
  61. {
  62. FileEaInformation information = new FileEaInformation();
  63. information.EaSize = 0;
  64. result = information;
  65. return NTStatus.STATUS_SUCCESS;
  66. }
  67. case FileInformationClass.FileAccessInformation:
  68. {
  69. result = null;
  70. return NTStatus.STATUS_NOT_IMPLEMENTED;
  71. }
  72. case FileInformationClass.FileNameInformation:
  73. {
  74. FileNameInformation information = new FileNameInformation();
  75. information.FileName = entry.Name;
  76. result = information;
  77. return NTStatus.STATUS_SUCCESS;
  78. }
  79. case FileInformationClass.FilePositionInformation:
  80. {
  81. result = null;
  82. return NTStatus.STATUS_NOT_IMPLEMENTED;
  83. }
  84. case FileInformationClass.FileFullEaInformation:
  85. {
  86. result = null;
  87. return NTStatus.STATUS_NOT_IMPLEMENTED;
  88. }
  89. case FileInformationClass.FileModeInformation:
  90. {
  91. result = null;
  92. return NTStatus.STATUS_NOT_IMPLEMENTED;
  93. }
  94. case FileInformationClass.FileAlignmentInformation:
  95. {
  96. result = null;
  97. return NTStatus.STATUS_NOT_IMPLEMENTED;
  98. }
  99. case FileInformationClass.FileAllInformation:
  100. {
  101. FileAllInformation information = new FileAllInformation();
  102. information.BasicInformation.CreationTime = entry.CreationTime;
  103. information.BasicInformation.LastAccessTime = entry.LastAccessTime;
  104. information.BasicInformation.LastWriteTime = entry.LastWriteTime;
  105. information.BasicInformation.ChangeTime = entry.LastWriteTime;
  106. information.BasicInformation.FileAttributes = GetFileAttributes(entry);
  107. information.StandardInformation.AllocationSize = (long)GetAllocationSize(entry.Size);
  108. information.StandardInformation.EndOfFile = (long)entry.Size;
  109. information.StandardInformation.Directory = entry.IsDirectory;
  110. information.StandardInformation.DeletePending = fileHandle.DeleteOnClose;
  111. information.NameInformation.FileName = entry.Name;
  112. result = information;
  113. return NTStatus.STATUS_SUCCESS;
  114. }
  115. case FileInformationClass.FileAlternateNameInformation:
  116. {
  117. result = null;
  118. return NTStatus.STATUS_NOT_IMPLEMENTED;
  119. }
  120. case FileInformationClass.FileStreamInformation:
  121. {
  122. // This information class is used to enumerate the data streams of a file or a directory.
  123. // A buffer of FileStreamInformation data elements is returned by the server.
  124. FileStreamInformation information = new FileStreamInformation();
  125. FileStreamEntry streamEntry = new FileStreamEntry();
  126. streamEntry.StreamSize = (long)entry.Size;
  127. streamEntry.StreamAllocationSize = (long)GetAllocationSize(entry.Size);
  128. streamEntry.StreamName = "::$DATA";
  129. information.Entries.Add(streamEntry);
  130. result = information;
  131. return NTStatus.STATUS_SUCCESS;
  132. }
  133. case FileInformationClass.FilePipeInformation:
  134. {
  135. result = null;
  136. return NTStatus.STATUS_NOT_IMPLEMENTED;
  137. }
  138. case FileInformationClass.FilePipeLocalInformation:
  139. {
  140. result = null;
  141. return NTStatus.STATUS_NOT_IMPLEMENTED;
  142. }
  143. case FileInformationClass.FilePipeRemoteInformation:
  144. {
  145. result = null;
  146. return NTStatus.STATUS_NOT_IMPLEMENTED;
  147. }
  148. case FileInformationClass.FileCompressionInformation:
  149. {
  150. result = null;
  151. return NTStatus.STATUS_NOT_IMPLEMENTED;
  152. }
  153. case FileInformationClass.FileNetworkOpenInformation:
  154. {
  155. FileNetworkOpenInformation information = new FileNetworkOpenInformation();
  156. information.CreationTime = entry.CreationTime;
  157. information.LastAccessTime = entry.LastAccessTime;
  158. information.LastWriteTime = entry.LastWriteTime;
  159. information.ChangeTime = entry.LastWriteTime;
  160. information.AllocationSize = (long)GetAllocationSize(entry.Size);
  161. information.EndOfFile = (long)entry.Size;
  162. information.FileAttributes = GetFileAttributes(entry);
  163. result = information;
  164. return NTStatus.STATUS_SUCCESS;
  165. }
  166. case FileInformationClass.FileAttributeTagInformation:
  167. {
  168. result = null;
  169. return NTStatus.STATUS_NOT_IMPLEMENTED;
  170. }
  171. default:
  172. result = null;
  173. return NTStatus.STATUS_INVALID_INFO_CLASS;
  174. }
  175. }
  176. public static FileAttributes GetFileAttributes(FileSystemEntry entry)
  177. {
  178. FileAttributes attributes = 0;
  179. if (entry.IsHidden)
  180. {
  181. attributes |= FileAttributes.Hidden;
  182. }
  183. if (entry.IsReadonly)
  184. {
  185. attributes |= FileAttributes.ReadOnly;
  186. }
  187. if (entry.IsArchived)
  188. {
  189. attributes |= FileAttributes.Archive;
  190. }
  191. if (entry.IsDirectory)
  192. {
  193. attributes |= FileAttributes.Directory;
  194. }
  195. if (attributes == 0)
  196. {
  197. attributes = FileAttributes.Normal;
  198. }
  199. return attributes;
  200. }
  201. }
  202. }