SMB2Session.cs 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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 RemoveConnectedTree(uint treeID)
  74. {
  75. m_connectedTrees.Remove(treeID);
  76. }
  77. public void RemoveConnectedTrees()
  78. {
  79. m_connectedTrees.Clear();
  80. }
  81. public bool IsTreeConnected(uint treeID)
  82. {
  83. return m_connectedTrees.ContainsKey(treeID);
  84. }
  85. /// <returns>The persistent portion of the FileID</returns>
  86. public ulong? AddOpenFile(uint treeID, string relativePath, object handle)
  87. {
  88. ulong? persistentID = m_connection.AllocatePersistentFileID();
  89. if (persistentID.HasValue)
  90. {
  91. m_openFiles.Add(persistentID.Value, new OpenFileObject(treeID, relativePath, handle));
  92. }
  93. return persistentID;
  94. }
  95. public OpenFileObject GetOpenFileObject(ulong fileID)
  96. {
  97. if (m_openFiles.ContainsKey(fileID))
  98. {
  99. return m_openFiles[fileID];
  100. }
  101. else
  102. {
  103. return null;
  104. }
  105. }
  106. public void RemoveOpenFile(ulong fileID)
  107. {
  108. m_openFiles.Remove(fileID);
  109. m_openSearches.Remove(fileID);
  110. }
  111. public OpenSearch AddOpenSearch(ulong fileID, List<QueryDirectoryFileInformation> entries, int enumerationLocation)
  112. {
  113. OpenSearch openSearch = new OpenSearch(entries, enumerationLocation);
  114. m_openSearches.Add(fileID, openSearch);
  115. return openSearch;
  116. }
  117. public OpenSearch GetOpenSearch(ulong fileID)
  118. {
  119. OpenSearch openSearch;
  120. m_openSearches.TryGetValue(fileID, out openSearch);
  121. return openSearch;
  122. }
  123. public void RemoveOpenSearch(ulong fileID)
  124. {
  125. m_openSearches.Remove(fileID);
  126. }
  127. public byte[] SessionKey
  128. {
  129. get
  130. {
  131. return m_sessionKey;
  132. }
  133. }
  134. public SecurityContext SecurityContext
  135. {
  136. get
  137. {
  138. return m_securityContext;
  139. }
  140. }
  141. public string UserName
  142. {
  143. get
  144. {
  145. return m_securityContext.UserName;
  146. }
  147. }
  148. public string MachineName
  149. {
  150. get
  151. {
  152. return m_securityContext.MachineName;
  153. }
  154. }
  155. public DateTime CreationDT
  156. {
  157. get
  158. {
  159. return m_creationDT;
  160. }
  161. }
  162. }
  163. }