Transaction2SubcommandHelper.cs 16 KB

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