SMB1Session.cs 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  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 Utilities;
  11. namespace SMBLibrary.Server
  12. {
  13. internal class SMB1Session
  14. {
  15. private const int MaxSearches = 2048; // Windows servers initialize Server.MaxSearches to 2048.
  16. private SMB1ConnectionState m_connection;
  17. private ushort m_userID;
  18. private byte[] m_sessionKey;
  19. private SecurityContext m_securityContext;
  20. private DateTime m_creationDT;
  21. // Key is TID
  22. private Dictionary<ushort, ISMBShare> m_connectedTrees = new Dictionary<ushort, ISMBShare>();
  23. // Key is FID
  24. private Dictionary<ushort, OpenFileObject> m_openFiles = new Dictionary<ushort, OpenFileObject>();
  25. // Key is search handle a.k.a. Search ID
  26. private Dictionary<ushort, OpenSearch> m_openSearches = new Dictionary<ushort, OpenSearch>();
  27. private ushort m_nextSearchHandle = 1;
  28. public SMB1Session(SMB1ConnectionState connection, ushort userID, string userName, string machineName, byte[] sessionKey, object accessToken)
  29. {
  30. m_connection = connection;
  31. m_userID = userID;
  32. m_sessionKey = sessionKey;
  33. m_securityContext = new SecurityContext(userName, machineName, connection.ClientEndPoint, connection.AuthenticationContext, accessToken);
  34. m_creationDT = DateTime.Now;
  35. }
  36. public ushort? AddConnectedTree(ISMBShare share)
  37. {
  38. ushort? treeID = m_connection.AllocateTreeID();
  39. if (treeID.HasValue)
  40. {
  41. m_connectedTrees.Add(treeID.Value, share);
  42. }
  43. return treeID;
  44. }
  45. public ISMBShare GetConnectedTree(ushort treeID)
  46. {
  47. ISMBShare share;
  48. m_connectedTrees.TryGetValue(treeID, out share);
  49. return share;
  50. }
  51. public void DisconnectTree(ushort treeID)
  52. {
  53. ISMBShare share;
  54. m_connectedTrees.TryGetValue(treeID, out share);
  55. if (share != null)
  56. {
  57. lock (m_openFiles)
  58. {
  59. List<ushort> fileIDList = new List<ushort>(m_openFiles.Keys);
  60. foreach (ushort fileID in fileIDList)
  61. {
  62. OpenFileObject openFile = m_openFiles[fileID];
  63. if (openFile.TreeID == treeID)
  64. {
  65. share.FileStore.CloseFile(openFile.Handle);
  66. m_openFiles.Remove(fileID);
  67. }
  68. }
  69. }
  70. m_connectedTrees.Remove(treeID);
  71. }
  72. }
  73. public bool IsTreeConnected(ushort treeID)
  74. {
  75. return m_connectedTrees.ContainsKey(treeID);
  76. }
  77. /// <param name="relativePath">Should include the path relative to the share</param>
  78. /// <returns>FileID</returns>
  79. public ushort? AddOpenFile(ushort treeID, string shareName, string relativePath)
  80. {
  81. return AddOpenFile(treeID, shareName, relativePath, null);
  82. }
  83. public ushort? AddOpenFile(ushort treeID, string shareName, string relativePath, object handle)
  84. {
  85. ushort? fileID = m_connection.AllocateFileID();
  86. if (fileID.HasValue)
  87. {
  88. lock (m_openFiles)
  89. {
  90. m_openFiles.Add(fileID.Value, new OpenFileObject(treeID, shareName, relativePath, handle));
  91. }
  92. }
  93. return fileID;
  94. }
  95. public OpenFileObject GetOpenFileObject(ushort fileID)
  96. {
  97. OpenFileObject openFile;
  98. m_openFiles.TryGetValue(fileID, out openFile);
  99. return openFile;
  100. }
  101. public void RemoveOpenFile(ushort fileID)
  102. {
  103. lock (m_openFiles)
  104. {
  105. m_openFiles.Remove(fileID);
  106. }
  107. }
  108. public List<string> ListOpenFiles()
  109. {
  110. List<string> result = new List<string>();
  111. lock (m_openFiles)
  112. {
  113. foreach (OpenFileObject openFile in m_openFiles.Values)
  114. {
  115. result.Add(openFile.Path);
  116. }
  117. }
  118. return result;
  119. }
  120. private ushort? AllocateSearchHandle()
  121. {
  122. for (ushort offset = 0; offset < UInt16.MaxValue; offset++)
  123. {
  124. ushort searchHandle = (ushort)(m_nextSearchHandle + offset);
  125. if (searchHandle == 0 || searchHandle == 0xFFFF)
  126. {
  127. continue;
  128. }
  129. if (!m_openSearches.ContainsKey(searchHandle))
  130. {
  131. m_nextSearchHandle = (ushort)(searchHandle + 1);
  132. return searchHandle;
  133. }
  134. }
  135. return null;
  136. }
  137. public ushort? AddOpenSearch(List<QueryDirectoryFileInformation> entries, int enumerationLocation)
  138. {
  139. ushort? searchHandle = AllocateSearchHandle();
  140. if (searchHandle.HasValue)
  141. {
  142. OpenSearch openSearch = new OpenSearch(entries, enumerationLocation);
  143. m_openSearches.Add(searchHandle.Value, openSearch);
  144. }
  145. return searchHandle;
  146. }
  147. public OpenSearch GetOpenSearch(ushort searchHandle)
  148. {
  149. OpenSearch openSearch;
  150. m_openSearches.TryGetValue(searchHandle, out openSearch);
  151. return openSearch;
  152. }
  153. public void RemoveOpenSearch(ushort searchHandle)
  154. {
  155. m_openSearches.Remove(searchHandle);
  156. }
  157. /// <summary>
  158. /// Free all resources used by this session
  159. /// </summary>
  160. public void Close()
  161. {
  162. List<ushort> treeIDList = new List<ushort>(m_connectedTrees.Keys);
  163. foreach (ushort treeID in treeIDList)
  164. {
  165. DisconnectTree(treeID);
  166. }
  167. }
  168. public ushort UserID
  169. {
  170. get
  171. {
  172. return m_userID;
  173. }
  174. }
  175. public SecurityContext SecurityContext
  176. {
  177. get
  178. {
  179. return m_securityContext;
  180. }
  181. }
  182. public string UserName
  183. {
  184. get
  185. {
  186. return m_securityContext.UserName;
  187. }
  188. }
  189. public string MachineName
  190. {
  191. get
  192. {
  193. return m_securityContext.MachineName;
  194. }
  195. }
  196. public DateTime CreationDT
  197. {
  198. get
  199. {
  200. return m_creationDT;
  201. }
  202. }
  203. }
  204. }