SMBServer.SMB2.cs 15 KB

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