NTDirectoryFileSystem.cs 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444
  1. /* Copyright (C) 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 System.Runtime.InteropServices;
  11. using System.Threading;
  12. using Microsoft.Win32.SafeHandles;
  13. using Utilities;
  14. namespace SMBLibrary.Win32
  15. {
  16. [StructLayout(LayoutKind.Sequential)]
  17. public struct UNICODE_STRING : IDisposable
  18. {
  19. public ushort Length;
  20. public ushort MaximumLength;
  21. private IntPtr Buffer;
  22. public UNICODE_STRING(string value)
  23. {
  24. Length = (ushort)(value.Length * 2);
  25. MaximumLength = (ushort)(value.Length + 2);
  26. Buffer = Marshal.StringToHGlobalUni(value);
  27. }
  28. public void Dispose()
  29. {
  30. Marshal.FreeHGlobal(Buffer);
  31. Buffer = IntPtr.Zero;
  32. }
  33. public override string ToString()
  34. {
  35. return Marshal.PtrToStringUni(Buffer);
  36. }
  37. }
  38. [StructLayoutAttribute(LayoutKind.Sequential)]
  39. public struct OBJECT_ATTRIBUTES
  40. {
  41. public int Length;
  42. public IntPtr RootDirectory;
  43. public IntPtr ObjectName;
  44. public uint Attributes;
  45. public IntPtr SecurityDescriptor;
  46. public IntPtr SecurityQualityOfService;
  47. }
  48. [StructLayoutAttribute(LayoutKind.Sequential)]
  49. public struct IO_STATUS_BLOCK
  50. {
  51. public UInt32 Status;
  52. public IntPtr Information;
  53. }
  54. internal class PendingRequest
  55. {
  56. public IntPtr FileHandle;
  57. public uint ThreadID;
  58. public IO_STATUS_BLOCK IOStatusBlock;
  59. public bool Cleanup;
  60. }
  61. public class NTDirectoryFileSystem : INTFileStore
  62. {
  63. [DllImport("ntdll.dll", ExactSpelling = true, SetLastError = false)]
  64. private static extern NTStatus NtCreateFile(out IntPtr handle, uint desiredAccess, ref OBJECT_ATTRIBUTES objectAttributes, out IO_STATUS_BLOCK ioStatusBlock, ref long allocationSize, FileAttributes fileAttributes, ShareAccess shareAccess, CreateDisposition createDisposition, CreateOptions createOptions, IntPtr eaBuffer, uint eaLength);
  65. [DllImport("ntdll.dll", ExactSpelling = true, SetLastError = false)]
  66. private static extern NTStatus NtClose(IntPtr handle);
  67. [DllImport("ntdll.dll", ExactSpelling = true, SetLastError = false)]
  68. private static extern NTStatus NtReadFile(IntPtr handle, IntPtr evt, IntPtr apcRoutine, IntPtr apcContext, out IO_STATUS_BLOCK ioStatusBlock, byte[] buffer, uint length, ref long byteOffset, IntPtr key);
  69. [DllImport("ntdll.dll", ExactSpelling = true, SetLastError = false)]
  70. private static extern NTStatus NtWriteFile(IntPtr handle, IntPtr evt, IntPtr apcRoutine, IntPtr apcContext, out IO_STATUS_BLOCK ioStatusBlock, byte[] buffer, uint length, ref long byteOffset, IntPtr key);
  71. [DllImport("ntdll.dll", ExactSpelling = true, SetLastError = false)]
  72. private static extern NTStatus NtFlushBuffersFile(IntPtr handle, out IO_STATUS_BLOCK ioStatusBlock);
  73. [DllImport("ntdll.dll", ExactSpelling = true, SetLastError = false)]
  74. private static extern NTStatus NtQueryDirectoryFile(IntPtr handle, IntPtr evt, IntPtr apcRoutine, IntPtr apcContext, out IO_STATUS_BLOCK ioStatusBlock, byte[] fileInformation, uint length, uint fileInformationClass, bool returnSingleEntry, ref UNICODE_STRING fileName, bool restartScan);
  75. [DllImport("ntdll.dll", ExactSpelling = true, SetLastError = false)]
  76. private static extern NTStatus NtQueryInformationFile(IntPtr handle, out IO_STATUS_BLOCK ioStatusBlock, byte[] fileInformation, uint length, uint fileInformationClass);
  77. [DllImport("ntdll.dll", ExactSpelling = true, SetLastError = false)]
  78. private static extern NTStatus NtSetInformationFile(IntPtr handle, out IO_STATUS_BLOCK ioStatusBlock, byte[] fileInformation, uint length, uint fileInformationClass);
  79. [DllImport("ntdll.dll", ExactSpelling = true, SetLastError = false)]
  80. private static extern NTStatus NtQueryVolumeInformationFile(IntPtr handle, out IO_STATUS_BLOCK ioStatusBlock, byte[] fsInformation, uint length, uint fsInformationClass);
  81. [DllImport("ntdll.dll", ExactSpelling = true, SetLastError = false)]
  82. private static extern NTStatus NtNotifyChangeDirectoryFile(IntPtr handle, IntPtr evt, IntPtr apcRoutine, IntPtr apcContext, out IO_STATUS_BLOCK ioStatusBlock, byte[] buffer, uint bufferSize, NotifyChangeFilter completionFilter, bool watchTree);
  83. [DllImport("ntdll.dll", ExactSpelling = true, SetLastError = false)]
  84. private static extern NTStatus NtAlertThread(IntPtr threadHandle);
  85. // Available starting from Windows Vista.
  86. [DllImport("ntdll.dll", ExactSpelling = true, SetLastError = false)]
  87. private static extern NTStatus NtCancelSynchronousIoFile(IntPtr threadHandle, ref IO_STATUS_BLOCK ioRequestToCancel, out IO_STATUS_BLOCK ioStatusBlock);
  88. private DirectoryInfo m_directory;
  89. private PendingRequestCollection m_pendingRequests = new PendingRequestCollection();
  90. public NTDirectoryFileSystem(string path) : this(new DirectoryInfo(path))
  91. {
  92. }
  93. public NTDirectoryFileSystem(DirectoryInfo directory)
  94. {
  95. m_directory = directory;
  96. }
  97. private OBJECT_ATTRIBUTES InitializeObjectAttributes(UNICODE_STRING objectName)
  98. {
  99. OBJECT_ATTRIBUTES objectAttributes = new OBJECT_ATTRIBUTES();
  100. objectAttributes.RootDirectory = IntPtr.Zero;
  101. objectAttributes.ObjectName = Marshal.AllocHGlobal(Marshal.SizeOf(objectName));
  102. Marshal.StructureToPtr(objectName, objectAttributes.ObjectName, false);
  103. objectAttributes.SecurityDescriptor = IntPtr.Zero;
  104. objectAttributes.SecurityQualityOfService = IntPtr.Zero;
  105. objectAttributes.Length = Marshal.SizeOf(objectAttributes);
  106. return objectAttributes;
  107. }
  108. private NTStatus CreateFile(out IntPtr handle, out FileStatus fileStatus, string nativePath, AccessMask desiredAccess, long allocationSize, FileAttributes fileAttributes, ShareAccess shareAccess, CreateDisposition createDisposition, CreateOptions createOptions)
  109. {
  110. UNICODE_STRING objectName = new UNICODE_STRING(nativePath);
  111. OBJECT_ATTRIBUTES objectAttributes = InitializeObjectAttributes(objectName);
  112. IO_STATUS_BLOCK ioStatusBlock;
  113. NTStatus status = NtCreateFile(out handle, (uint)desiredAccess, ref objectAttributes, out ioStatusBlock, ref allocationSize, fileAttributes, shareAccess, createDisposition, createOptions, IntPtr.Zero, 0);
  114. fileStatus = (FileStatus)ioStatusBlock.Information;
  115. return status;
  116. }
  117. private string ToNativePath(string path)
  118. {
  119. if (!path.StartsWith(@"\"))
  120. {
  121. path = @"\" + path;
  122. }
  123. return @"\??\" + m_directory.FullName + path;
  124. }
  125. public NTStatus CreateFile(out object handle, out FileStatus fileStatus, string path, AccessMask desiredAccess, FileAttributes fileAttributes, ShareAccess shareAccess, CreateDisposition createDisposition, CreateOptions createOptions, SecurityContext securityContext)
  126. {
  127. IntPtr fileHandle;
  128. string nativePath = ToNativePath(path);
  129. // NtQueryDirectoryFile will return STATUS_PENDING if the directory handle was not opened with SYNCHRONIZE and FILE_SYNCHRONOUS_IO_ALERT or FILE_SYNCHRONOUS_IO_NONALERT.
  130. // Our usage of NtNotifyChangeDirectoryFile assumes the directory handle is opened with SYNCHRONIZE and FILE_SYNCHRONOUS_IO_ALERT (or FILE_SYNCHRONOUS_IO_NONALERT starting from Windows Vista).
  131. // Note: Sometimes a directory will be opened without specifying FILE_DIRECTORY_FILE.
  132. desiredAccess.Directory |= DirectoryAccessMask.SYNCHRONIZE;
  133. createOptions &= ~CreateOptions.FILE_SYNCHRONOUS_IO_NONALERT;
  134. createOptions |= CreateOptions.FILE_SYNCHRONOUS_IO_ALERT;
  135. if ((createOptions & CreateOptions.FILE_NO_INTERMEDIATE_BUFFERING) > 0 &&
  136. (desiredAccess.File & FileAccessMask.FILE_APPEND_DATA) > 0)
  137. {
  138. // FILE_NO_INTERMEDIATE_BUFFERING is incompatible with FILE_APPEND_DATA
  139. // [MS-SMB2] 3.3.5.9 suggests setting FILE_APPEND_DATA to zero in this case.
  140. desiredAccess = (AccessMask)((uint)desiredAccess & (uint)~FileAccessMask.FILE_APPEND_DATA);
  141. }
  142. NTStatus status = CreateFile(out fileHandle, out fileStatus, nativePath, desiredAccess, 0, fileAttributes, shareAccess, createDisposition, createOptions);
  143. handle = fileHandle;
  144. return status;
  145. }
  146. public NTStatus CloseFile(object handle)
  147. {
  148. // [MS-FSA] 2.1.5.4 The close operation has to complete any pending ChangeNotify request with STATUS_NOTIFY_CLEANUP.
  149. // - When closing a synchronous handle we must explicitly cancel any pending ChangeNotify request, otherwise the call to NtClose will hang.
  150. // We use request.Cleanup to tell that we should complete such ChangeNotify request with STATUS_NOTIFY_CLEANUP.
  151. // - When closing an asynchronous handle Windows will implicitly complete any pending ChangeNotify request with STATUS_NOTIFY_CLEANUP as required.
  152. List<PendingRequest> pendingRequests = m_pendingRequests.GetRequestsByHandle((IntPtr)handle);
  153. foreach (PendingRequest request in pendingRequests)
  154. {
  155. request.Cleanup = true;
  156. Cancel(request);
  157. }
  158. return NtClose((IntPtr)handle);
  159. }
  160. public NTStatus ReadFile(out byte[] data, object handle, long offset, int maxCount)
  161. {
  162. IO_STATUS_BLOCK ioStatusBlock;
  163. data = new byte[maxCount];
  164. NTStatus status = NtReadFile((IntPtr)handle, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, out ioStatusBlock, data, (uint)maxCount, ref offset, IntPtr.Zero);
  165. if (status == NTStatus.STATUS_SUCCESS)
  166. {
  167. int bytesRead = (int)ioStatusBlock.Information;
  168. if (bytesRead < maxCount)
  169. {
  170. data = ByteReader.ReadBytes(data, 0, bytesRead);
  171. }
  172. }
  173. return status;
  174. }
  175. public NTStatus WriteFile(out int numberOfBytesWritten, object handle, long offset, byte[] data)
  176. {
  177. IO_STATUS_BLOCK ioStatusBlock;
  178. NTStatus status = NtWriteFile((IntPtr)handle, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, out ioStatusBlock, data, (uint)data.Length, ref offset, IntPtr.Zero);
  179. if (status == NTStatus.STATUS_SUCCESS)
  180. {
  181. numberOfBytesWritten = (int)ioStatusBlock.Information;
  182. }
  183. else
  184. {
  185. numberOfBytesWritten = 0;
  186. }
  187. return status;
  188. }
  189. public NTStatus FlushFileBuffers(object handle)
  190. {
  191. IO_STATUS_BLOCK ioStatusBlock;
  192. return NtFlushBuffersFile((IntPtr)handle, out ioStatusBlock);
  193. }
  194. public NTStatus LockFile(object handle, long byteOffset, long length, bool exclusiveLock)
  195. {
  196. return NTStatus.STATUS_NOT_SUPPORTED;
  197. }
  198. public NTStatus UnlockFile(object handle, long byteOffset, long length)
  199. {
  200. return NTStatus.STATUS_NOT_SUPPORTED;
  201. }
  202. public NTStatus QueryDirectory(out List<QueryDirectoryFileInformation> result, object handle, string fileName, FileInformationClass informationClass)
  203. {
  204. IO_STATUS_BLOCK ioStatusBlock;
  205. byte[] buffer = new byte[4096];
  206. UNICODE_STRING fileNameStructure = new UNICODE_STRING(fileName);
  207. result = new List<QueryDirectoryFileInformation>();
  208. bool restartScan = true;
  209. while (true)
  210. {
  211. NTStatus status = NtQueryDirectoryFile((IntPtr)handle, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, out ioStatusBlock, buffer, (uint)buffer.Length, (byte)informationClass, false, ref fileNameStructure, restartScan);
  212. if (status == NTStatus.STATUS_NO_MORE_FILES)
  213. {
  214. break;
  215. }
  216. else if (status != NTStatus.STATUS_SUCCESS)
  217. {
  218. return status;
  219. }
  220. restartScan = false;
  221. List<QueryDirectoryFileInformation> page = QueryDirectoryFileInformation.ReadFileInformationList(buffer, 0, informationClass);
  222. result.AddRange(page);
  223. }
  224. fileNameStructure.Dispose();
  225. return NTStatus.STATUS_SUCCESS;
  226. }
  227. public NTStatus GetFileInformation(out FileInformation result, object handle, FileInformationClass informationClass)
  228. {
  229. IO_STATUS_BLOCK ioStatusBlock;
  230. byte[] buffer = new byte[8192];
  231. NTStatus status = NtQueryInformationFile((IntPtr)handle, out ioStatusBlock, buffer, (uint)buffer.Length, (uint)informationClass);
  232. if (status == NTStatus.STATUS_SUCCESS)
  233. {
  234. result = FileInformation.GetFileInformation(buffer, 0, informationClass);
  235. }
  236. else
  237. {
  238. result = null;
  239. }
  240. return status;
  241. }
  242. public NTStatus SetFileInformation(object handle, FileInformation information)
  243. {
  244. IO_STATUS_BLOCK ioStatusBlock;
  245. if (information is FileRenameInformationType2)
  246. {
  247. FileRenameInformationType2 fileRenameInformationRemote = (FileRenameInformationType2)information;
  248. if (ProcessHelper.Is64BitProcess)
  249. {
  250. // We should not modify the FileRenameInformationType2 instance we received - the caller may use it later.
  251. FileRenameInformationType2 fileRenameInformationLocal = new FileRenameInformationType2();
  252. fileRenameInformationLocal.ReplaceIfExists = fileRenameInformationRemote.ReplaceIfExists;
  253. fileRenameInformationLocal.FileName = ToNativePath(fileRenameInformationRemote.FileName);
  254. information = fileRenameInformationLocal;
  255. }
  256. else
  257. {
  258. // Note: WOW64 process should use FILE_RENAME_INFORMATION_TYPE_1.
  259. // Note: Server 2003 x64 has issues with using FILE_RENAME_INFORMATION under WOW64.
  260. FileRenameInformationType1 fileRenameInformationLocal = new FileRenameInformationType1();
  261. fileRenameInformationLocal.ReplaceIfExists = fileRenameInformationRemote.ReplaceIfExists;
  262. fileRenameInformationLocal.FileName = ToNativePath(fileRenameInformationRemote.FileName);
  263. information = fileRenameInformationLocal;
  264. }
  265. }
  266. else if (information is FileLinkInformationType2)
  267. {
  268. FileLinkInformationType2 fileLinkInformationRemote = (FileLinkInformationType2)information;
  269. if (ProcessHelper.Is64BitProcess)
  270. {
  271. FileRenameInformationType2 fileLinkInformationLocal = new FileRenameInformationType2();
  272. fileLinkInformationLocal.ReplaceIfExists = fileLinkInformationRemote.ReplaceIfExists;
  273. fileLinkInformationLocal.FileName = ToNativePath(fileLinkInformationRemote.FileName);
  274. information = fileLinkInformationRemote;
  275. }
  276. else
  277. {
  278. FileLinkInformationType1 fileLinkInformationLocal = new FileLinkInformationType1();
  279. fileLinkInformationLocal.ReplaceIfExists = fileLinkInformationRemote.ReplaceIfExists;
  280. fileLinkInformationLocal.FileName = ToNativePath(fileLinkInformationRemote.FileName);
  281. information = fileLinkInformationRemote;
  282. }
  283. }
  284. byte[] buffer = information.GetBytes();
  285. return NtSetInformationFile((IntPtr)handle, out ioStatusBlock, buffer, (uint)buffer.Length, (uint)information.FileInformationClass);
  286. }
  287. public NTStatus GetFileSystemInformation(out FileSystemInformation result, FileSystemInformationClass informationClass)
  288. {
  289. IO_STATUS_BLOCK ioStatusBlock;
  290. byte[] buffer = new byte[4096];
  291. IntPtr volumeHandle;
  292. FileStatus fileStatus;
  293. string nativePath = @"\??\" + m_directory.FullName.Substring(0, 3);
  294. NTStatus status = CreateFile(out volumeHandle, out fileStatus, nativePath, DirectoryAccessMask.GENERIC_READ, 0, (FileAttributes)0, ShareAccess.FILE_SHARE_READ, CreateDisposition.FILE_OPEN, (CreateOptions)0);
  295. result = null;
  296. if (status != NTStatus.STATUS_SUCCESS)
  297. {
  298. return status;
  299. }
  300. status = NtQueryVolumeInformationFile((IntPtr)volumeHandle, out ioStatusBlock, buffer, (uint)buffer.Length, (uint)informationClass);
  301. CloseFile(volumeHandle);
  302. if (status == NTStatus.STATUS_SUCCESS)
  303. {
  304. result = FileSystemInformation.GetFileSystemInformation(buffer, 0, informationClass);
  305. }
  306. return status;
  307. }
  308. public NTStatus NotifyChange(out object ioRequest, object handle, NotifyChangeFilter completionFilter, bool watchTree, int outputBufferSize, OnNotifyChangeCompleted onNotifyChangeCompleted, object context)
  309. {
  310. byte[] buffer = new byte[outputBufferSize];
  311. ManualResetEvent requestAddedEvent = new ManualResetEvent(false);
  312. PendingRequest request = new PendingRequest();
  313. Thread m_thread = new Thread(delegate()
  314. {
  315. request.FileHandle = (IntPtr)handle;
  316. request.ThreadID = ThreadingHelper.GetCurrentThreadId();
  317. m_pendingRequests.Add(request);
  318. // The request has been added, we can now return STATUS_PENDING.
  319. requestAddedEvent.Set();
  320. NTStatus status = NtNotifyChangeDirectoryFile((IntPtr)handle, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, out request.IOStatusBlock, buffer, (uint)buffer.Length, completionFilter, watchTree);
  321. if (status == NTStatus.STATUS_SUCCESS)
  322. {
  323. int length = (int)request.IOStatusBlock.Information;
  324. buffer = ByteReader.ReadBytes(buffer, 0, length);
  325. }
  326. else
  327. {
  328. const NTStatus STATUS_ALERTED = (NTStatus)0x00000101;
  329. const NTStatus STATUS_OBJECT_TYPE_MISMATCH = (NTStatus)0xC0000024;
  330. buffer = new byte[0];
  331. if (status == STATUS_OBJECT_TYPE_MISMATCH)
  332. {
  333. status = NTStatus.STATUS_INVALID_HANDLE;
  334. }
  335. else if (status == STATUS_ALERTED)
  336. {
  337. status = NTStatus.STATUS_CANCELLED;
  338. }
  339. // If the handle is closing and we had to cancel a ChangeNotify request as part of a cleanup,
  340. // we return STATUS_NOTIFY_CLEANUP as specified in [MS-FSA] 2.1.5.4.
  341. if (status == NTStatus.STATUS_CANCELLED && request.Cleanup)
  342. {
  343. status = NTStatus.STATUS_NOTIFY_CLEANUP;
  344. }
  345. }
  346. onNotifyChangeCompleted(status, buffer, context);
  347. m_pendingRequests.Remove((IntPtr)handle, request.ThreadID);
  348. });
  349. m_thread.Start();
  350. // We must wait for the request to be added in order for Cancel to function properly.
  351. requestAddedEvent.WaitOne();
  352. ioRequest = request;
  353. return NTStatus.STATUS_PENDING;
  354. }
  355. public NTStatus Cancel(object ioRequest)
  356. {
  357. PendingRequest request = (PendingRequest)ioRequest;
  358. const uint THREAD_TERMINATE = 0x00000001;
  359. const uint THREAD_ALERT = 0x00000004;
  360. uint threadID = request.ThreadID;
  361. IntPtr threadHandle = ThreadingHelper.OpenThread(THREAD_TERMINATE | THREAD_ALERT, false, threadID);
  362. if (threadHandle == IntPtr.Zero)
  363. {
  364. Win32Error error = (Win32Error)Marshal.GetLastWin32Error();
  365. if (error == Win32Error.ERROR_INVALID_PARAMETER)
  366. {
  367. return NTStatus.STATUS_INVALID_HANDLE;
  368. }
  369. else
  370. {
  371. throw new Exception("OpenThread failed, Win32 error: " + error.ToString("D"));
  372. }
  373. }
  374. NTStatus status;
  375. if (Environment.OSVersion.Version.Major >= 6)
  376. {
  377. IO_STATUS_BLOCK ioStatusBlock;
  378. status = NtCancelSynchronousIoFile(threadHandle, ref request.IOStatusBlock, out ioStatusBlock);
  379. }
  380. else
  381. {
  382. // The handle was opened for synchronous operation so NtNotifyChangeDirectoryFile is blocking.
  383. // We MUST use NtAlertThread to send a signal to stop the wait. The handle cannot be closed otherwise.
  384. // Note: The handle was opened with CreateOptions.FILE_SYNCHRONOUS_IO_ALERT as required.
  385. status = NtAlertThread(threadHandle);
  386. }
  387. ThreadingHelper.CloseHandle(threadHandle);
  388. m_pendingRequests.Remove(request.FileHandle, request.ThreadID);
  389. return status;
  390. }
  391. public NTStatus DeviceIOControl(object handle, uint ctlCode, byte[] input, out byte[] output, int maxOutputLength)
  392. {
  393. output = null;
  394. return NTStatus.STATUS_NOT_SUPPORTED;
  395. }
  396. }
  397. }