NTFileSystemAdapter.Query.cs 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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.Verbose, "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. FileStreamEntry streamEntry = new FileStreamEntry();
  131. streamEntry.StreamSize = (long)entry.Size;
  132. streamEntry.StreamAllocationSize = (long)GetAllocationSize(entry.Size);
  133. streamEntry.StreamName = "::$DATA";
  134. information.Entries.Add(streamEntry);
  135. result = information;
  136. return NTStatus.STATUS_SUCCESS;
  137. }
  138. case FileInformationClass.FilePipeInformation:
  139. {
  140. result = null;
  141. return NTStatus.STATUS_NOT_IMPLEMENTED;
  142. }
  143. case FileInformationClass.FilePipeLocalInformation:
  144. {
  145. result = null;
  146. return NTStatus.STATUS_NOT_IMPLEMENTED;
  147. }
  148. case FileInformationClass.FilePipeRemoteInformation:
  149. {
  150. result = null;
  151. return NTStatus.STATUS_NOT_IMPLEMENTED;
  152. }
  153. case FileInformationClass.FileCompressionInformation:
  154. {
  155. result = null;
  156. return NTStatus.STATUS_NOT_IMPLEMENTED;
  157. }
  158. case FileInformationClass.FileNetworkOpenInformation:
  159. {
  160. FileNetworkOpenInformation information = new FileNetworkOpenInformation();
  161. information.CreationTime = entry.CreationTime;
  162. information.LastAccessTime = entry.LastAccessTime;
  163. information.LastWriteTime = entry.LastWriteTime;
  164. information.ChangeTime = entry.LastWriteTime;
  165. information.AllocationSize = (long)GetAllocationSize(entry.Size);
  166. information.EndOfFile = (long)entry.Size;
  167. information.FileAttributes = GetFileAttributes(entry);
  168. result = information;
  169. return NTStatus.STATUS_SUCCESS;
  170. }
  171. case FileInformationClass.FileAttributeTagInformation:
  172. {
  173. result = null;
  174. return NTStatus.STATUS_NOT_IMPLEMENTED;
  175. }
  176. default:
  177. result = null;
  178. return NTStatus.STATUS_INVALID_INFO_CLASS;
  179. }
  180. }
  181. public static FileAttributes GetFileAttributes(FileSystemEntry entry)
  182. {
  183. FileAttributes attributes = 0;
  184. if (entry.IsHidden)
  185. {
  186. attributes |= FileAttributes.Hidden;
  187. }
  188. if (entry.IsReadonly)
  189. {
  190. attributes |= FileAttributes.ReadOnly;
  191. }
  192. if (entry.IsArchived)
  193. {
  194. attributes |= FileAttributes.Archive;
  195. }
  196. if (entry.IsDirectory)
  197. {
  198. attributes |= FileAttributes.Directory;
  199. }
  200. if (attributes == 0)
  201. {
  202. attributes = FileAttributes.Normal;
  203. }
  204. return attributes;
  205. }
  206. }
  207. }