NTFileSystemAdapter.cs 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533
  1. /* Copyright (C) 2014-2017 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
  2. *
  3. * You can redistribute this program and/or modify it under the terms of
  4. * the GNU Lesser Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. */
  7. using System;
  8. using System.Collections.Generic;
  9. using System.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, 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;
  45. try
  46. {
  47. entry = m_fileSystem.GetEntry(path);
  48. }
  49. catch (Exception ex)
  50. {
  51. NTStatus status = ToNTStatus(ex);
  52. Log(Severity.Verbose, "CreateFile: Error retrieving '{0}'. {1}.", path, status);
  53. return status;
  54. }
  55. if (createDisposition == CreateDisposition.FILE_OPEN)
  56. {
  57. if (entry == null)
  58. {
  59. return NTStatus.STATUS_NO_SUCH_FILE;
  60. }
  61. fileStatus = FileStatus.FILE_EXISTS;
  62. if (entry.IsDirectory && forceFile)
  63. {
  64. return NTStatus.STATUS_FILE_IS_A_DIRECTORY;
  65. }
  66. if (!entry.IsDirectory && forceDirectory)
  67. {
  68. return NTStatus.STATUS_OBJECT_PATH_INVALID;
  69. }
  70. }
  71. else if (createDisposition == CreateDisposition.FILE_CREATE)
  72. {
  73. if (entry != null)
  74. {
  75. // File already exists, fail the request
  76. Log(Severity.Verbose, "CreateFile: File '{0}' already exists.", path);
  77. fileStatus = FileStatus.FILE_EXISTS;
  78. return NTStatus.STATUS_OBJECT_NAME_COLLISION;
  79. }
  80. if (!requestedWriteAccess)
  81. {
  82. return NTStatus.STATUS_ACCESS_DENIED;
  83. }
  84. try
  85. {
  86. if (forceDirectory)
  87. {
  88. Log(Severity.Information, "CreateFile: Creating directory '{0}'", path);
  89. entry = m_fileSystem.CreateDirectory(path);
  90. }
  91. else
  92. {
  93. Log(Severity.Information, "CreateFile: Creating file '{0}'", path);
  94. entry = m_fileSystem.CreateFile(path);
  95. }
  96. }
  97. catch (Exception ex)
  98. {
  99. NTStatus status = ToNTStatus(ex);
  100. Log(Severity.Verbose, "CreateFile: Error creating '{0}'. {1}.", path, status);
  101. return status;
  102. }
  103. fileStatus = FileStatus.FILE_CREATED;
  104. }
  105. else if (createDisposition == CreateDisposition.FILE_OPEN_IF ||
  106. createDisposition == CreateDisposition.FILE_OVERWRITE ||
  107. createDisposition == CreateDisposition.FILE_OVERWRITE_IF ||
  108. createDisposition == CreateDisposition.FILE_SUPERSEDE)
  109. {
  110. if (entry == null)
  111. {
  112. if (createDisposition == CreateDisposition.FILE_OVERWRITE)
  113. {
  114. return NTStatus.STATUS_OBJECT_PATH_NOT_FOUND;
  115. }
  116. if (!requestedWriteAccess)
  117. {
  118. return NTStatus.STATUS_ACCESS_DENIED;
  119. }
  120. try
  121. {
  122. if (forceDirectory)
  123. {
  124. Log(Severity.Information, "CreateFile: Creating directory '{0}'", path);
  125. entry = m_fileSystem.CreateDirectory(path);
  126. }
  127. else
  128. {
  129. Log(Severity.Information, "CreateFile: Creating file '{0}'", path);
  130. entry = m_fileSystem.CreateFile(path);
  131. }
  132. }
  133. catch (Exception ex)
  134. {
  135. NTStatus status = ToNTStatus(ex);
  136. Log(Severity.Verbose, "CreateFile: Error creating '{0}'. {1}.", path, status);
  137. return status;
  138. }
  139. fileStatus = FileStatus.FILE_CREATED;
  140. }
  141. else
  142. {
  143. fileStatus = FileStatus.FILE_EXISTS;
  144. if (createDisposition == CreateDisposition.FILE_OPEN_IF)
  145. {
  146. if (entry.IsDirectory && forceFile)
  147. {
  148. return NTStatus.STATUS_FILE_IS_A_DIRECTORY;
  149. }
  150. if (!entry.IsDirectory && forceDirectory)
  151. {
  152. return NTStatus.STATUS_OBJECT_PATH_INVALID;
  153. }
  154. }
  155. else
  156. {
  157. if (!requestedWriteAccess)
  158. {
  159. return NTStatus.STATUS_ACCESS_DENIED;
  160. }
  161. if (createDisposition == CreateDisposition.FILE_OVERWRITE ||
  162. createDisposition == CreateDisposition.FILE_OVERWRITE_IF)
  163. {
  164. // Truncate the file
  165. try
  166. {
  167. Stream temp = m_fileSystem.OpenFile(path, FileMode.Truncate, FileAccess.ReadWrite, FileShare.ReadWrite, FileOptions.None);
  168. temp.Close();
  169. }
  170. catch (Exception ex)
  171. {
  172. NTStatus status = ToNTStatus(ex);
  173. Log(Severity.Verbose, "CreateFile: Error truncating '{0}'. {1}.", path, status);
  174. return status;
  175. }
  176. fileStatus = FileStatus.FILE_OVERWRITTEN;
  177. }
  178. else if (createDisposition == CreateDisposition.FILE_SUPERSEDE)
  179. {
  180. // Delete the old file
  181. try
  182. {
  183. m_fileSystem.Delete(path);
  184. }
  185. catch (Exception ex)
  186. {
  187. NTStatus status = ToNTStatus(ex);
  188. Log(Severity.Verbose, "CreateFile: Error deleting '{0}'. {1}.", path, status);
  189. return status;
  190. }
  191. try
  192. {
  193. if (forceDirectory)
  194. {
  195. Log(Severity.Information, "CreateFile: Creating directory '{0}'", path);
  196. entry = m_fileSystem.CreateDirectory(path);
  197. }
  198. else
  199. {
  200. Log(Severity.Information, "CreateFile: Creating file '{0}'", path);
  201. entry = m_fileSystem.CreateFile(path);
  202. }
  203. }
  204. catch (Exception ex)
  205. {
  206. NTStatus status = ToNTStatus(ex);
  207. Log(Severity.Verbose, "CreateFile: Error creating '{0}'. {1}.", path, status);
  208. return status;
  209. }
  210. fileStatus = FileStatus.FILE_SUPERSEDED;
  211. }
  212. }
  213. }
  214. }
  215. else
  216. {
  217. return NTStatus.STATUS_INVALID_PARAMETER;
  218. }
  219. FileAccess fileAccess = NTFileStoreHelper.ToFileAccess(desiredAccess.File);
  220. Stream stream;
  221. bool deleteOnClose = false;
  222. if (fileAccess == (FileAccess)0 || entry.IsDirectory)
  223. {
  224. stream = null;
  225. }
  226. else
  227. {
  228. NTStatus openStatus = OpenFileStream(out stream, path, fileAccess, shareAccess, createOptions);
  229. if (openStatus != NTStatus.STATUS_SUCCESS)
  230. {
  231. return openStatus;
  232. }
  233. }
  234. deleteOnClose = (createOptions & CreateOptions.FILE_DELETE_ON_CLOSE) > 0;
  235. handle = new FileHandle(path, entry.IsDirectory, stream, deleteOnClose);
  236. if (fileStatus != FileStatus.FILE_CREATED &&
  237. fileStatus != FileStatus.FILE_OVERWRITTEN &&
  238. fileStatus != FileStatus.FILE_SUPERSEDED)
  239. {
  240. fileStatus = FileStatus.FILE_OPENED;
  241. }
  242. return NTStatus.STATUS_SUCCESS;
  243. }
  244. private NTStatus OpenFileStream(out Stream stream, string path, FileAccess fileAccess, ShareAccess shareAccess, CreateOptions openOptions)
  245. {
  246. stream = null;
  247. FileShare fileShare = NTFileStoreHelper.ToFileShare(shareAccess);
  248. FileOptions fileOptions = ToFileOptions(openOptions);
  249. string fileShareString = fileShare.ToString().Replace(", ", "|");
  250. string fileOptionsString = ToFileOptionsString(fileOptions);
  251. try
  252. {
  253. stream = m_fileSystem.OpenFile(path, FileMode.Open, fileAccess, fileShare, fileOptions);
  254. }
  255. catch (Exception ex)
  256. {
  257. NTStatus status = ToNTStatus(ex);
  258. Log(Severity.Verbose, "OpenFile: Cannot open '{0}', Access={1}, Share={2}. NTStatus: {3}.", path, fileAccess, fileShareString, status);
  259. return status;
  260. }
  261. Log(Severity.Information, "OpenFileStream: Opened '{0}', Access={1}, Share={2}, FileOptions={3}", path, fileAccess, fileShareString, fileOptionsString);
  262. return NTStatus.STATUS_SUCCESS;
  263. }
  264. public NTStatus CloseFile(object handle)
  265. {
  266. FileHandle fileHandle = (FileHandle)handle;
  267. if (fileHandle.Stream != null)
  268. {
  269. Log(Severity.Verbose, "CloseFile: Closing '{0}'.", fileHandle.Path);
  270. fileHandle.Stream.Close();
  271. }
  272. return NTStatus.STATUS_SUCCESS;
  273. }
  274. public NTStatus ReadFile(out byte[] data, object handle, long offset, int maxCount)
  275. {
  276. data = null;
  277. FileHandle fileHandle = (FileHandle)handle;
  278. string path = fileHandle.Path;
  279. Stream stream = fileHandle.Stream;
  280. if (stream == null || !stream.CanRead)
  281. {
  282. Log(Severity.Verbose, "ReadFile: Cannot read '{0}', Invalid Operation.", path);
  283. return NTStatus.STATUS_ACCESS_DENIED;
  284. }
  285. int bytesRead;
  286. try
  287. {
  288. stream.Seek(offset, SeekOrigin.Begin);
  289. data = new byte[maxCount];
  290. bytesRead = stream.Read(data, 0, maxCount);
  291. }
  292. catch (Exception ex)
  293. {
  294. NTStatus status = ToNTStatus(ex);
  295. Log(Severity.Verbose, "ReadFile: Cannot read '{0}'. {1}.", path, status);
  296. return status;
  297. }
  298. if (bytesRead < maxCount)
  299. {
  300. // EOF, we must trim the response data array
  301. data = ByteReader.ReadBytes(data, 0, bytesRead);
  302. }
  303. return NTStatus.STATUS_SUCCESS;
  304. }
  305. public NTStatus WriteFile(out int numberOfBytesWritten, object handle, long offset, byte[] data)
  306. {
  307. numberOfBytesWritten = 0;
  308. FileHandle fileHandle = (FileHandle)handle;
  309. string path = fileHandle.Path;
  310. Stream stream = fileHandle.Stream;
  311. if (stream == null || !stream.CanWrite)
  312. {
  313. Log(Severity.Verbose, "WriteFile: Cannot write '{0}'. Invalid Operation.", path);
  314. return NTStatus.STATUS_ACCESS_DENIED;
  315. }
  316. try
  317. {
  318. stream.Seek(offset, SeekOrigin.Begin);
  319. stream.Write(data, 0, data.Length);
  320. }
  321. catch (Exception ex)
  322. {
  323. NTStatus status = ToNTStatus(ex);
  324. Log(Severity.Verbose, "WriteFile: Cannot write '{0}'. {1}.", path, status);
  325. return status;
  326. }
  327. numberOfBytesWritten = data.Length;
  328. return NTStatus.STATUS_SUCCESS;
  329. }
  330. public NTStatus FlushFileBuffers(object handle)
  331. {
  332. FileHandle fileHandle = (FileHandle)handle;
  333. if (fileHandle.Stream != null)
  334. {
  335. fileHandle.Stream.Flush();
  336. }
  337. return NTStatus.STATUS_SUCCESS;
  338. }
  339. public NTStatus DeviceIOControl(object handle, uint ctlCode, byte[] input, out byte[] output, int maxOutputLength)
  340. {
  341. output = null;
  342. return NTStatus.STATUS_NOT_SUPPORTED;
  343. }
  344. public void Log(Severity severity, string message)
  345. {
  346. // To be thread-safe we must capture the delegate reference first
  347. EventHandler<LogEntry> handler = LogEntryAdded;
  348. if (handler != null)
  349. {
  350. handler(this, new LogEntry(DateTime.Now, severity, "NT FileSystem Adapter", message));
  351. }
  352. }
  353. public void Log(Severity severity, string message, params object[] args)
  354. {
  355. Log(severity, String.Format(message, args));
  356. }
  357. /// <param name="exception">IFileSystem exception</param>
  358. private static NTStatus ToNTStatus(Exception exception)
  359. {
  360. if (exception is ArgumentException)
  361. {
  362. return NTStatus.STATUS_OBJECT_PATH_SYNTAX_BAD;
  363. }
  364. else if (exception is DirectoryNotFoundException)
  365. {
  366. return NTStatus.STATUS_OBJECT_PATH_NOT_FOUND;
  367. }
  368. else if (exception is FileNotFoundException)
  369. {
  370. return NTStatus.STATUS_OBJECT_PATH_NOT_FOUND;
  371. }
  372. else if (exception is IOException)
  373. {
  374. ushort errorCode = IOExceptionHelper.GetWin32ErrorCode((IOException)exception);
  375. if (errorCode == (ushort)Win32Error.ERROR_SHARING_VIOLATION)
  376. {
  377. return NTStatus.STATUS_SHARING_VIOLATION;
  378. }
  379. else if (errorCode == (ushort)Win32Error.ERROR_DISK_FULL)
  380. {
  381. return NTStatus.STATUS_DISK_FULL;
  382. }
  383. else if (errorCode == (ushort)Win32Error.ERROR_DIR_NOT_EMPTY)
  384. {
  385. // If a user tries to rename folder1 to folder2 when folder2 already exists, Windows 7 will offer to merge folder1 into folder2.
  386. // In such case, Windows 7 will delete folder 1 and will expect STATUS_DIRECTORY_NOT_EMPTY if there are files to merge.
  387. return NTStatus.STATUS_DIRECTORY_NOT_EMPTY;
  388. }
  389. else if (errorCode == (ushort)Win32Error.ERROR_ALREADY_EXISTS)
  390. {
  391. // According to [MS-FSCC], FileRenameInformation MUST return STATUS_OBJECT_NAME_COLLISION when the specified name already exists and ReplaceIfExists is zero.
  392. return NTStatus.STATUS_OBJECT_NAME_COLLISION;
  393. }
  394. else
  395. {
  396. return NTStatus.STATUS_DATA_ERROR;
  397. }
  398. }
  399. else if (exception is UnauthorizedAccessException)
  400. {
  401. return NTStatus.STATUS_ACCESS_DENIED;
  402. }
  403. else
  404. {
  405. return NTStatus.STATUS_DATA_ERROR;
  406. }
  407. }
  408. private static FileOptions ToFileOptions(CreateOptions createOptions)
  409. {
  410. const FileOptions FILE_FLAG_OPEN_REPARSE_POINT = (FileOptions)0x00200000;
  411. const FileOptions FILE_FLAG_NO_BUFFERING = (FileOptions)0x20000000;
  412. FileOptions result = FileOptions.None;
  413. if ((createOptions & CreateOptions.FILE_OPEN_REPARSE_POINT) > 0)
  414. {
  415. result |= FILE_FLAG_OPEN_REPARSE_POINT;
  416. }
  417. if ((createOptions & CreateOptions.FILE_NO_INTERMEDIATE_BUFFERING) > 0)
  418. {
  419. result |= FILE_FLAG_NO_BUFFERING;
  420. }
  421. if ((createOptions & CreateOptions.FILE_RANDOM_ACCESS) > 0)
  422. {
  423. result |= FileOptions.RandomAccess;
  424. }
  425. if ((createOptions & CreateOptions.FILE_SEQUENTIAL_ONLY) > 0)
  426. {
  427. result |= FileOptions.SequentialScan;
  428. }
  429. if ((createOptions & CreateOptions.FILE_WRITE_THROUGH) > 0)
  430. {
  431. result |= FileOptions.WriteThrough;
  432. }
  433. if ((createOptions & CreateOptions.FILE_DELETE_ON_CLOSE) > 0)
  434. {
  435. result |= FileOptions.DeleteOnClose;
  436. }
  437. return result;
  438. }
  439. private static string ToFileOptionsString(FileOptions options)
  440. {
  441. string result = String.Empty;
  442. const FileOptions FILE_FLAG_OPEN_REPARSE_POINT = (FileOptions)0x00200000;
  443. const FileOptions FILE_FLAG_NO_BUFFERING = (FileOptions)0x20000000;
  444. if ((options & FILE_FLAG_OPEN_REPARSE_POINT) > 0)
  445. {
  446. result += "ReparsePoint|";
  447. options &= ~FILE_FLAG_OPEN_REPARSE_POINT;
  448. }
  449. if ((options & FILE_FLAG_NO_BUFFERING) > 0)
  450. {
  451. result += "NoBuffering|";
  452. options &= ~FILE_FLAG_NO_BUFFERING;
  453. }
  454. if (result == String.Empty || options != FileOptions.None)
  455. {
  456. result += options.ToString().Replace(", ", "|");
  457. }
  458. result = result.TrimEnd(new char[] { '|' });
  459. return result;
  460. }
  461. /// <summary>
  462. /// Will return a virtual allocation size, assuming 4096 bytes per cluster
  463. /// </summary>
  464. public static ulong GetAllocationSize(ulong size)
  465. {
  466. return (ulong)Math.Ceiling((double)size / ClusterSize) * ClusterSize;
  467. }
  468. public static string GetShortName(string fileName)
  469. {
  470. string fileNameWithoutExt = System.IO.Path.GetFileNameWithoutExtension(fileName);
  471. string extension = System.IO.Path.GetExtension(fileName);
  472. if (fileNameWithoutExt.Length > 8 || extension.Length > 4)
  473. {
  474. if (fileNameWithoutExt.Length > 8)
  475. {
  476. fileNameWithoutExt = fileNameWithoutExt.Substring(0, 8);
  477. }
  478. if (extension.Length > 4)
  479. {
  480. extension = extension.Substring(0, 4);
  481. }
  482. return fileNameWithoutExt + extension;
  483. }
  484. else
  485. {
  486. return fileName;
  487. }
  488. }
  489. }
  490. }