Transaction2SubcommandHelper.cs 15 KB

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