Transaction2SubcommandHelper.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  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 System.Text;
  11. using SMBLibrary.SMB1;
  12. using Utilities;
  13. namespace SMBLibrary.Server.SMB1
  14. {
  15. internal class Transaction2SubcommandHelper
  16. {
  17. internal static Transaction2FindFirst2Response GetSubcommandResponse(SMB1Header header, uint maxDataCount, Transaction2FindFirst2Request subcommand, ISMBShare share, SMB1ConnectionState state)
  18. {
  19. SMB1Session session = state.GetSession(header.UID);
  20. string fileNamePattern = subcommand.FileName;
  21. if (!fileNamePattern.StartsWith(@"\"))
  22. {
  23. fileNamePattern = @"\" + fileNamePattern;
  24. }
  25. List<QueryDirectoryFileInformation> entries;
  26. FileInformationClass informationClass;
  27. try
  28. {
  29. informationClass = GetFileInformationClass(subcommand.InformationLevel);
  30. }
  31. catch (UnsupportedInformationLevelException)
  32. {
  33. state.LogToServer(Severity.Verbose, "FindFirst2: Unsupported information level: {0}.", subcommand.InformationLevel);
  34. header.Status = NTStatus.STATUS_OS2_INVALID_LEVEL;
  35. return null;
  36. }
  37. NTStatus searchStatus = SMB1FileStoreHelper.QueryDirectory(out entries, share.FileStore, fileNamePattern, informationClass, session.SecurityContext);
  38. if (searchStatus != NTStatus.STATUS_SUCCESS)
  39. {
  40. state.LogToServer(Severity.Verbose, "FindFirst2: Searched for '{0}{1}', NTStatus: {2}", share.Name, fileNamePattern, searchStatus.ToString());
  41. header.Status = searchStatus;
  42. return null;
  43. }
  44. // We ignore SearchAttributes
  45. state.LogToServer(Severity.Information, "FindFirst2: Searched for '{0}{1}', found {2} matching entries", share.Name, fileNamePattern, entries.Count);
  46. // [MS-CIFS] If no matching entries are found, the server SHOULD fail the request with STATUS_NO_SUCH_FILE.
  47. if (entries.Count == 0)
  48. {
  49. header.Status = NTStatus.STATUS_NO_SUCH_FILE;
  50. return null;
  51. }
  52. bool returnResumeKeys = (subcommand.Flags & FindFlags.SMB_FIND_RETURN_RESUME_KEYS) > 0;
  53. int entriesToReturn = Math.Min(subcommand.SearchCount, entries.Count);
  54. List<QueryDirectoryFileInformation> segment = entries.GetRange(0, entriesToReturn);
  55. int maxLength = (int)maxDataCount;
  56. FindInformationList findInformationList;
  57. try
  58. {
  59. findInformationList = SMB1FileStoreHelper.GetFindInformationList(segment, subcommand.InformationLevel, header.UnicodeFlag, returnResumeKeys, maxLength);
  60. }
  61. catch (UnsupportedInformationLevelException)
  62. {
  63. state.LogToServer(Severity.Verbose, "FindFirst2: Unsupported information level: {0}.", subcommand.InformationLevel);
  64. header.Status = NTStatus.STATUS_OS2_INVALID_LEVEL;
  65. return null;
  66. }
  67. int returnCount = findInformationList.Count;
  68. Transaction2FindFirst2Response response = new Transaction2FindFirst2Response();
  69. response.SetFindInformationList(findInformationList, header.UnicodeFlag);
  70. response.EndOfSearch = (returnCount == entries.Count);
  71. // If [..] the search fit within a single response and SMB_FIND_CLOSE_AT_EOS is set in the Flags field,
  72. // or if SMB_FIND_CLOSE_AFTER_REQUEST is set in the request,
  73. // the server SHOULD return a SID field value of zero.
  74. // This indicates that the search has been closed and is no longer active on the server.
  75. if ((response.EndOfSearch && subcommand.CloseAtEndOfSearch) || subcommand.CloseAfterRequest)
  76. {
  77. response.SID = 0;
  78. }
  79. else
  80. {
  81. ushort? searchHandle = session.AddOpenSearch(entries, returnCount);
  82. if (!searchHandle.HasValue)
  83. {
  84. header.Status = NTStatus.STATUS_OS2_NO_MORE_SIDS;
  85. return null;
  86. }
  87. response.SID = searchHandle.Value;
  88. }
  89. return response;
  90. }
  91. internal static Transaction2FindNext2Response GetSubcommandResponse(SMB1Header header, uint maxDataCount, Transaction2FindNext2Request subcommand, ISMBShare share, SMB1ConnectionState state)
  92. {
  93. SMB1Session session = state.GetSession(header.UID);
  94. OpenSearch openSearch = session.GetOpenSearch(subcommand.SID);
  95. if (openSearch == null)
  96. {
  97. state.LogToServer(Severity.Verbose, "FindNext2 failed. Invalid SID.");
  98. header.Status = NTStatus.STATUS_INVALID_HANDLE;
  99. return null;
  100. }
  101. bool returnResumeKeys = (subcommand.Flags & FindFlags.SMB_FIND_RETURN_RESUME_KEYS) > 0;
  102. int maxLength = (int)maxDataCount;
  103. int maxCount = Math.Min(openSearch.Entries.Count - openSearch.EnumerationLocation, subcommand.SearchCount);
  104. List<QueryDirectoryFileInformation> segment = openSearch.Entries.GetRange(openSearch.EnumerationLocation, maxCount);
  105. FindInformationList findInformationList;
  106. try
  107. {
  108. findInformationList = SMB1FileStoreHelper.GetFindInformationList(segment, subcommand.InformationLevel, header.UnicodeFlag, returnResumeKeys, maxLength);
  109. }
  110. catch (UnsupportedInformationLevelException)
  111. {
  112. state.LogToServer(Severity.Verbose, "FindNext2: Unsupported information level: {0}.", subcommand.InformationLevel);
  113. header.Status = NTStatus.STATUS_OS2_INVALID_LEVEL;
  114. return null;
  115. }
  116. int returnCount = findInformationList.Count;
  117. Transaction2FindNext2Response response = new Transaction2FindNext2Response();
  118. response.SetFindInformationList(findInformationList, header.UnicodeFlag);
  119. openSearch.EnumerationLocation += returnCount;
  120. response.EndOfSearch = (openSearch.EnumerationLocation == openSearch.Entries.Count);
  121. if (response.EndOfSearch)
  122. {
  123. session.RemoveOpenSearch(subcommand.SID);
  124. }
  125. return response;
  126. }
  127. internal static Transaction2QueryFSInformationResponse GetSubcommandResponse(SMB1Header header, Transaction2QueryFSInformationRequest subcommand, ISMBShare share, SMB1ConnectionState state)
  128. {
  129. SMB1Session session = state.GetSession(header.UID);
  130. if (share is FileSystemShare)
  131. {
  132. if (!((FileSystemShare)share).HasReadAccess(session.SecurityContext, @"\"))
  133. {
  134. state.LogToServer(Severity.Verbose, "QueryFileSystemInformation on '{0}' failed. User '{1}' was denied access.", share.Name, session.UserName);
  135. header.Status = NTStatus.STATUS_ACCESS_DENIED;
  136. return null;
  137. }
  138. }
  139. Transaction2QueryFSInformationResponse response = new Transaction2QueryFSInformationResponse();
  140. QueryFSInformation queryFSInformation;
  141. NTStatus queryStatus = SMB1FileStoreHelper.GetFileSystemInformation(out queryFSInformation, share.FileStore, subcommand.InformationLevel);
  142. if (queryStatus != NTStatus.STATUS_SUCCESS)
  143. {
  144. state.LogToServer(Severity.Verbose, "GetFileSystemInformation on '{0}' failed. Information level: {1}, NTStatus: {2}", share.Name, subcommand.InformationLevel, queryStatus);
  145. header.Status = queryStatus;
  146. return null;
  147. }
  148. state.LogToServer(Severity.Information, "GetFileSystemInformation on '{0}' succeeded. Information level: {1}", share.Name, subcommand.InformationLevel);
  149. response.SetQueryFSInformation(queryFSInformation, header.UnicodeFlag);
  150. return response;
  151. }
  152. internal static Transaction2QueryPathInformationResponse GetSubcommandResponse(SMB1Header header, Transaction2QueryPathInformationRequest subcommand, ISMBShare share, SMB1ConnectionState state)
  153. {
  154. SMB1Session session = state.GetSession(header.UID);
  155. string path = subcommand.FileName;
  156. if (!path.StartsWith(@"\"))
  157. {
  158. path = @"\" + path;
  159. }
  160. if (share is FileSystemShare)
  161. {
  162. if (!((FileSystemShare)share).HasReadAccess(session.SecurityContext, path))
  163. {
  164. state.LogToServer(Severity.Verbose, "QueryPathInformation on '{0}{1}' failed. User '{2}' was denied access.", share.Name, path, session.UserName);
  165. header.Status = NTStatus.STATUS_ACCESS_DENIED;
  166. return null;
  167. }
  168. }
  169. Transaction2QueryPathInformationResponse response = new Transaction2QueryPathInformationResponse();
  170. QueryInformation queryInformation;
  171. NTStatus queryStatus = SMB1FileStoreHelper.GetFileInformation(out queryInformation, share.FileStore, path, subcommand.InformationLevel, session.SecurityContext);
  172. if (queryStatus != NTStatus.STATUS_SUCCESS)
  173. {
  174. state.LogToServer(Severity.Verbose, "GetFileInformation on '{0}{1}' failed. Information level: {2}, NTStatus: {3}", share.Name, path, subcommand.InformationLevel, queryStatus);
  175. header.Status = queryStatus;
  176. return null;
  177. }
  178. state.LogToServer(Severity.Information, "GetFileInformation on '{0}{1}' succeeded. Information level: {2}", share.Name, path, subcommand.InformationLevel);
  179. response.SetQueryInformation(queryInformation);
  180. return response;
  181. }
  182. internal static Transaction2QueryFileInformationResponse GetSubcommandResponse(SMB1Header header, Transaction2QueryFileInformationRequest subcommand, ISMBShare share, SMB1ConnectionState state)
  183. {
  184. SMB1Session session = state.GetSession(header.UID);
  185. OpenFileObject openFile = session.GetOpenFileObject(subcommand.FID);
  186. if (openFile == null)
  187. {
  188. state.LogToServer(Severity.Verbose, "QueryFileInformation failed. Invalid FID. (UID: {0}, TID: {1}, FID: {2})", header.UID, header.TID, subcommand.FID);
  189. header.Status = NTStatus.STATUS_INVALID_HANDLE;
  190. return null;
  191. }
  192. if (share is FileSystemShare)
  193. {
  194. if (!((FileSystemShare)share).HasReadAccess(session.SecurityContext, openFile.Path))
  195. {
  196. state.LogToServer(Severity.Verbose, "QueryFileInformation on '{0}{1}' failed. User '{2}' was denied access.", share.Name, openFile.Path, session.UserName);
  197. header.Status = NTStatus.STATUS_ACCESS_DENIED;
  198. return null;
  199. }
  200. }
  201. Transaction2QueryFileInformationResponse response = new Transaction2QueryFileInformationResponse();
  202. QueryInformation queryInformation;
  203. NTStatus queryStatus = SMB1FileStoreHelper.GetFileInformation(out queryInformation, share.FileStore, openFile.Handle, subcommand.InformationLevel);
  204. if (queryStatus != NTStatus.STATUS_SUCCESS)
  205. {
  206. state.LogToServer(Severity.Verbose, "GetFileInformation on '{0}{1}' failed. Information level: {2}, NTStatus: {3}", share.Name, openFile.Path, subcommand.InformationLevel, queryStatus);
  207. header.Status = queryStatus;
  208. return null;
  209. }
  210. state.LogToServer(Severity.Information, "GetFileInformation on '{0}{1}' succeeded. Information level: {2}", share.Name, openFile.Path, subcommand.InformationLevel);
  211. response.SetQueryInformation(queryInformation);
  212. return response;
  213. }
  214. internal static Transaction2SetFileInformationResponse GetSubcommandResponse(SMB1Header header, Transaction2SetFileInformationRequest subcommand, ISMBShare share, SMB1ConnectionState state)
  215. {
  216. SMB1Session session = state.GetSession(header.UID);
  217. OpenFileObject openFile = session.GetOpenFileObject(subcommand.FID);
  218. if (openFile == null)
  219. {
  220. state.LogToServer(Severity.Verbose, "SetFileInformation failed. Invalid FID. (UID: {0}, TID: {1}, FID: {2})", header.UID, header.TID, subcommand.FID);
  221. header.Status = NTStatus.STATUS_INVALID_HANDLE;
  222. return null;
  223. }
  224. if (share is FileSystemShare)
  225. {
  226. if (!((FileSystemShare)share).HasWriteAccess(session.SecurityContext, openFile.Path))
  227. {
  228. state.LogToServer(Severity.Verbose, "SetFileInformation on '{0}{1}' failed. User '{2}' was denied access.", share.Name, openFile.Path, session.UserName);
  229. header.Status = NTStatus.STATUS_ACCESS_DENIED;
  230. return null;
  231. }
  232. }
  233. SetInformation information;
  234. try
  235. {
  236. information = SetInformation.GetSetInformation(subcommand.InformationBytes, subcommand.InformationLevel);
  237. }
  238. catch(UnsupportedInformationLevelException)
  239. {
  240. state.LogToServer(Severity.Verbose, "SetFileInformation on '{0}{1}' failed. Information level: {2}, NTStatus: STATUS_OS2_INVALID_LEVEL", share.Name, openFile.Path, subcommand.InformationLevel);
  241. header.Status = NTStatus.STATUS_OS2_INVALID_LEVEL;
  242. return null;
  243. }
  244. catch(Exception)
  245. {
  246. state.LogToServer(Severity.Verbose, "SetFileInformation on '{0}{1}' failed. Information level: {2}, NTStatus: STATUS_INVALID_PARAMETER", share.Name, openFile.Path, subcommand.InformationLevel);
  247. header.Status = NTStatus.STATUS_INVALID_PARAMETER;
  248. return null;
  249. }
  250. NTStatus status = SMB1FileStoreHelper.SetFileInformation(share.FileStore, openFile.Handle, information);
  251. if (status != NTStatus.STATUS_SUCCESS)
  252. {
  253. state.LogToServer(Severity.Verbose, "SetFileInformation on '{0}{1}' failed. Information level: {2}, NTStatus: {3}", share.Name, openFile.Path, subcommand.InformationLevel, status);
  254. header.Status = status;
  255. return null;
  256. }
  257. state.LogToServer(Severity.Information, "SetFileInformation on '{0}{1}' succeeded. Information level: {2}", share.Name, openFile.Path, subcommand.InformationLevel);
  258. Transaction2SetFileInformationResponse response = new Transaction2SetFileInformationResponse();
  259. return response;
  260. }
  261. private static FileInformationClass GetFileInformationClass(FindInformationLevel informationLevel)
  262. {
  263. switch (informationLevel)
  264. {
  265. case FindInformationLevel.SMB_FIND_FILE_DIRECTORY_INFO:
  266. return FileInformationClass.FileDirectoryInformation;
  267. case FindInformationLevel.SMB_FIND_FILE_FULL_DIRECTORY_INFO:
  268. return FileInformationClass.FileFullDirectoryInformation;
  269. case FindInformationLevel.SMB_FIND_FILE_NAMES_INFO:
  270. return FileInformationClass.FileNamesInformation;
  271. case FindInformationLevel.SMB_FIND_FILE_BOTH_DIRECTORY_INFO:
  272. return FileInformationClass.FileBothDirectoryInformation;
  273. case FindInformationLevel.SMB_FIND_FILE_ID_FULL_DIRECTORY_INFO:
  274. return FileInformationClass.FileIdFullDirectoryInformation;
  275. case FindInformationLevel.SMB_FIND_FILE_ID_BOTH_DIRECTORY_INFO:
  276. return FileInformationClass.FileIdBothDirectoryInformation;
  277. default:
  278. throw new UnsupportedInformationLevelException();
  279. }
  280. }
  281. }
  282. }