SMB2ConnectionState.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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 SMB2ConnectionState : ConnectionState
  15. {
  16. // Key is SessionID
  17. private Dictionary<ulong, SMB2Session> m_sessions = new Dictionary<ulong, SMB2Session>();
  18. private ulong m_nextSessionID = 1;
  19. // Key is AsyncID
  20. private Dictionary<ulong, SMB2AsyncContext> m_pendingRequests = new Dictionary<ulong, SMB2AsyncContext>();
  21. private ulong m_nextAsyncID = 1;
  22. public SMB2ConnectionState(ConnectionState state) : base(state)
  23. {
  24. }
  25. public ulong? AllocateSessionID()
  26. {
  27. for (ulong offset = 0; offset < UInt64.MaxValue; offset++)
  28. {
  29. ulong sessionID = (ulong)(m_nextSessionID + offset);
  30. if (sessionID == 0 || sessionID == 0xFFFFFFFF)
  31. {
  32. continue;
  33. }
  34. if (!m_sessions.ContainsKey(sessionID))
  35. {
  36. m_nextSessionID = (ulong)(sessionID + 1);
  37. return sessionID;
  38. }
  39. }
  40. return null;
  41. }
  42. public SMB2Session CreateSession(ulong sessionID, string userName, string machineName, byte[] sessionKey, object accessToken)
  43. {
  44. SMB2Session session = new SMB2Session(this, sessionID, userName, machineName, sessionKey, accessToken);
  45. lock (m_sessions)
  46. {
  47. m_sessions.Add(sessionID, session);
  48. }
  49. return session;
  50. }
  51. public SMB2Session GetSession(ulong sessionID)
  52. {
  53. SMB2Session session;
  54. m_sessions.TryGetValue(sessionID, out session);
  55. return session;
  56. }
  57. public void RemoveSession(ulong sessionID)
  58. {
  59. SMB2Session session;
  60. m_sessions.TryGetValue(sessionID, out session);
  61. if (session != null)
  62. {
  63. session.Close();
  64. lock (m_sessions)
  65. {
  66. m_sessions.Remove(sessionID);
  67. }
  68. }
  69. }
  70. public override void CloseSessions()
  71. {
  72. lock (m_sessions)
  73. {
  74. foreach (SMB2Session session in m_sessions.Values)
  75. {
  76. session.Close();
  77. }
  78. }
  79. m_sessions.Clear();
  80. }
  81. public override List<SessionInformation> GetSessionsInformation()
  82. {
  83. List<SessionInformation> result = new List<SessionInformation>();
  84. lock (m_sessions)
  85. {
  86. foreach (SMB2Session session in m_sessions.Values)
  87. {
  88. result.Add(new SessionInformation(this.ClientEndPoint, this.Dialect, session.UserName, session.MachineName, session.ListOpenFiles(), session.CreationDT));
  89. }
  90. }
  91. return result;
  92. }
  93. private ulong? AllocateAsyncID()
  94. {
  95. for (ulong offset = 0; offset < UInt64.MaxValue; offset++)
  96. {
  97. ulong asyncID = (ulong)(m_nextAsyncID + offset);
  98. if (asyncID == 0 || asyncID == 0xFFFFFFFF)
  99. {
  100. continue;
  101. }
  102. if (!m_pendingRequests.ContainsKey(asyncID))
  103. {
  104. m_nextAsyncID = (ulong)(asyncID + 1);
  105. return asyncID;
  106. }
  107. }
  108. return null;
  109. }
  110. public SMB2AsyncContext CreateAsyncContext(FileID fileID, SMB2ConnectionState connection, ulong sessionID, uint treeID)
  111. {
  112. ulong? asyncID = AllocateAsyncID();
  113. if (asyncID == null)
  114. {
  115. return null;
  116. }
  117. SMB2AsyncContext context = new SMB2AsyncContext();
  118. context.AsyncID = asyncID.Value;
  119. context.FileID = fileID;
  120. context.Connection = connection;
  121. context.SessionID = sessionID;
  122. context.TreeID = treeID;
  123. lock (m_pendingRequests)
  124. {
  125. m_pendingRequests.Add(asyncID.Value, context);
  126. }
  127. return context;
  128. }
  129. public SMB2AsyncContext GetAsyncContext(ulong asyncID)
  130. {
  131. SMB2AsyncContext context;
  132. lock (m_pendingRequests)
  133. {
  134. m_pendingRequests.TryGetValue(asyncID, out context);
  135. }
  136. return context;
  137. }
  138. public void RemoveAsyncContext(SMB2AsyncContext context)
  139. {
  140. lock (m_pendingRequests)
  141. {
  142. m_pendingRequests.Remove(context.AsyncID);
  143. }
  144. }
  145. }
  146. }