NTFileSystemAdapter.QueryDirectory.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  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
  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 = m_fileSystem.GetEntry(path + fileName);
  57. if (entry == null)
  58. {
  59. return NTStatus.STATUS_NO_SUCH_FILE;
  60. }
  61. entries = new List<FileSystemEntry>();
  62. entries.Add(entry);
  63. }
  64. try
  65. {
  66. result = FromFileSystemEntries(entries, informationClass);
  67. }
  68. catch (UnsupportedInformationLevelException)
  69. {
  70. return NTStatus.STATUS_INVALID_INFO_CLASS;
  71. }
  72. return NTStatus.STATUS_SUCCESS;
  73. }
  74. /// <param name="expression">Expression as described in [MS-FSA] 2.1.4.4</param>
  75. private static List<FileSystemEntry> GetFiltered(List<FileSystemEntry> entries, string expression)
  76. {
  77. if (expression == "*")
  78. {
  79. return entries;
  80. }
  81. List<FileSystemEntry> result = new List<FileSystemEntry>();
  82. foreach (FileSystemEntry entry in entries)
  83. {
  84. if (IsFileNameInExpression(entry.Name, expression))
  85. {
  86. result.Add(entry);
  87. }
  88. }
  89. return result;
  90. }
  91. private static bool ContainsWildcardCharacters(string expression)
  92. {
  93. return (expression.Contains("?") || expression.Contains("*") || expression.Contains("\"") || expression.Contains(">") || expression.Contains("<"));
  94. }
  95. // [MS-FSA] 2.1.4.4
  96. // The FileName is string compared with Expression using the following wildcard rules:
  97. // * (asterisk) Matches zero or more characters.
  98. // ? (question mark) Matches a single character.
  99. // DOS_DOT (" quotation mark) Matches either a period or zero characters beyond the name string.
  100. // 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.
  101. // DOS_STAR (< less than) Matches zero or more characters until encountering and matching the final . in the name.
  102. private static bool IsFileNameInExpression(string fileName, string expression)
  103. {
  104. if (expression == "*")
  105. {
  106. return true;
  107. }
  108. else if (expression.EndsWith("*")) // expression.Length > 1
  109. {
  110. string desiredFileNameStart = expression.Substring(0, expression.Length - 1);
  111. bool findExactNameWithoutExtension = false;
  112. if (desiredFileNameStart.EndsWith("\""))
  113. {
  114. findExactNameWithoutExtension = true;
  115. desiredFileNameStart = desiredFileNameStart.Substring(0, desiredFileNameStart.Length - 1);
  116. }
  117. if (!findExactNameWithoutExtension)
  118. {
  119. if (fileName.StartsWith(desiredFileNameStart, StringComparison.OrdinalIgnoreCase))
  120. {
  121. return true;
  122. }
  123. }
  124. else
  125. {
  126. if (fileName.StartsWith(desiredFileNameStart + ".", StringComparison.OrdinalIgnoreCase) ||
  127. fileName.Equals(desiredFileNameStart, StringComparison.OrdinalIgnoreCase))
  128. {
  129. return true;
  130. }
  131. }
  132. }
  133. else if (expression.StartsWith("<"))
  134. {
  135. string desiredFileNameEnd = expression.Substring(1);
  136. if (fileName.EndsWith(desiredFileNameEnd, StringComparison.OrdinalIgnoreCase))
  137. {
  138. return true;
  139. }
  140. }
  141. else if (String.Equals(fileName, expression, StringComparison.OrdinalIgnoreCase))
  142. {
  143. return true;
  144. }
  145. return false;
  146. }
  147. private static List<QueryDirectoryFileInformation> FromFileSystemEntries(List<FileSystemEntry> entries, FileInformationClass informationClass)
  148. {
  149. List<QueryDirectoryFileInformation> result = new List<QueryDirectoryFileInformation>();
  150. foreach (FileSystemEntry entry in entries)
  151. {
  152. QueryDirectoryFileInformation information = FromFileSystemEntry(entry, informationClass);
  153. result.Add(information);
  154. }
  155. return result;
  156. }
  157. private static QueryDirectoryFileInformation FromFileSystemEntry(FileSystemEntry entry, FileInformationClass informationClass)
  158. {
  159. switch (informationClass)
  160. {
  161. case FileInformationClass.FileBothDirectoryInformation:
  162. {
  163. FileBothDirectoryInformation result = new FileBothDirectoryInformation();
  164. result.CreationTime = entry.CreationTime;
  165. result.LastAccessTime = entry.LastAccessTime;
  166. result.LastWriteTime = entry.LastWriteTime;
  167. result.ChangeTime = entry.LastWriteTime;
  168. result.EndOfFile = (long)entry.Size;
  169. result.AllocationSize = (long)GetAllocationSize(entry.Size);
  170. result.FileAttributes = GetFileAttributes(entry);
  171. result.EaSize = 0;
  172. result.ShortName = GetShortName(entry.Name);
  173. result.FileName = entry.Name;
  174. return result;
  175. }
  176. case FileInformationClass.FileDirectoryInformation:
  177. {
  178. FileDirectoryInformation result = new FileDirectoryInformation();
  179. result.CreationTime = entry.CreationTime;
  180. result.LastAccessTime = entry.LastAccessTime;
  181. result.LastWriteTime = entry.LastWriteTime;
  182. result.ChangeTime = entry.LastWriteTime;
  183. result.EndOfFile = (long)entry.Size;
  184. result.AllocationSize = (long)GetAllocationSize(entry.Size);
  185. result.FileAttributes = GetFileAttributes(entry);
  186. result.FileName = entry.Name;
  187. return result;
  188. }
  189. case FileInformationClass.FileFullDirectoryInformation:
  190. {
  191. FileFullDirectoryInformation result = new FileFullDirectoryInformation();
  192. result.CreationTime = entry.CreationTime;
  193. result.LastAccessTime = entry.LastAccessTime;
  194. result.LastWriteTime = entry.LastWriteTime;
  195. result.ChangeTime = entry.LastWriteTime;
  196. result.EndOfFile = (long)entry.Size;
  197. result.AllocationSize = (long)GetAllocationSize(entry.Size);
  198. result.FileAttributes = GetFileAttributes(entry);
  199. result.EaSize = 0;
  200. result.FileName = entry.Name;
  201. return result;
  202. }
  203. case FileInformationClass.FileIdBothDirectoryInformation:
  204. {
  205. FileIdBothDirectoryInformation result = new FileIdBothDirectoryInformation();
  206. result.CreationTime = entry.CreationTime;
  207. result.LastAccessTime = entry.LastAccessTime;
  208. result.LastWriteTime = entry.LastWriteTime;
  209. result.ChangeTime = entry.LastWriteTime;
  210. result.EndOfFile = (long)entry.Size;
  211. result.AllocationSize = (long)GetAllocationSize(entry.Size);
  212. result.FileAttributes = GetFileAttributes(entry);
  213. result.EaSize = 0;
  214. result.ShortName = GetShortName(entry.Name);
  215. result.FileId = 0;
  216. result.FileName = entry.Name;
  217. return result;
  218. }
  219. case FileInformationClass.FileIdFullDirectoryInformation:
  220. {
  221. FileIdFullDirectoryInformation result = new FileIdFullDirectoryInformation();
  222. result.CreationTime = entry.CreationTime;
  223. result.LastAccessTime = entry.LastAccessTime;
  224. result.LastWriteTime = entry.LastWriteTime;
  225. result.ChangeTime = entry.LastWriteTime;
  226. result.EndOfFile = (long)entry.Size;
  227. result.AllocationSize = (long)GetAllocationSize(entry.Size);
  228. result.FileAttributes = GetFileAttributes(entry);
  229. result.EaSize = 0;
  230. result.FileId = 0;
  231. result.FileName = entry.Name;
  232. return result;
  233. }
  234. case FileInformationClass.FileNamesInformation:
  235. {
  236. FileNamesInformation result = new FileNamesInformation();
  237. result.FileName = entry.Name;
  238. return result;
  239. }
  240. default:
  241. {
  242. throw new UnsupportedInformationLevelException();
  243. }
  244. }
  245. }
  246. }
  247. }