SMBServer.SMB2.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  1. /* Copyright (C) 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 SMBLibrary.NetBios;
  10. using SMBLibrary.Server.SMB2;
  11. using SMBLibrary.SMB2;
  12. using Utilities;
  13. namespace SMBLibrary.Server
  14. {
  15. public partial class SMBServer
  16. {
  17. private void ProcessSMB2RequestChain(List<SMB2Command> requestChain, ref ConnectionState state)
  18. {
  19. List<SMB2Command> responseChain = new List<SMB2Command>();
  20. FileID? fileID = null;
  21. foreach (SMB2Command request in requestChain)
  22. {
  23. if (request.Header.IsRelatedOperations && fileID.HasValue)
  24. {
  25. SetRequestFileID(request, fileID.Value);
  26. }
  27. SMB2Command response = ProcessSMB2Command(request, ref state);
  28. if (response != null)
  29. {
  30. UpdateSMB2Header(response, request);
  31. responseChain.Add(response);
  32. if (!request.Header.IsRelatedOperations)
  33. {
  34. fileID = GetResponseFileID(response);
  35. }
  36. }
  37. }
  38. if (responseChain.Count > 0)
  39. {
  40. EnqueueResponseChain(state, responseChain);
  41. }
  42. }
  43. /// <summary>
  44. /// May return null
  45. /// </summary>
  46. private SMB2Command ProcessSMB2Command(SMB2Command command, ref ConnectionState state)
  47. {
  48. if (state.Dialect == SMBDialect.NotSet)
  49. {
  50. if (command is NegotiateRequest)
  51. {
  52. NegotiateRequest request = (NegotiateRequest)command;
  53. SMB2Command response = NegotiateHelper.GetNegotiateResponse(request, m_securityProvider, state, m_serverGuid, m_serverStartTime);
  54. if (state.Dialect != SMBDialect.NotSet)
  55. {
  56. state = new SMB2ConnectionState(state);
  57. m_connectionManager.AddConnection(state);
  58. }
  59. return response;
  60. }
  61. else
  62. {
  63. // [MS-SMB2] If the request being received is not an SMB2 NEGOTIATE Request [..]
  64. // and Connection.NegotiateDialect is 0xFFFF or 0x02FF, the server MUST
  65. // disconnect the connection.
  66. state.LogToServer(Severity.Debug, "Invalid Connection State for command {0}", command.CommandName.ToString());
  67. state.ClientSocket.Close();
  68. return null;
  69. }
  70. }
  71. else if (command is NegotiateRequest)
  72. {
  73. // [MS-SMB2] If Connection.NegotiateDialect is 0x0202, 0x0210, 0x0300, 0x0302, or 0x0311,
  74. // the server MUST disconnect the connection.
  75. state.LogToServer(Severity.Debug, "Rejecting NegotiateRequest. NegotiateDialect is already set");
  76. state.ClientSocket.Close();
  77. return null;
  78. }
  79. else
  80. {
  81. return ProcessSMB2Command(command, (SMB2ConnectionState)state);
  82. }
  83. }
  84. private SMB2Command ProcessSMB2Command(SMB2Command command, SMB2ConnectionState state)
  85. {
  86. if (command is SessionSetupRequest)
  87. {
  88. return SessionSetupHelper.GetSessionSetupResponse((SessionSetupRequest)command, m_securityProvider, state);
  89. }
  90. else if (command is EchoRequest)
  91. {
  92. return new EchoResponse();
  93. }
  94. else
  95. {
  96. SMB2Session session = state.GetSession(command.Header.SessionID);
  97. if (session == null)
  98. {
  99. return new ErrorResponse(command.CommandName, NTStatus.STATUS_USER_SESSION_DELETED);
  100. }
  101. if (command is TreeConnectRequest)
  102. {
  103. return TreeConnectHelper.GetTreeConnectResponse((TreeConnectRequest)command, state, m_services, m_shares);
  104. }
  105. else if (command is LogoffRequest)
  106. {
  107. m_securityProvider.DeleteSecurityContext(ref session.SecurityContext.AuthenticationContext);
  108. state.RemoveSession(command.Header.SessionID);
  109. return new LogoffResponse();
  110. }
  111. else
  112. {
  113. // Cancel requests can have an ASYNC header (TreeID will not be present)
  114. if (command is CancelRequest)
  115. {
  116. if (command.Header.IsAsync && command.Header.AsyncID == 0)
  117. {
  118. ErrorResponse response = new ErrorResponse(command.CommandName, NTStatus.STATUS_CANCELLED);
  119. response.Header.IsAsync = true;
  120. return response;
  121. }
  122. // [MS-SMB2] If a request is not found, the server MUST stop processing for this cancel request. No response is sent.
  123. return null;
  124. }
  125. ISMBShare share = session.GetConnectedTree(command.Header.TreeID);
  126. if (share == null)
  127. {
  128. return new ErrorResponse(command.CommandName, NTStatus.STATUS_NETWORK_NAME_DELETED);
  129. }
  130. if (command is TreeDisconnectRequest)
  131. {
  132. return TreeConnectHelper.GetTreeDisconnectResponse((TreeDisconnectRequest)command, share, state);
  133. }
  134. else if (command is CreateRequest)
  135. {
  136. return CreateHelper.GetCreateResponse((CreateRequest)command, share, state);
  137. }
  138. else if (command is QueryInfoRequest)
  139. {
  140. return QueryInfoHelper.GetQueryInfoResponse((QueryInfoRequest)command, share, state);
  141. }
  142. else if (command is SetInfoRequest)
  143. {
  144. return SetInfoHelper.GetSetInfoResponse((SetInfoRequest)command, share, state);
  145. }
  146. else if (command is QueryDirectoryRequest)
  147. {
  148. return QueryDirectoryHelper.GetQueryDirectoryResponse((QueryDirectoryRequest)command, share, state);
  149. }
  150. else if (command is ReadRequest)
  151. {
  152. return ReadWriteResponseHelper.GetReadResponse((ReadRequest)command, share, state);
  153. }
  154. else if (command is WriteRequest)
  155. {
  156. return ReadWriteResponseHelper.GetWriteResponse((WriteRequest)command, share, state);
  157. }
  158. else if (command is FlushRequest)
  159. {
  160. FlushRequest request = (FlushRequest)command;
  161. OpenFileObject openFile = session.GetOpenFileObject(request.FileId);
  162. if (openFile == null)
  163. {
  164. return new ErrorResponse(request.CommandName, NTStatus.STATUS_FILE_CLOSED);
  165. }
  166. NTStatus status = share.FileStore.FlushFileBuffers(openFile.Handle);
  167. if (status != NTStatus.STATUS_SUCCESS)
  168. {
  169. return new ErrorResponse(request.CommandName, status);
  170. }
  171. return new FlushResponse();
  172. }
  173. else if (command is CloseRequest)
  174. {
  175. return CloseHelper.GetCloseResponse((CloseRequest)command, share, state);
  176. }
  177. else if (command is IOCtlRequest)
  178. {
  179. return IOCtlHelper.GetIOCtlResponse((IOCtlRequest)command, share, state);
  180. }
  181. else if (command is ChangeNotifyRequest)
  182. {
  183. // [MS-SMB2] If the underlying object store does not support change notifications, the server MUST fail this request with STATUS_NOT_SUPPORTED
  184. ErrorResponse response = new ErrorResponse(command.CommandName, NTStatus.STATUS_NOT_SUPPORTED);
  185. // Windows 7 / 8 / 10 will infinitely retry sending ChangeNotify requests if the response does not have SMB2_FLAGS_ASYNC_COMMAND set.
  186. // Note: NoRemoteChangeNotify can be set in the registry to prevent the client from sending ChangeNotify requests altogether.
  187. response.Header.IsAsync = true;
  188. return response;
  189. }
  190. }
  191. }
  192. return new ErrorResponse(command.CommandName, NTStatus.STATUS_NOT_SUPPORTED);
  193. }
  194. private static void EnqueueResponse(ConnectionState state, SMB2Command response)
  195. {
  196. SessionMessagePacket packet = new SessionMessagePacket();
  197. packet.Trailer = response.GetBytes();
  198. state.SendQueue.Enqueue(packet);
  199. state.LogToServer(Severity.Verbose, "SMB2 response queued: {0}, Packet length: {1}", response.CommandName.ToString(), packet.Length);
  200. }
  201. private static void EnqueueResponseChain(ConnectionState state, List<SMB2Command> responseChain)
  202. {
  203. byte[] sessionKey = null;
  204. if (state is SMB2ConnectionState)
  205. {
  206. // Note: multiple sessions MAY be multiplexed on the same connection, so theoretically
  207. // we could have compounding unrelated requests from different sessions.
  208. // In practice however this is not a real problem.
  209. ulong sessionID = responseChain[0].Header.SessionID;
  210. if (sessionID != 0)
  211. {
  212. SMB2Session session = ((SMB2ConnectionState)state).GetSession(sessionID);
  213. if (session != null)
  214. {
  215. sessionKey = session.SessionKey;
  216. }
  217. }
  218. }
  219. SessionMessagePacket packet = new SessionMessagePacket();
  220. packet.Trailer = SMB2Command.GetCommandChainBytes(responseChain, sessionKey);
  221. state.SendQueue.Enqueue(packet);
  222. state.LogToServer(Severity.Verbose, "SMB2 response chain queued: Response count: {0}, First response: {1}, Packet length: {2}", responseChain.Count, responseChain[0].CommandName.ToString(), packet.Length);
  223. }
  224. private static void UpdateSMB2Header(SMB2Command response, SMB2Command request)
  225. {
  226. response.Header.MessageID = request.Header.MessageID;
  227. response.Header.CreditCharge = request.Header.CreditCharge;
  228. response.Header.Credits = Math.Max((ushort)1, request.Header.Credits);
  229. response.Header.IsRelatedOperations = request.Header.IsRelatedOperations;
  230. // [MS-SMB2] The server SHOULD sign the message [..] if the request was signed by the client,
  231. // and the response is not an interim response to an asynchronously processed request.
  232. bool isInterimResponse = (request.Header.IsAsync && request.Header.Status == NTStatus.STATUS_PENDING);
  233. response.Header.IsSigned = request.Header.IsSigned && !isInterimResponse;
  234. response.Header.Reserved = request.Header.Reserved;
  235. if (response.Header.SessionID == 0)
  236. {
  237. response.Header.SessionID = request.Header.SessionID;
  238. }
  239. if (response.Header.TreeID == 0)
  240. {
  241. response.Header.TreeID = request.Header.TreeID;
  242. }
  243. }
  244. private static void SetRequestFileID(SMB2Command command, FileID fileID)
  245. {
  246. if (command is ChangeNotifyRequest)
  247. {
  248. ((ChangeNotifyRequest)command).FileId = fileID;
  249. }
  250. else if (command is CloseRequest)
  251. {
  252. ((CloseRequest)command).FileId = fileID;
  253. }
  254. else if (command is FlushRequest)
  255. {
  256. ((FlushRequest)command).FileId = fileID;
  257. }
  258. else if (command is IOCtlRequest)
  259. {
  260. ((IOCtlRequest)command).FileId = fileID;
  261. }
  262. else if (command is LockRequest)
  263. {
  264. ((LockRequest)command).FileId = fileID;
  265. }
  266. else if (command is QueryDirectoryRequest)
  267. {
  268. ((QueryDirectoryRequest)command).FileId = fileID;
  269. }
  270. else if (command is QueryInfoRequest)
  271. {
  272. ((QueryInfoRequest)command).FileId = fileID;
  273. }
  274. else if (command is ReadRequest)
  275. {
  276. ((ReadRequest)command).FileId = fileID;
  277. }
  278. else if (command is SetInfoRequest)
  279. {
  280. ((SetInfoRequest)command).FileId = fileID;
  281. }
  282. else if (command is WriteRequest)
  283. {
  284. ((WriteRequest)command).FileId = fileID;
  285. }
  286. }
  287. private static FileID? GetResponseFileID(SMB2Command command)
  288. {
  289. if (command is CreateResponse)
  290. {
  291. return ((CreateResponse)command).FileId;
  292. }
  293. else if (command is IOCtlResponse)
  294. {
  295. return ((IOCtlResponse)command).FileId;
  296. }
  297. return null;
  298. }
  299. }
  300. }