SMB2Session.cs 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  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.SMB2;
  11. using Utilities;
  12. namespace SMBLibrary.Server
  13. {
  14. internal class SMB2Session
  15. {
  16. private SMB2ConnectionState m_connection;
  17. private ulong m_sessionID;
  18. private byte[] m_sessionKey;
  19. private SecurityContext m_securityContext;
  20. private DateTime m_creationDT;
  21. // Key is TreeID
  22. private Dictionary<uint, ISMBShare> m_connectedTrees = new Dictionary<uint, ISMBShare>();
  23. private uint m_nextTreeID = 1; // TreeID uniquely identifies a tree connect within the scope of the session
  24. // Key is the persistent portion of the FileID
  25. private Dictionary<ulong, OpenFileObject> m_openFiles = new Dictionary<ulong, OpenFileObject>();
  26. // Key is the persistent portion of the FileID
  27. private Dictionary<ulong, OpenSearch> m_openSearches = new Dictionary<ulong, OpenSearch>();
  28. public SMB2Session(SMB2ConnectionState connection, ulong sessionID, string userName, string machineName, byte[] sessionKey, object accessToken)
  29. {
  30. m_connection = connection;
  31. m_sessionID = sessionID;
  32. m_sessionKey = sessionKey;
  33. m_securityContext = new SecurityContext(userName, machineName, connection.ClientEndPoint, connection.AuthenticationContext, accessToken);
  34. m_creationDT = DateTime.Now;
  35. }
  36. private uint? AllocateTreeID()
  37. {
  38. for (uint offset = 0; offset < UInt32.MaxValue; offset++)
  39. {
  40. uint treeID = (uint)(m_nextTreeID + offset);
  41. if (treeID == 0 || treeID == 0xFFFFFFFF)
  42. {
  43. continue;
  44. }
  45. if (!m_connectedTrees.ContainsKey(treeID))
  46. {
  47. m_nextTreeID = (uint)(treeID + 1);
  48. return treeID;
  49. }
  50. }
  51. return null;
  52. }
  53. public uint? AddConnectedTree(ISMBShare share)
  54. {
  55. uint? treeID = AllocateTreeID();
  56. if (treeID.HasValue)
  57. {
  58. m_connectedTrees.Add(treeID.Value, share);
  59. }
  60. return treeID;
  61. }
  62. public ISMBShare GetConnectedTree(uint treeID)
  63. {
  64. if (m_connectedTrees.ContainsKey(treeID))
  65. {
  66. return m_connectedTrees[treeID];
  67. }
  68. else
  69. {
  70. return null;
  71. }
  72. }
  73. public void DisconnectTree(uint treeID)
  74. {
  75. ISMBShare share;
  76. m_connectedTrees.TryGetValue(treeID, out share);
  77. if (share != null)
  78. {
  79. List<ulong> fileIDList = new List<ulong>(m_openFiles.Keys);
  80. foreach (ushort fileID in fileIDList)
  81. {
  82. OpenFileObject openFile = m_openFiles[fileID];
  83. if (openFile.TreeID == treeID)
  84. {
  85. share.FileStore.CloseFile(openFile.Handle);
  86. m_openFiles.Remove(fileID);
  87. }
  88. }
  89. m_connectedTrees.Remove(treeID);
  90. }
  91. }
  92. public bool IsTreeConnected(uint treeID)
  93. {
  94. return m_connectedTrees.ContainsKey(treeID);
  95. }
  96. /// <returns>The persistent portion of the FileID</returns>
  97. public ulong? AddOpenFile(uint treeID, string relativePath, object handle)
  98. {
  99. ulong? persistentID = m_connection.AllocatePersistentFileID();
  100. if (persistentID.HasValue)
  101. {
  102. m_openFiles.Add(persistentID.Value, new OpenFileObject(treeID, relativePath, handle));
  103. }
  104. return persistentID;
  105. }
  106. public OpenFileObject GetOpenFileObject(ulong fileID)
  107. {
  108. if (m_openFiles.ContainsKey(fileID))
  109. {
  110. return m_openFiles[fileID];
  111. }
  112. else
  113. {
  114. return null;
  115. }
  116. }
  117. public void RemoveOpenFile(ulong fileID)
  118. {
  119. m_openFiles.Remove(fileID);
  120. m_openSearches.Remove(fileID);
  121. }
  122. public OpenSearch AddOpenSearch(ulong fileID, List<QueryDirectoryFileInformation> entries, int enumerationLocation)
  123. {
  124. OpenSearch openSearch = new OpenSearch(entries, enumerationLocation);
  125. m_openSearches.Add(fileID, openSearch);
  126. return openSearch;
  127. }
  128. public OpenSearch GetOpenSearch(ulong fileID)
  129. {
  130. OpenSearch openSearch;
  131. m_openSearches.TryGetValue(fileID, out openSearch);
  132. return openSearch;
  133. }
  134. public void RemoveOpenSearch(ulong fileID)
  135. {
  136. m_openSearches.Remove(fileID);
  137. }
  138. public byte[] SessionKey
  139. {
  140. get
  141. {
  142. return m_sessionKey;
  143. }
  144. }
  145. public SecurityContext SecurityContext
  146. {
  147. get
  148. {
  149. return m_securityContext;
  150. }
  151. }
  152. public string UserName
  153. {
  154. get
  155. {
  156. return m_securityContext.UserName;
  157. }
  158. }
  159. public string MachineName
  160. {
  161. get
  162. {
  163. return m_securityContext.MachineName;
  164. }
  165. }
  166. public DateTime CreationDT
  167. {
  168. get
  169. {
  170. return m_creationDT;
  171. }
  172. }
  173. }
  174. }