NTFileSystemAdapter.QueryDirectory.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  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.Text;
  10. using Utilities;
  11. namespace SMBLibrary
  12. {
  13. public partial class NTFileSystemAdapter
  14. {
  15. /// <param name="fileName">Expression as described in [MS-FSA] 2.1.4.4</param>
  16. public NTStatus QueryDirectory(out List<QueryDirectoryFileInformation> result, object handle, string fileName, FileInformationClass informationClass)
  17. {
  18. result = null;
  19. FileHandle directoryHandle = (FileHandle)handle;
  20. if (!directoryHandle.IsDirectory)
  21. {
  22. return NTStatus.STATUS_INVALID_PARAMETER;
  23. }
  24. if (fileName == String.Empty)
  25. {
  26. return NTStatus.STATUS_INVALID_PARAMETER;
  27. }
  28. string path = directoryHandle.Path;
  29. bool findExactName = !ContainsWildcardCharacters(fileName);
  30. List<FileSystemEntry> entries;
  31. if (!findExactName)
  32. {
  33. try
  34. {
  35. entries = m_fileSystem.ListEntriesInDirectory(path);
  36. }
  37. catch (UnauthorizedAccessException)
  38. {
  39. return NTStatus.STATUS_ACCESS_DENIED;
  40. }
  41. entries = GetFiltered(entries, fileName);
  42. // Windows will return "." and ".." when enumerating directory files.
  43. // The SMB1 / SMB2 specifications mandate that when zero entries are found, the server SHOULD / MUST return STATUS_NO_SUCH_FILE.
  44. // For this reason, we MUST include the current directory and/or parent directory when enumerating a directory
  45. // in order to diffrentiate between a directory that does not exist and a directory with no entries.
  46. FileSystemEntry currentDirectory = m_fileSystem.GetEntry(path);
  47. currentDirectory.Name = ".";
  48. FileSystemEntry parentDirectory = m_fileSystem.GetEntry(FileSystem.GetParentDirectory(path));
  49. parentDirectory.Name = "..";
  50. entries.Insert(0, parentDirectory);
  51. entries.Insert(0, currentDirectory);
  52. }
  53. else
  54. {
  55. path = FileSystem.GetDirectoryPath(path);
  56. FileSystemEntry entry;
  57. try
  58. {
  59. entry = m_fileSystem.GetEntry(path + fileName);
  60. }
  61. catch (Exception ex)
  62. {
  63. NTStatus status = ToNTStatus(ex);
  64. Log(Severity.Verbose, "QueryDirectory: Error querying '{0}'. {1}.", path, status);
  65. return status;
  66. }
  67. entries = new List<FileSystemEntry>();
  68. entries.Add(entry);
  69. }
  70. try
  71. {
  72. result = FromFileSystemEntries(entries, informationClass);
  73. }
  74. catch (UnsupportedInformationLevelException)
  75. {
  76. return NTStatus.STATUS_INVALID_INFO_CLASS;
  77. }
  78. return NTStatus.STATUS_SUCCESS;
  79. }
  80. /// <param name="expression">Expression as described in [MS-FSA] 2.1.4.4</param>
  81. private static List<FileSystemEntry> GetFiltered(List<FileSystemEntry> entries, string expression)
  82. {
  83. if (expression == "*")
  84. {
  85. return entries;
  86. }
  87. List<FileSystemEntry> result = new List<FileSystemEntry>();
  88. foreach (FileSystemEntry entry in entries)
  89. {
  90. if (IsFileNameInExpression(entry.Name, expression))
  91. {
  92. result.Add(entry);
  93. }
  94. }
  95. return result;
  96. }
  97. private static bool ContainsWildcardCharacters(string expression)
  98. {
  99. return (expression.Contains("?") || expression.Contains("*") || expression.Contains("\"") || expression.Contains(">") || expression.Contains("<"));
  100. }
  101. // [MS-FSA] 2.1.4.4
  102. // The FileName is string compared with Expression using the following wildcard rules:
  103. // * (asterisk) Matches zero or more characters.
  104. // ? (question mark) Matches a single character.
  105. // DOS_DOT (" quotation mark) Matches either a period or zero characters beyond the name string.
  106. // DOS_QM (> greater than) Matches any single character or, upon encountering a period or end of name string, advances the expression to the end of the set of contiguous DOS_QMs.
  107. // DOS_STAR (< less than) Matches zero or more characters until encountering and matching the final . in the name.
  108. private static bool IsFileNameInExpression(string fileName, string expression)
  109. {
  110. if (expression == "*")
  111. {
  112. return true;
  113. }
  114. else if (expression.EndsWith("*")) // expression.Length > 1
  115. {
  116. string desiredFileNameStart = expression.Substring(0, expression.Length - 1);
  117. bool findExactNameWithoutExtension = false;
  118. if (desiredFileNameStart.EndsWith("\""))
  119. {
  120. findExactNameWithoutExtension = true;
  121. desiredFileNameStart = desiredFileNameStart.Substring(0, desiredFileNameStart.Length - 1);
  122. }
  123. if (!findExactNameWithoutExtension)
  124. {
  125. if (fileName.StartsWith(desiredFileNameStart, StringComparison.OrdinalIgnoreCase))
  126. {
  127. return true;
  128. }
  129. }
  130. else
  131. {
  132. if (fileName.StartsWith(desiredFileNameStart + ".", StringComparison.OrdinalIgnoreCase) ||
  133. fileName.Equals(desiredFileNameStart, StringComparison.OrdinalIgnoreCase))
  134. {
  135. return true;
  136. }
  137. }
  138. }
  139. else if (expression.StartsWith("<"))
  140. {
  141. string desiredFileNameEnd = expression.Substring(1);
  142. if (fileName.EndsWith(desiredFileNameEnd, StringComparison.OrdinalIgnoreCase))
  143. {
  144. return true;
  145. }
  146. }
  147. else if (String.Equals(fileName, expression, StringComparison.OrdinalIgnoreCase))
  148. {
  149. return true;
  150. }
  151. return false;
  152. }
  153. private static List<QueryDirectoryFileInformation> FromFileSystemEntries(List<FileSystemEntry> entries, FileInformationClass informationClass)
  154. {
  155. List<QueryDirectoryFileInformation> result = new List<QueryDirectoryFileInformation>();
  156. foreach (FileSystemEntry entry in entries)
  157. {
  158. QueryDirectoryFileInformation information = FromFileSystemEntry(entry, informationClass);
  159. result.Add(information);
  160. }
  161. return result;
  162. }
  163. private static QueryDirectoryFileInformation FromFileSystemEntry(FileSystemEntry entry, FileInformationClass informationClass)
  164. {
  165. switch (informationClass)
  166. {
  167. case FileInformationClass.FileBothDirectoryInformation:
  168. {
  169. FileBothDirectoryInformation result = new FileBothDirectoryInformation();
  170. result.CreationTime = entry.CreationTime;
  171. result.LastAccessTime = entry.LastAccessTime;
  172. result.LastWriteTime = entry.LastWriteTime;
  173. result.ChangeTime = entry.LastWriteTime;
  174. result.EndOfFile = (long)entry.Size;
  175. result.AllocationSize = (long)GetAllocationSize(entry.Size);
  176. result.FileAttributes = GetFileAttributes(entry);
  177. result.EaSize = 0;
  178. result.FileName = entry.Name;
  179. return result;
  180. }
  181. case FileInformationClass.FileDirectoryInformation:
  182. {
  183. FileDirectoryInformation result = new FileDirectoryInformation();
  184. result.CreationTime = entry.CreationTime;
  185. result.LastAccessTime = entry.LastAccessTime;
  186. result.LastWriteTime = entry.LastWriteTime;
  187. result.ChangeTime = entry.LastWriteTime;
  188. result.EndOfFile = (long)entry.Size;
  189. result.AllocationSize = (long)GetAllocationSize(entry.Size);
  190. result.FileAttributes = GetFileAttributes(entry);
  191. result.FileName = entry.Name;
  192. return result;
  193. }
  194. case FileInformationClass.FileFullDirectoryInformation:
  195. {
  196. FileFullDirectoryInformation result = new FileFullDirectoryInformation();
  197. result.CreationTime = entry.CreationTime;
  198. result.LastAccessTime = entry.LastAccessTime;
  199. result.LastWriteTime = entry.LastWriteTime;
  200. result.ChangeTime = entry.LastWriteTime;
  201. result.EndOfFile = (long)entry.Size;
  202. result.AllocationSize = (long)GetAllocationSize(entry.Size);
  203. result.FileAttributes = GetFileAttributes(entry);
  204. result.EaSize = 0;
  205. result.FileName = entry.Name;
  206. return result;
  207. }
  208. case FileInformationClass.FileIdBothDirectoryInformation:
  209. {
  210. FileIdBothDirectoryInformation result = new FileIdBothDirectoryInformation();
  211. result.CreationTime = entry.CreationTime;
  212. result.LastAccessTime = entry.LastAccessTime;
  213. result.LastWriteTime = entry.LastWriteTime;
  214. result.ChangeTime = entry.LastWriteTime;
  215. result.EndOfFile = (long)entry.Size;
  216. result.AllocationSize = (long)GetAllocationSize(entry.Size);
  217. result.FileAttributes = GetFileAttributes(entry);
  218. result.EaSize = 0;
  219. result.FileId = 0;
  220. result.FileName = entry.Name;
  221. return result;
  222. }
  223. case FileInformationClass.FileIdFullDirectoryInformation:
  224. {
  225. FileIdFullDirectoryInformation result = new FileIdFullDirectoryInformation();
  226. result.CreationTime = entry.CreationTime;
  227. result.LastAccessTime = entry.LastAccessTime;
  228. result.LastWriteTime = entry.LastWriteTime;
  229. result.ChangeTime = entry.LastWriteTime;
  230. result.EndOfFile = (long)entry.Size;
  231. result.AllocationSize = (long)GetAllocationSize(entry.Size);
  232. result.FileAttributes = GetFileAttributes(entry);
  233. result.EaSize = 0;
  234. result.FileId = 0;
  235. result.FileName = entry.Name;
  236. return result;
  237. }
  238. case FileInformationClass.FileNamesInformation:
  239. {
  240. FileNamesInformation result = new FileNamesInformation();
  241. result.FileName = entry.Name;
  242. return result;
  243. }
  244. default:
  245. {
  246. throw new UnsupportedInformationLevelException();
  247. }
  248. }
  249. }
  250. }
  251. }