NTDirectoryFileSystem.cs 27 KB

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