NTFileSystemAdapter.cs 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565
  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.IO;
  10. using Utilities;
  11. namespace SMBLibrary
  12. {
  13. public partial class NTFileSystemAdapter : INTFileStore
  14. {
  15. private const int BytesPerSector = 512;
  16. private const int ClusterSize = 4096;
  17. private IFileSystem m_fileSystem;
  18. public event EventHandler<LogEntry> LogEntryAdded;
  19. public NTFileSystemAdapter(IFileSystem fileSystem)
  20. {
  21. m_fileSystem = fileSystem;
  22. }
  23. public NTStatus CreateFile(out object handle, out FileStatus fileStatus, string path, AccessMask desiredAccess, FileAttributes fileAttributes, ShareAccess shareAccess, CreateDisposition createDisposition, CreateOptions createOptions, SecurityContext securityContext)
  24. {
  25. handle = null;
  26. fileStatus = FileStatus.FILE_DOES_NOT_EXIST;
  27. FileAccess createAccess = NTFileStoreHelper.ToCreateFileAccess(desiredAccess, createDisposition);
  28. bool requestedWriteAccess = (createAccess & FileAccess.Write) > 0;
  29. bool forceDirectory = (createOptions & CreateOptions.FILE_DIRECTORY_FILE) > 0;
  30. bool forceFile = (createOptions & CreateOptions.FILE_NON_DIRECTORY_FILE) > 0;
  31. if (forceDirectory & (createDisposition != CreateDisposition.FILE_CREATE &&
  32. createDisposition != CreateDisposition.FILE_OPEN &&
  33. createDisposition != CreateDisposition.FILE_OPEN_IF &&
  34. createDisposition != CreateDisposition.FILE_SUPERSEDE))
  35. {
  36. return NTStatus.STATUS_INVALID_PARAMETER;
  37. }
  38. // Windows will try to access named streams (alternate data streams) regardless of the FILE_NAMED_STREAMS flag, we need to prevent this behaviour.
  39. if (path.Contains(":"))
  40. {
  41. // Windows Server 2003 will return STATUS_OBJECT_NAME_NOT_FOUND
  42. return NTStatus.STATUS_NO_SUCH_FILE;
  43. }
  44. FileSystemEntry entry = null;
  45. try
  46. {
  47. entry = m_fileSystem.GetEntry(path);
  48. }
  49. catch (FileNotFoundException)
  50. {
  51. }
  52. catch (DirectoryNotFoundException)
  53. {
  54. }
  55. catch (Exception ex)
  56. {
  57. NTStatus status = ToNTStatus(ex);
  58. Log(Severity.Verbose, "CreateFile: Error retrieving '{0}'. {1}.", path, status);
  59. return status;
  60. }
  61. if (createDisposition == CreateDisposition.FILE_OPEN)
  62. {
  63. if (entry == null)
  64. {
  65. return NTStatus.STATUS_NO_SUCH_FILE;
  66. }
  67. fileStatus = FileStatus.FILE_EXISTS;
  68. if (entry.IsDirectory && forceFile)
  69. {
  70. return NTStatus.STATUS_FILE_IS_A_DIRECTORY;
  71. }
  72. if (!entry.IsDirectory && forceDirectory)
  73. {
  74. return NTStatus.STATUS_OBJECT_PATH_INVALID;
  75. }
  76. }
  77. else if (createDisposition == CreateDisposition.FILE_CREATE)
  78. {
  79. if (entry != null)
  80. {
  81. // File already exists, fail the request
  82. Log(Severity.Verbose, "CreateFile: File '{0}' already exists.", path);
  83. fileStatus = FileStatus.FILE_EXISTS;
  84. return NTStatus.STATUS_OBJECT_NAME_COLLISION;
  85. }
  86. if (!requestedWriteAccess)
  87. {
  88. return NTStatus.STATUS_ACCESS_DENIED;
  89. }
  90. try
  91. {
  92. if (forceDirectory)
  93. {
  94. Log(Severity.Information, "CreateFile: Creating directory '{0}'", path);
  95. entry = m_fileSystem.CreateDirectory(path);
  96. }
  97. else
  98. {
  99. Log(Severity.Information, "CreateFile: Creating file '{0}'", path);
  100. entry = m_fileSystem.CreateFile(path);
  101. }
  102. }
  103. catch (Exception ex)
  104. {
  105. NTStatus status = ToNTStatus(ex);
  106. Log(Severity.Verbose, "CreateFile: Error creating '{0}'. {1}.", path, status);
  107. return status;
  108. }
  109. fileStatus = FileStatus.FILE_CREATED;
  110. }
  111. else if (createDisposition == CreateDisposition.FILE_OPEN_IF ||
  112. createDisposition == CreateDisposition.FILE_OVERWRITE ||
  113. createDisposition == CreateDisposition.FILE_OVERWRITE_IF ||
  114. createDisposition == CreateDisposition.FILE_SUPERSEDE)
  115. {
  116. if (entry == null)
  117. {
  118. if (createDisposition == CreateDisposition.FILE_OVERWRITE)
  119. {
  120. return NTStatus.STATUS_OBJECT_PATH_NOT_FOUND;
  121. }
  122. if (!requestedWriteAccess)
  123. {
  124. return NTStatus.STATUS_ACCESS_DENIED;
  125. }
  126. try
  127. {
  128. if (forceDirectory)
  129. {
  130. Log(Severity.Information, "CreateFile: Creating directory '{0}'", path);
  131. entry = m_fileSystem.CreateDirectory(path);
  132. }
  133. else
  134. {
  135. Log(Severity.Information, "CreateFile: Creating file '{0}'", path);
  136. entry = m_fileSystem.CreateFile(path);
  137. }
  138. }
  139. catch (Exception ex)
  140. {
  141. NTStatus status = ToNTStatus(ex);
  142. Log(Severity.Verbose, "CreateFile: Error creating '{0}'. {1}.", path, status);
  143. return status;
  144. }
  145. fileStatus = FileStatus.FILE_CREATED;
  146. }
  147. else
  148. {
  149. fileStatus = FileStatus.FILE_EXISTS;
  150. if (createDisposition == CreateDisposition.FILE_OPEN_IF)
  151. {
  152. if (entry.IsDirectory && forceFile)
  153. {
  154. return NTStatus.STATUS_FILE_IS_A_DIRECTORY;
  155. }
  156. if (!entry.IsDirectory && forceDirectory)
  157. {
  158. return NTStatus.STATUS_OBJECT_PATH_INVALID;
  159. }
  160. }
  161. else
  162. {
  163. if (!requestedWriteAccess)
  164. {
  165. return NTStatus.STATUS_ACCESS_DENIED;
  166. }
  167. if (createDisposition == CreateDisposition.FILE_OVERWRITE ||
  168. createDisposition == CreateDisposition.FILE_OVERWRITE_IF)
  169. {
  170. // Truncate the file
  171. try
  172. {
  173. Stream temp = m_fileSystem.OpenFile(path, FileMode.Truncate, FileAccess.ReadWrite, FileShare.ReadWrite, FileOptions.None);
  174. temp.Close();
  175. }
  176. catch (Exception ex)
  177. {
  178. NTStatus status = ToNTStatus(ex);
  179. Log(Severity.Verbose, "CreateFile: Error truncating '{0}'. {1}.", path, status);
  180. return status;
  181. }
  182. fileStatus = FileStatus.FILE_OVERWRITTEN;
  183. }
  184. else if (createDisposition == CreateDisposition.FILE_SUPERSEDE)
  185. {
  186. // Delete the old file
  187. try
  188. {
  189. m_fileSystem.Delete(path);
  190. }
  191. catch (Exception ex)
  192. {
  193. NTStatus status = ToNTStatus(ex);
  194. Log(Severity.Verbose, "CreateFile: Error deleting '{0}'. {1}.", path, status);
  195. return status;
  196. }
  197. try
  198. {
  199. if (forceDirectory)
  200. {
  201. Log(Severity.Information, "CreateFile: Creating directory '{0}'", path);
  202. entry = m_fileSystem.CreateDirectory(path);
  203. }
  204. else
  205. {
  206. Log(Severity.Information, "CreateFile: Creating file '{0}'", path);
  207. entry = m_fileSystem.CreateFile(path);
  208. }
  209. }
  210. catch (Exception ex)
  211. {
  212. NTStatus status = ToNTStatus(ex);
  213. Log(Severity.Verbose, "CreateFile: Error creating '{0}'. {1}.", path, status);
  214. return status;
  215. }
  216. fileStatus = FileStatus.FILE_SUPERSEDED;
  217. }
  218. }
  219. }
  220. }
  221. else
  222. {
  223. return NTStatus.STATUS_INVALID_PARAMETER;
  224. }
  225. FileAccess fileAccess = NTFileStoreHelper.ToFileAccess(desiredAccess);
  226. Stream stream;
  227. if (fileAccess == (FileAccess)0 || entry.IsDirectory)
  228. {
  229. stream = null;
  230. }
  231. else
  232. {
  233. // Note that SetFileInformationByHandle/FILE_DISPOSITION_INFO has no effect if the handle was opened with FILE_DELETE_ON_CLOSE.
  234. NTStatus openStatus = OpenFileStream(out stream, path, fileAccess, shareAccess, createOptions);
  235. if (openStatus != NTStatus.STATUS_SUCCESS)
  236. {
  237. return openStatus;
  238. }
  239. }
  240. bool deleteOnClose = (createOptions & CreateOptions.FILE_DELETE_ON_CLOSE) > 0;
  241. handle = new FileHandle(path, entry.IsDirectory, stream, deleteOnClose);
  242. if (fileStatus != FileStatus.FILE_CREATED &&
  243. fileStatus != FileStatus.FILE_OVERWRITTEN &&
  244. fileStatus != FileStatus.FILE_SUPERSEDED)
  245. {
  246. fileStatus = FileStatus.FILE_OPENED;
  247. }
  248. return NTStatus.STATUS_SUCCESS;
  249. }
  250. private NTStatus OpenFileStream(out Stream stream, string path, FileAccess fileAccess, ShareAccess shareAccess, CreateOptions openOptions)
  251. {
  252. stream = null;
  253. FileShare fileShare = NTFileStoreHelper.ToFileShare(shareAccess);
  254. FileOptions fileOptions = ToFileOptions(openOptions);
  255. string fileShareString = fileShare.ToString().Replace(", ", "|");
  256. string fileOptionsString = ToFileOptionsString(fileOptions);
  257. try
  258. {
  259. stream = m_fileSystem.OpenFile(path, FileMode.Open, fileAccess, fileShare, fileOptions);
  260. }
  261. catch (Exception ex)
  262. {
  263. NTStatus status = ToNTStatus(ex);
  264. Log(Severity.Verbose, "OpenFile: Cannot open '{0}', Access={1}, Share={2}. NTStatus: {3}.", path, fileAccess, fileShareString, status);
  265. return status;
  266. }
  267. Log(Severity.Information, "OpenFileStream: Opened '{0}', Access={1}, Share={2}, FileOptions={3}", path, fileAccess, fileShareString, fileOptionsString);
  268. return NTStatus.STATUS_SUCCESS;
  269. }
  270. public NTStatus CloseFile(object handle)
  271. {
  272. FileHandle fileHandle = (FileHandle)handle;
  273. if (fileHandle.Stream != null)
  274. {
  275. Log(Severity.Verbose, "CloseFile: Closing '{0}'.", fileHandle.Path);
  276. fileHandle.Stream.Close();
  277. }
  278. // If the file / directory was created with FILE_DELETE_ON_CLOSE but was not opened (with FileOptions.DeleteOnClose), we should delete it now.
  279. if (fileHandle.Stream == null && fileHandle.DeleteOnClose)
  280. {
  281. try
  282. {
  283. m_fileSystem.Delete(fileHandle.Path);
  284. Log(Severity.Verbose, "CloseFile: Deleted '{0}'.", fileHandle.Path);
  285. }
  286. catch
  287. {
  288. Log(Severity.Verbose, "CloseFile: Error deleting '{0}'.", fileHandle.Path);
  289. }
  290. }
  291. return NTStatus.STATUS_SUCCESS;
  292. }
  293. public NTStatus ReadFile(out byte[] data, object handle, long offset, int maxCount)
  294. {
  295. data = null;
  296. FileHandle fileHandle = (FileHandle)handle;
  297. string path = fileHandle.Path;
  298. Stream stream = fileHandle.Stream;
  299. if (stream == null || !stream.CanRead)
  300. {
  301. Log(Severity.Verbose, "ReadFile: Cannot read '{0}', Invalid Operation.", path);
  302. return NTStatus.STATUS_ACCESS_DENIED;
  303. }
  304. int bytesRead;
  305. try
  306. {
  307. stream.Seek(offset, SeekOrigin.Begin);
  308. data = new byte[maxCount];
  309. bytesRead = stream.Read(data, 0, maxCount);
  310. }
  311. catch (Exception ex)
  312. {
  313. NTStatus status = ToNTStatus(ex);
  314. Log(Severity.Verbose, "ReadFile: Cannot read '{0}'. {1}.", path, status);
  315. return status;
  316. }
  317. if (bytesRead < maxCount)
  318. {
  319. // EOF, we must trim the response data array
  320. data = ByteReader.ReadBytes(data, 0, bytesRead);
  321. }
  322. return NTStatus.STATUS_SUCCESS;
  323. }
  324. public NTStatus WriteFile(out int numberOfBytesWritten, object handle, long offset, byte[] data)
  325. {
  326. numberOfBytesWritten = 0;
  327. FileHandle fileHandle = (FileHandle)handle;
  328. string path = fileHandle.Path;
  329. Stream stream = fileHandle.Stream;
  330. if (stream == null || !stream.CanWrite)
  331. {
  332. Log(Severity.Verbose, "WriteFile: Cannot write '{0}'. Invalid Operation.", path);
  333. return NTStatus.STATUS_ACCESS_DENIED;
  334. }
  335. try
  336. {
  337. stream.Seek(offset, SeekOrigin.Begin);
  338. stream.Write(data, 0, data.Length);
  339. }
  340. catch (Exception ex)
  341. {
  342. NTStatus status = ToNTStatus(ex);
  343. Log(Severity.Verbose, "WriteFile: Cannot write '{0}'. {1}.", path, status);
  344. return status;
  345. }
  346. numberOfBytesWritten = data.Length;
  347. return NTStatus.STATUS_SUCCESS;
  348. }
  349. public NTStatus FlushFileBuffers(object handle)
  350. {
  351. FileHandle fileHandle = (FileHandle)handle;
  352. if (fileHandle.Stream != null)
  353. {
  354. fileHandle.Stream.Flush();
  355. }
  356. return NTStatus.STATUS_SUCCESS;
  357. }
  358. public NTStatus LockFile(object handle, long byteOffset, long length, bool exclusiveLock)
  359. {
  360. return NTStatus.STATUS_NOT_SUPPORTED;
  361. }
  362. public NTStatus UnlockFile(object handle, long byteOffset, long length)
  363. {
  364. return NTStatus.STATUS_NOT_SUPPORTED;
  365. }
  366. public NTStatus GetSecurityInformation(out SecurityDescriptor result, object handle, SecurityInformation securityInformation)
  367. {
  368. result = null;
  369. return NTStatus.STATUS_NOT_SUPPORTED;
  370. }
  371. public NTStatus SetSecurityInformation(object handle, SecurityInformation securityInformation, SecurityDescriptor securityDescriptor)
  372. {
  373. return NTStatus.STATUS_NOT_SUPPORTED;
  374. }
  375. public NTStatus NotifyChange(out object ioRequest, object handle, NotifyChangeFilter completionFilter, bool watchTree, int outputBufferSize, OnNotifyChangeCompleted onNotifyChangeCompleted, object context)
  376. {
  377. ioRequest = null;
  378. return NTStatus.STATUS_NOT_SUPPORTED;
  379. }
  380. public NTStatus Cancel(object ioRequest)
  381. {
  382. return NTStatus.STATUS_NOT_SUPPORTED;
  383. }
  384. public NTStatus DeviceIOControl(object handle, uint ctlCode, byte[] input, out byte[] output, int maxOutputLength)
  385. {
  386. output = null;
  387. return NTStatus.STATUS_NOT_SUPPORTED;
  388. }
  389. public void Log(Severity severity, string message)
  390. {
  391. // To be thread-safe we must capture the delegate reference first
  392. EventHandler<LogEntry> handler = LogEntryAdded;
  393. if (handler != null)
  394. {
  395. handler(this, new LogEntry(DateTime.Now, severity, "NT FileSystem Adapter", message));
  396. }
  397. }
  398. public void Log(Severity severity, string message, params object[] args)
  399. {
  400. Log(severity, String.Format(message, args));
  401. }
  402. /// <param name="exception">IFileSystem exception</param>
  403. private static NTStatus ToNTStatus(Exception exception)
  404. {
  405. if (exception is ArgumentException)
  406. {
  407. return NTStatus.STATUS_OBJECT_PATH_SYNTAX_BAD;
  408. }
  409. else if (exception is DirectoryNotFoundException)
  410. {
  411. return NTStatus.STATUS_OBJECT_PATH_NOT_FOUND;
  412. }
  413. else if (exception is FileNotFoundException)
  414. {
  415. return NTStatus.STATUS_OBJECT_PATH_NOT_FOUND;
  416. }
  417. else if (exception is IOException)
  418. {
  419. ushort errorCode = IOExceptionHelper.GetWin32ErrorCode((IOException)exception);
  420. if (errorCode == (ushort)Win32Error.ERROR_SHARING_VIOLATION)
  421. {
  422. return NTStatus.STATUS_SHARING_VIOLATION;
  423. }
  424. else if (errorCode == (ushort)Win32Error.ERROR_DISK_FULL)
  425. {
  426. return NTStatus.STATUS_DISK_FULL;
  427. }
  428. else if (errorCode == (ushort)Win32Error.ERROR_DIR_NOT_EMPTY)
  429. {
  430. // If a user tries to rename folder1 to folder2 when folder2 already exists, Windows 7 will offer to merge folder1 into folder2.
  431. // In such case, Windows 7 will delete folder 1 and will expect STATUS_DIRECTORY_NOT_EMPTY if there are files to merge.
  432. return NTStatus.STATUS_DIRECTORY_NOT_EMPTY;
  433. }
  434. else if (errorCode == (ushort)Win32Error.ERROR_BAD_PATHNAME)
  435. {
  436. return NTStatus.STATUS_OBJECT_PATH_INVALID;
  437. }
  438. else if (errorCode == (ushort)Win32Error.ERROR_ALREADY_EXISTS)
  439. {
  440. // According to [MS-FSCC], FileRenameInformation MUST return STATUS_OBJECT_NAME_COLLISION when the specified name already exists and ReplaceIfExists is zero.
  441. return NTStatus.STATUS_OBJECT_NAME_COLLISION;
  442. }
  443. else
  444. {
  445. return NTStatus.STATUS_DATA_ERROR;
  446. }
  447. }
  448. else if (exception is UnauthorizedAccessException)
  449. {
  450. return NTStatus.STATUS_ACCESS_DENIED;
  451. }
  452. else
  453. {
  454. return NTStatus.STATUS_DATA_ERROR;
  455. }
  456. }
  457. private static FileOptions ToFileOptions(CreateOptions createOptions)
  458. {
  459. const FileOptions FILE_FLAG_OPEN_REPARSE_POINT = (FileOptions)0x00200000;
  460. const FileOptions FILE_FLAG_NO_BUFFERING = (FileOptions)0x20000000;
  461. FileOptions result = FileOptions.None;
  462. if ((createOptions & CreateOptions.FILE_OPEN_REPARSE_POINT) > 0)
  463. {
  464. result |= FILE_FLAG_OPEN_REPARSE_POINT;
  465. }
  466. if ((createOptions & CreateOptions.FILE_NO_INTERMEDIATE_BUFFERING) > 0)
  467. {
  468. result |= FILE_FLAG_NO_BUFFERING;
  469. }
  470. if ((createOptions & CreateOptions.FILE_RANDOM_ACCESS) > 0)
  471. {
  472. result |= FileOptions.RandomAccess;
  473. }
  474. if ((createOptions & CreateOptions.FILE_SEQUENTIAL_ONLY) > 0)
  475. {
  476. result |= FileOptions.SequentialScan;
  477. }
  478. if ((createOptions & CreateOptions.FILE_WRITE_THROUGH) > 0)
  479. {
  480. result |= FileOptions.WriteThrough;
  481. }
  482. if ((createOptions & CreateOptions.FILE_DELETE_ON_CLOSE) > 0)
  483. {
  484. result |= FileOptions.DeleteOnClose;
  485. }
  486. return result;
  487. }
  488. private static string ToFileOptionsString(FileOptions options)
  489. {
  490. string result = String.Empty;
  491. const FileOptions FILE_FLAG_OPEN_REPARSE_POINT = (FileOptions)0x00200000;
  492. const FileOptions FILE_FLAG_NO_BUFFERING = (FileOptions)0x20000000;
  493. if ((options & FILE_FLAG_OPEN_REPARSE_POINT) > 0)
  494. {
  495. result += "ReparsePoint|";
  496. options &= ~FILE_FLAG_OPEN_REPARSE_POINT;
  497. }
  498. if ((options & FILE_FLAG_NO_BUFFERING) > 0)
  499. {
  500. result += "NoBuffering|";
  501. options &= ~FILE_FLAG_NO_BUFFERING;
  502. }
  503. if (result == String.Empty || options != FileOptions.None)
  504. {
  505. result += options.ToString().Replace(", ", "|");
  506. }
  507. result = result.TrimEnd(new char[] { '|' });
  508. return result;
  509. }
  510. /// <summary>
  511. /// Will return a virtual allocation size, assuming 4096 bytes per cluster
  512. /// </summary>
  513. public static ulong GetAllocationSize(ulong size)
  514. {
  515. return (ulong)Math.Ceiling((double)size / ClusterSize) * ClusterSize;
  516. }
  517. }
  518. }