SMB1Session.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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 RemoveConnectedTree(ushort treeID)
  52. {
  53. m_connectedTrees.Remove(treeID);
  54. }
  55. public bool IsTreeConnected(ushort treeID)
  56. {
  57. return m_connectedTrees.ContainsKey(treeID);
  58. }
  59. /// <param name="relativePath">Should include the path relative to the share</param>
  60. /// <returns>FileID</returns>
  61. public ushort? AddOpenFile(ushort treeID, string relativePath)
  62. {
  63. return AddOpenFile(treeID, relativePath, null);
  64. }
  65. public ushort? AddOpenFile(ushort treeID, string relativePath, object handle)
  66. {
  67. ushort? fileID = m_connection.AllocateFileID();
  68. if (fileID.HasValue)
  69. {
  70. m_openFiles.Add(fileID.Value, new OpenFileObject(treeID, relativePath, handle));
  71. }
  72. return fileID;
  73. }
  74. public OpenFileObject GetOpenFileObject(ushort fileID)
  75. {
  76. OpenFileObject openFile;
  77. m_openFiles.TryGetValue(fileID, out openFile);
  78. return openFile;
  79. }
  80. public void RemoveOpenFile(ushort fileID)
  81. {
  82. m_openFiles.Remove(fileID);
  83. }
  84. private ushort? AllocateSearchHandle()
  85. {
  86. for (ushort offset = 0; offset < UInt16.MaxValue; offset++)
  87. {
  88. ushort searchHandle = (ushort)(m_nextSearchHandle + offset);
  89. if (searchHandle == 0 || searchHandle == 0xFFFF)
  90. {
  91. continue;
  92. }
  93. if (!m_openSearches.ContainsKey(searchHandle))
  94. {
  95. m_nextSearchHandle = (ushort)(searchHandle + 1);
  96. return searchHandle;
  97. }
  98. }
  99. return null;
  100. }
  101. public ushort? AddOpenSearch(List<QueryDirectoryFileInformation> entries, int enumerationLocation)
  102. {
  103. ushort? searchHandle = AllocateSearchHandle();
  104. if (searchHandle.HasValue)
  105. {
  106. OpenSearch openSearch = new OpenSearch(entries, enumerationLocation);
  107. m_openSearches.Add(searchHandle.Value, openSearch);
  108. }
  109. return searchHandle;
  110. }
  111. public OpenSearch GetOpenSearch(ushort searchHandle)
  112. {
  113. OpenSearch openSearch;
  114. m_openSearches.TryGetValue(searchHandle, out openSearch);
  115. return openSearch;
  116. }
  117. public void RemoveOpenSearch(ushort searchHandle)
  118. {
  119. m_openSearches.Remove(searchHandle);
  120. }
  121. public ushort UserID
  122. {
  123. get
  124. {
  125. return m_userID;
  126. }
  127. }
  128. public SecurityContext SecurityContext
  129. {
  130. get
  131. {
  132. return m_securityContext;
  133. }
  134. }
  135. public string UserName
  136. {
  137. get
  138. {
  139. return m_securityContext.UserName;
  140. }
  141. }
  142. public string MachineName
  143. {
  144. get
  145. {
  146. return m_securityContext.MachineName;
  147. }
  148. }
  149. public DateTime CreationDT
  150. {
  151. get
  152. {
  153. return m_creationDT;
  154. }
  155. }
  156. }
  157. }