NTDirectoryFileSystem.cs 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513
  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 NtLockFile(IntPtr handle, IntPtr evt, IntPtr apcRoutine, IntPtr apcContext, out IO_STATUS_BLOCK ioStatusBlock, ref long byteOffset, ref long length, uint key, bool failImmediately, bool exclusiveLock);
  75. [DllImport("ntdll.dll", ExactSpelling = true, SetLastError = false)]
  76. private static extern NTStatus NtUnlockFile(IntPtr handle, out IO_STATUS_BLOCK ioStatusBlock, ref long byteOffset, ref long length, uint key);
  77. [DllImport("ntdll.dll", ExactSpelling = true, SetLastError = false)]
  78. 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);
  79. [DllImport("ntdll.dll", ExactSpelling = true, SetLastError = false)]
  80. private static extern NTStatus NtQueryInformationFile(IntPtr handle, out IO_STATUS_BLOCK ioStatusBlock, byte[] fileInformation, uint length, uint fileInformationClass);
  81. [DllImport("ntdll.dll", ExactSpelling = true, SetLastError = false)]
  82. private static extern NTStatus NtSetInformationFile(IntPtr handle, out IO_STATUS_BLOCK ioStatusBlock, byte[] fileInformation, uint length, uint fileInformationClass);
  83. [DllImport("ntdll.dll", ExactSpelling = true, SetLastError = false)]
  84. private static extern NTStatus NtQueryVolumeInformationFile(IntPtr handle, out IO_STATUS_BLOCK ioStatusBlock, byte[] fsInformation, uint length, uint fsInformationClass);
  85. [DllImport("ntdll.dll", ExactSpelling = true, SetLastError = false)]
  86. 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);
  87. [DllImport("ntdll.dll", ExactSpelling = true, SetLastError = false)]
  88. private static extern NTStatus NtFsControlFile(IntPtr handle, IntPtr evt, IntPtr apcRoutine, IntPtr apcContext, out IO_STATUS_BLOCK ioStatusBlock, uint ioControlCode, byte[] inputBuffer, uint inputBufferLength, byte[] outputBuffer, uint outputBufferLength);
  89. [DllImport("ntdll.dll", ExactSpelling = true, SetLastError = false)]
  90. private static extern NTStatus NtAlertThread(IntPtr threadHandle);
  91. // Available starting from Windows Vista.
  92. [DllImport("ntdll.dll", ExactSpelling = true, SetLastError = false)]
  93. private static extern NTStatus NtCancelSynchronousIoFile(IntPtr threadHandle, ref IO_STATUS_BLOCK ioRequestToCancel, out IO_STATUS_BLOCK ioStatusBlock);
  94. private DirectoryInfo m_directory;
  95. private PendingRequestCollection m_pendingRequests = new PendingRequestCollection();
  96. public NTDirectoryFileSystem(string path) : this(new DirectoryInfo(path))
  97. {
  98. }
  99. public NTDirectoryFileSystem(DirectoryInfo directory)
  100. {
  101. m_directory = directory;
  102. }
  103. private OBJECT_ATTRIBUTES InitializeObjectAttributes(UNICODE_STRING objectName)
  104. {
  105. OBJECT_ATTRIBUTES objectAttributes = new OBJECT_ATTRIBUTES();
  106. objectAttributes.RootDirectory = IntPtr.Zero;
  107. objectAttributes.ObjectName = Marshal.AllocHGlobal(Marshal.SizeOf(objectName));
  108. Marshal.StructureToPtr(objectName, objectAttributes.ObjectName, false);
  109. objectAttributes.SecurityDescriptor = IntPtr.Zero;
  110. objectAttributes.SecurityQualityOfService = IntPtr.Zero;
  111. objectAttributes.Length = Marshal.SizeOf(objectAttributes);
  112. return objectAttributes;
  113. }
  114. private NTStatus CreateFile(out IntPtr handle, out FileStatus fileStatus, string nativePath, AccessMask desiredAccess, long allocationSize, FileAttributes fileAttributes, ShareAccess shareAccess, CreateDisposition createDisposition, CreateOptions createOptions)
  115. {
  116. UNICODE_STRING objectName = new UNICODE_STRING(nativePath);
  117. OBJECT_ATTRIBUTES objectAttributes = InitializeObjectAttributes(objectName);
  118. IO_STATUS_BLOCK ioStatusBlock;
  119. NTStatus status = NtCreateFile(out handle, (uint)desiredAccess, ref objectAttributes, out ioStatusBlock, ref allocationSize, fileAttributes, shareAccess, createDisposition, createOptions, IntPtr.Zero, 0);
  120. fileStatus = (FileStatus)ioStatusBlock.Information;
  121. return status;
  122. }
  123. private string ToNativePath(string path)
  124. {
  125. if (!path.StartsWith(@"\"))
  126. {
  127. path = @"\" + path;
  128. }
  129. return @"\??\" + m_directory.FullName + path;
  130. }
  131. public NTStatus CreateFile(out object handle, out FileStatus fileStatus, string path, AccessMask desiredAccess, FileAttributes fileAttributes, ShareAccess shareAccess, CreateDisposition createDisposition, CreateOptions createOptions, SecurityContext securityContext)
  132. {
  133. IntPtr fileHandle;
  134. string nativePath = ToNativePath(path);
  135. // NtQueryDirectoryFile will return STATUS_PENDING if the directory handle was not opened with SYNCHRONIZE and FILE_SYNCHRONOUS_IO_ALERT or FILE_SYNCHRONOUS_IO_NONALERT.
  136. // 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).
  137. // Note: Sometimes a directory will be opened without specifying FILE_DIRECTORY_FILE.
  138. desiredAccess |= AccessMask.SYNCHRONIZE;
  139. createOptions &= ~CreateOptions.FILE_SYNCHRONOUS_IO_NONALERT;
  140. createOptions |= CreateOptions.FILE_SYNCHRONOUS_IO_ALERT;
  141. if ((createOptions & CreateOptions.FILE_NO_INTERMEDIATE_BUFFERING) > 0 &&
  142. ((FileAccessMask)desiredAccess & FileAccessMask.FILE_APPEND_DATA) > 0)
  143. {
  144. // FILE_NO_INTERMEDIATE_BUFFERING is incompatible with FILE_APPEND_DATA
  145. // [MS-SMB2] 3.3.5.9 suggests setting FILE_APPEND_DATA to zero in this case.
  146. desiredAccess = (AccessMask)((uint)desiredAccess & (uint)~FileAccessMask.FILE_APPEND_DATA);
  147. }
  148. NTStatus status = CreateFile(out fileHandle, out fileStatus, nativePath, desiredAccess, 0, fileAttributes, shareAccess, createDisposition, createOptions);
  149. handle = fileHandle;
  150. return status;
  151. }
  152. public NTStatus CloseFile(object handle)
  153. {
  154. // [MS-FSA] 2.1.5.4 The close operation has to complete any pending ChangeNotify request with STATUS_NOTIFY_CLEANUP.
  155. // - When closing a synchronous handle we must explicitly cancel any pending ChangeNotify request, otherwise the call to NtClose will hang.
  156. // We use request.Cleanup to tell that we should complete such ChangeNotify request with STATUS_NOTIFY_CLEANUP.
  157. // - When closing an asynchronous handle Windows will implicitly complete any pending ChangeNotify request with STATUS_NOTIFY_CLEANUP as required.
  158. List<PendingRequest> pendingRequests = m_pendingRequests.GetRequestsByHandle((IntPtr)handle);
  159. foreach (PendingRequest request in pendingRequests)
  160. {
  161. request.Cleanup = true;
  162. Cancel(request);
  163. }
  164. return NtClose((IntPtr)handle);
  165. }
  166. public NTStatus ReadFile(out byte[] data, object handle, long offset, int maxCount)
  167. {
  168. IO_STATUS_BLOCK ioStatusBlock;
  169. data = new byte[maxCount];
  170. NTStatus status = NtReadFile((IntPtr)handle, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, out ioStatusBlock, data, (uint)maxCount, ref offset, IntPtr.Zero);
  171. if (status == NTStatus.STATUS_SUCCESS)
  172. {
  173. int bytesRead = (int)ioStatusBlock.Information;
  174. if (bytesRead < maxCount)
  175. {
  176. data = ByteReader.ReadBytes(data, 0, bytesRead);
  177. }
  178. }
  179. return status;
  180. }
  181. public NTStatus WriteFile(out int numberOfBytesWritten, object handle, long offset, byte[] data)
  182. {
  183. IO_STATUS_BLOCK ioStatusBlock;
  184. NTStatus status = NtWriteFile((IntPtr)handle, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, out ioStatusBlock, data, (uint)data.Length, ref offset, IntPtr.Zero);
  185. if (status == NTStatus.STATUS_SUCCESS)
  186. {
  187. numberOfBytesWritten = (int)ioStatusBlock.Information;
  188. }
  189. else
  190. {
  191. numberOfBytesWritten = 0;
  192. }
  193. return status;
  194. }
  195. public NTStatus FlushFileBuffers(object handle)
  196. {
  197. IO_STATUS_BLOCK ioStatusBlock;
  198. return NtFlushBuffersFile((IntPtr)handle, out ioStatusBlock);
  199. }
  200. public NTStatus LockFile(object handle, long byteOffset, long length, bool exclusiveLock)
  201. {
  202. IO_STATUS_BLOCK ioStatusBlock;
  203. return NtLockFile((IntPtr)handle, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, out ioStatusBlock, ref byteOffset, ref length, 0, true, exclusiveLock);
  204. }
  205. public NTStatus UnlockFile(object handle, long byteOffset, long length)
  206. {
  207. IO_STATUS_BLOCK ioStatusBlock;
  208. return NtUnlockFile((IntPtr)handle, out ioStatusBlock, ref byteOffset, ref length, 0);
  209. }
  210. public NTStatus QueryDirectory(out List<QueryDirectoryFileInformation> result, object handle, string fileName, FileInformationClass informationClass)
  211. {
  212. IO_STATUS_BLOCK ioStatusBlock;
  213. byte[] buffer = new byte[4096];
  214. UNICODE_STRING fileNameStructure = new UNICODE_STRING(fileName);
  215. result = new List<QueryDirectoryFileInformation>();
  216. bool restartScan = true;
  217. while (true)
  218. {
  219. NTStatus status = NtQueryDirectoryFile((IntPtr)handle, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, out ioStatusBlock, buffer, (uint)buffer.Length, (byte)informationClass, false, ref fileNameStructure, restartScan);
  220. if (status == NTStatus.STATUS_NO_MORE_FILES)
  221. {
  222. break;
  223. }
  224. else if (status != NTStatus.STATUS_SUCCESS)
  225. {
  226. return status;
  227. }
  228. int numberOfBytesWritten = (int)ioStatusBlock.Information;
  229. buffer = ByteReader.ReadBytes(buffer, 0, numberOfBytesWritten);
  230. List<QueryDirectoryFileInformation> page = QueryDirectoryFileInformation.ReadFileInformationList(buffer, 0, informationClass);
  231. result.AddRange(page);
  232. restartScan = false;
  233. }
  234. fileNameStructure.Dispose();
  235. return NTStatus.STATUS_SUCCESS;
  236. }
  237. public NTStatus GetFileInformation(out FileInformation result, object handle, FileInformationClass informationClass)
  238. {
  239. IO_STATUS_BLOCK ioStatusBlock;
  240. byte[] buffer = new byte[8192];
  241. NTStatus status = NtQueryInformationFile((IntPtr)handle, out ioStatusBlock, buffer, (uint)buffer.Length, (uint)informationClass);
  242. if (status == NTStatus.STATUS_SUCCESS)
  243. {
  244. int numberOfBytesWritten = (int)ioStatusBlock.Information;
  245. buffer = ByteReader.ReadBytes(buffer, 0, numberOfBytesWritten);
  246. result = FileInformation.GetFileInformation(buffer, 0, informationClass);
  247. }
  248. else
  249. {
  250. result = null;
  251. }
  252. return status;
  253. }
  254. public NTStatus SetFileInformation(object handle, FileInformation information)
  255. {
  256. IO_STATUS_BLOCK ioStatusBlock;
  257. if (information is FileRenameInformationType2)
  258. {
  259. FileRenameInformationType2 fileRenameInformationRemote = (FileRenameInformationType2)information;
  260. if (ProcessHelper.Is64BitProcess)
  261. {
  262. // We should not modify the FileRenameInformationType2 instance we received - the caller may use it later.
  263. FileRenameInformationType2 fileRenameInformationLocal = new FileRenameInformationType2();
  264. fileRenameInformationLocal.ReplaceIfExists = fileRenameInformationRemote.ReplaceIfExists;
  265. fileRenameInformationLocal.FileName = ToNativePath(fileRenameInformationRemote.FileName);
  266. information = fileRenameInformationLocal;
  267. }
  268. else
  269. {
  270. // Note: WOW64 process should use FILE_RENAME_INFORMATION_TYPE_1.
  271. // Note: Server 2003 x64 has issues with using FILE_RENAME_INFORMATION under WOW64.
  272. FileRenameInformationType1 fileRenameInformationLocal = new FileRenameInformationType1();
  273. fileRenameInformationLocal.ReplaceIfExists = fileRenameInformationRemote.ReplaceIfExists;
  274. fileRenameInformationLocal.FileName = ToNativePath(fileRenameInformationRemote.FileName);
  275. information = fileRenameInformationLocal;
  276. }
  277. }
  278. else if (information is FileLinkInformationType2)
  279. {
  280. FileLinkInformationType2 fileLinkInformationRemote = (FileLinkInformationType2)information;
  281. if (ProcessHelper.Is64BitProcess)
  282. {
  283. FileRenameInformationType2 fileLinkInformationLocal = new FileRenameInformationType2();
  284. fileLinkInformationLocal.ReplaceIfExists = fileLinkInformationRemote.ReplaceIfExists;
  285. fileLinkInformationLocal.FileName = ToNativePath(fileLinkInformationRemote.FileName);
  286. information = fileLinkInformationRemote;
  287. }
  288. else
  289. {
  290. FileLinkInformationType1 fileLinkInformationLocal = new FileLinkInformationType1();
  291. fileLinkInformationLocal.ReplaceIfExists = fileLinkInformationRemote.ReplaceIfExists;
  292. fileLinkInformationLocal.FileName = ToNativePath(fileLinkInformationRemote.FileName);
  293. information = fileLinkInformationRemote;
  294. }
  295. }
  296. byte[] buffer = information.GetBytes();
  297. return NtSetInformationFile((IntPtr)handle, out ioStatusBlock, buffer, (uint)buffer.Length, (uint)information.FileInformationClass);
  298. }
  299. public NTStatus GetFileSystemInformation(out FileSystemInformation result, FileSystemInformationClass informationClass)
  300. {
  301. IO_STATUS_BLOCK ioStatusBlock;
  302. byte[] buffer = new byte[4096];
  303. IntPtr volumeHandle;
  304. FileStatus fileStatus;
  305. string nativePath = @"\??\" + m_directory.FullName.Substring(0, 3);
  306. NTStatus status = CreateFile(out volumeHandle, out fileStatus, nativePath, AccessMask.GENERIC_READ, 0, (FileAttributes)0, ShareAccess.FILE_SHARE_READ, CreateDisposition.FILE_OPEN, (CreateOptions)0);
  307. result = null;
  308. if (status != NTStatus.STATUS_SUCCESS)
  309. {
  310. return status;
  311. }
  312. status = NtQueryVolumeInformationFile((IntPtr)volumeHandle, out ioStatusBlock, buffer, (uint)buffer.Length, (uint)informationClass);
  313. CloseFile(volumeHandle);
  314. if (status == NTStatus.STATUS_SUCCESS)
  315. {
  316. int numberOfBytesWritten = (int)ioStatusBlock.Information;
  317. buffer = ByteReader.ReadBytes(buffer, 0, numberOfBytesWritten);
  318. result = FileSystemInformation.GetFileSystemInformation(buffer, 0, informationClass);
  319. }
  320. return status;
  321. }
  322. public NTStatus SetFileSystemInformation(FileSystemInformation information)
  323. {
  324. return NTStatus.STATUS_NOT_SUPPORTED;
  325. }
  326. public NTStatus GetSecurityInformation(out SecurityDescriptor result, object handle, SecurityInformation securityInformation)
  327. {
  328. result = null;
  329. return NTStatus.STATUS_INVALID_DEVICE_REQUEST;
  330. }
  331. public NTStatus SetSecurityInformation(object handle, SecurityInformation securityInformation, SecurityDescriptor securityDescriptor)
  332. {
  333. // [MS-FSA] If the object store does not implement security, the operation MUST be failed with STATUS_INVALID_DEVICE_REQUEST.
  334. return NTStatus.STATUS_INVALID_DEVICE_REQUEST;
  335. }
  336. public NTStatus NotifyChange(out object ioRequest, object handle, NotifyChangeFilter completionFilter, bool watchTree, int outputBufferSize, OnNotifyChangeCompleted onNotifyChangeCompleted, object context)
  337. {
  338. byte[] buffer = new byte[outputBufferSize];
  339. ManualResetEvent requestAddedEvent = new ManualResetEvent(false);
  340. PendingRequest request = new PendingRequest();
  341. Thread m_thread = new Thread(delegate()
  342. {
  343. request.FileHandle = (IntPtr)handle;
  344. request.ThreadID = ThreadingHelper.GetCurrentThreadId();
  345. m_pendingRequests.Add(request);
  346. // The request has been added, we can now return STATUS_PENDING.
  347. requestAddedEvent.Set();
  348. NTStatus status = NtNotifyChangeDirectoryFile((IntPtr)handle, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, out request.IOStatusBlock, buffer, (uint)buffer.Length, completionFilter, watchTree);
  349. if (status == NTStatus.STATUS_SUCCESS)
  350. {
  351. int length = (int)request.IOStatusBlock.Information;
  352. buffer = ByteReader.ReadBytes(buffer, 0, length);
  353. }
  354. else
  355. {
  356. const NTStatus STATUS_ALERTED = (NTStatus)0x00000101;
  357. const NTStatus STATUS_OBJECT_TYPE_MISMATCH = (NTStatus)0xC0000024;
  358. buffer = new byte[0];
  359. if (status == STATUS_OBJECT_TYPE_MISMATCH)
  360. {
  361. status = NTStatus.STATUS_INVALID_HANDLE;
  362. }
  363. else if (status == STATUS_ALERTED)
  364. {
  365. status = NTStatus.STATUS_CANCELLED;
  366. }
  367. // If the handle is closing and we had to cancel a ChangeNotify request as part of a cleanup,
  368. // we return STATUS_NOTIFY_CLEANUP as specified in [MS-FSA] 2.1.5.4.
  369. if (status == NTStatus.STATUS_CANCELLED && request.Cleanup)
  370. {
  371. status = NTStatus.STATUS_NOTIFY_CLEANUP;
  372. }
  373. }
  374. onNotifyChangeCompleted(status, buffer, context);
  375. m_pendingRequests.Remove((IntPtr)handle, request.ThreadID);
  376. });
  377. m_thread.Start();
  378. // We must wait for the request to be added in order for Cancel to function properly.
  379. requestAddedEvent.WaitOne();
  380. ioRequest = request;
  381. return NTStatus.STATUS_PENDING;
  382. }
  383. public NTStatus Cancel(object ioRequest)
  384. {
  385. PendingRequest request = (PendingRequest)ioRequest;
  386. const uint THREAD_TERMINATE = 0x00000001;
  387. const uint THREAD_ALERT = 0x00000004;
  388. uint threadID = request.ThreadID;
  389. IntPtr threadHandle = ThreadingHelper.OpenThread(THREAD_TERMINATE | THREAD_ALERT, false, threadID);
  390. if (threadHandle == IntPtr.Zero)
  391. {
  392. Win32Error error = (Win32Error)Marshal.GetLastWin32Error();
  393. if (error == Win32Error.ERROR_INVALID_PARAMETER)
  394. {
  395. return NTStatus.STATUS_INVALID_HANDLE;
  396. }
  397. else
  398. {
  399. throw new Exception("OpenThread failed, Win32 error: " + error.ToString("D"));
  400. }
  401. }
  402. NTStatus status;
  403. if (Environment.OSVersion.Version.Major >= 6)
  404. {
  405. IO_STATUS_BLOCK ioStatusBlock;
  406. status = NtCancelSynchronousIoFile(threadHandle, ref request.IOStatusBlock, out ioStatusBlock);
  407. }
  408. else
  409. {
  410. // The handle was opened for synchronous operation so NtNotifyChangeDirectoryFile is blocking.
  411. // We MUST use NtAlertThread to send a signal to stop the wait. The handle cannot be closed otherwise.
  412. // Note: The handle was opened with CreateOptions.FILE_SYNCHRONOUS_IO_ALERT as required.
  413. status = NtAlertThread(threadHandle);
  414. }
  415. ThreadingHelper.CloseHandle(threadHandle);
  416. m_pendingRequests.Remove(request.FileHandle, request.ThreadID);
  417. return status;
  418. }
  419. public NTStatus DeviceIOControl(object handle, uint ctlCode, byte[] input, out byte[] output, int maxOutputLength)
  420. {
  421. switch ((IoControlCode)ctlCode)
  422. {
  423. case IoControlCode.FSCTL_IS_PATHNAME_VALID:
  424. case IoControlCode.FSCTL_GET_COMPRESSION:
  425. case IoControlCode.FSCTL_GET_RETRIEVAL_POINTERS:
  426. case IoControlCode.FSCTL_SET_OBJECT_ID:
  427. case IoControlCode.FSCTL_GET_OBJECT_ID:
  428. case IoControlCode.FSCTL_DELETE_OBJECT_ID:
  429. case IoControlCode.FSCTL_SET_OBJECT_ID_EXTENDED:
  430. case IoControlCode.FSCTL_CREATE_OR_GET_OBJECT_ID:
  431. case IoControlCode.FSCTL_SET_SPARSE:
  432. case IoControlCode.FSCTL_READ_FILE_USN_DATA:
  433. case IoControlCode.FSCTL_SET_DEFECT_MANAGEMENT:
  434. case IoControlCode.FSCTL_SET_COMPRESSION:
  435. case IoControlCode.FSCTL_QUERY_SPARING_INFO:
  436. case IoControlCode.FSCTL_QUERY_ON_DISK_VOLUME_INFO:
  437. case IoControlCode.FSCTL_SET_ZERO_ON_DEALLOCATION:
  438. case IoControlCode.FSCTL_QUERY_FILE_REGIONS:
  439. case IoControlCode.FSCTL_QUERY_ALLOCATED_RANGES:
  440. case IoControlCode.FSCTL_SET_ZERO_DATA:
  441. {
  442. IO_STATUS_BLOCK ioStatusBlock;
  443. output = new byte[maxOutputLength];
  444. NTStatus status = NtFsControlFile((IntPtr)handle, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, out ioStatusBlock, ctlCode, input, (uint)input.Length, output, (uint)maxOutputLength);
  445. if (status == NTStatus.STATUS_SUCCESS)
  446. {
  447. int numberOfBytesWritten = (int)ioStatusBlock.Information;
  448. output = ByteReader.ReadBytes(output, 0, numberOfBytesWritten);
  449. }
  450. return status;
  451. }
  452. default:
  453. {
  454. output = null;
  455. return NTStatus.STATUS_NOT_SUPPORTED;
  456. }
  457. }
  458. }
  459. }
  460. }