NTFileSystemAdapter.Query.cs 9.6 KB

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