SMB2Session.cs 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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. // Key is TreeID
  21. private Dictionary<uint, ISMBShare> m_connectedTrees = new Dictionary<uint, ISMBShare>();
  22. private uint m_nextTreeID = 1; // TreeID uniquely identifies a tree connect within the scope of the session
  23. // Key is the persistent portion of the FileID
  24. private Dictionary<ulong, OpenFileObject> m_openFiles = new Dictionary<ulong, OpenFileObject>();
  25. // Key is the persistent portion of the FileID
  26. private Dictionary<ulong, OpenSearch> m_openSearches = new Dictionary<ulong, OpenSearch>();
  27. public SMB2Session(SMB2ConnectionState connection, ulong sessionID, string userName, string machineName, byte[] sessionKey, object accessToken)
  28. {
  29. m_connection = connection;
  30. m_sessionID = sessionID;
  31. m_sessionKey = sessionKey;
  32. m_securityContext = new SecurityContext(userName, machineName, connection.ClientEndPoint, connection.AuthenticationContext, accessToken);
  33. }
  34. private uint? AllocateTreeID()
  35. {
  36. for (uint offset = 0; offset < UInt32.MaxValue; offset++)
  37. {
  38. uint treeID = (uint)(m_nextTreeID + offset);
  39. if (treeID == 0 || treeID == 0xFFFFFFFF)
  40. {
  41. continue;
  42. }
  43. if (!m_connectedTrees.ContainsKey(treeID))
  44. {
  45. m_nextTreeID = (uint)(treeID + 1);
  46. return treeID;
  47. }
  48. }
  49. return null;
  50. }
  51. public uint? AddConnectedTree(ISMBShare share)
  52. {
  53. uint? treeID = AllocateTreeID();
  54. if (treeID.HasValue)
  55. {
  56. m_connectedTrees.Add(treeID.Value, share);
  57. }
  58. return treeID;
  59. }
  60. public ISMBShare GetConnectedTree(uint treeID)
  61. {
  62. if (m_connectedTrees.ContainsKey(treeID))
  63. {
  64. return m_connectedTrees[treeID];
  65. }
  66. else
  67. {
  68. return null;
  69. }
  70. }
  71. public void RemoveConnectedTree(uint treeID)
  72. {
  73. m_connectedTrees.Remove(treeID);
  74. }
  75. public void RemoveConnectedTrees()
  76. {
  77. m_connectedTrees.Clear();
  78. }
  79. public bool IsTreeConnected(uint treeID)
  80. {
  81. return m_connectedTrees.ContainsKey(treeID);
  82. }
  83. /// <returns>The persistent portion of the FileID</returns>
  84. public ulong? AddOpenFile(string relativePath, object handle)
  85. {
  86. ulong? persistentID = m_connection.AllocatePersistentFileID();
  87. if (persistentID.HasValue)
  88. {
  89. m_openFiles.Add(persistentID.Value, new OpenFileObject(relativePath, handle));
  90. }
  91. return persistentID;
  92. }
  93. public OpenFileObject GetOpenFileObject(ulong fileID)
  94. {
  95. if (m_openFiles.ContainsKey(fileID))
  96. {
  97. return m_openFiles[fileID];
  98. }
  99. else
  100. {
  101. return null;
  102. }
  103. }
  104. public void RemoveOpenFile(ulong fileID)
  105. {
  106. m_openFiles.Remove(fileID);
  107. m_openSearches.Remove(fileID);
  108. }
  109. public OpenSearch AddOpenSearch(ulong fileID, List<QueryDirectoryFileInformation> entries, int enumerationLocation)
  110. {
  111. OpenSearch openSearch = new OpenSearch(entries, enumerationLocation);
  112. m_openSearches.Add(fileID, openSearch);
  113. return openSearch;
  114. }
  115. public OpenSearch GetOpenSearch(ulong fileID)
  116. {
  117. OpenSearch openSearch;
  118. m_openSearches.TryGetValue(fileID, out openSearch);
  119. return openSearch;
  120. }
  121. public void RemoveOpenSearch(ulong fileID)
  122. {
  123. m_openSearches.Remove(fileID);
  124. }
  125. public byte[] SessionKey
  126. {
  127. get
  128. {
  129. return m_sessionKey;
  130. }
  131. }
  132. public SecurityContext SecurityContext
  133. {
  134. get
  135. {
  136. return m_securityContext;
  137. }
  138. }
  139. public string UserName
  140. {
  141. get
  142. {
  143. return m_securityContext.UserName;
  144. }
  145. }
  146. }
  147. }