Transaction2SubcommandHelper.cs 14 KB

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