Browse Source

Added MachineName and CreationDT properties to SMB1Session and SMB2Session

Tal Aloni 8 years ago
parent
commit
054d537c26

+ 18 - 0
SMBLibrary/Server/ConnectionState/SMB1Session.cs

@@ -19,6 +19,7 @@ namespace SMBLibrary.Server
         private ushort m_userID;
         private byte[] m_sessionKey;
         private SecurityContext m_securityContext;
+        private DateTime m_creationDT;
 
         // Key is TID
         private Dictionary<ushort, ISMBShare> m_connectedTrees = new Dictionary<ushort, ISMBShare>();
@@ -36,6 +37,7 @@ namespace SMBLibrary.Server
             m_userID = userID;
             m_sessionKey = sessionKey;
             m_securityContext = new SecurityContext(userName, machineName, connection.ClientEndPoint, connection.AuthenticationContext, accessToken);
+            m_creationDT = DateTime.Now;
         }
 
         public ushort? AddConnectedTree(ISMBShare share)
@@ -158,5 +160,21 @@ namespace SMBLibrary.Server
                 return m_securityContext.UserName;
             }
         }
+
+        public string MachineName
+        {
+            get
+            {
+                return m_securityContext.MachineName;
+            }
+        }
+
+        public DateTime CreationDT
+        {
+            get
+            {
+                return m_creationDT;
+            }
+        }
     }
 }

+ 18 - 0
SMBLibrary/Server/ConnectionState/SMB2Session.cs

@@ -18,6 +18,7 @@ namespace SMBLibrary.Server
         private ulong m_sessionID;
         private byte[] m_sessionKey;
         private SecurityContext m_securityContext;
+        private DateTime m_creationDT;
 
         // Key is TreeID
         private Dictionary<uint, ISMBShare> m_connectedTrees = new Dictionary<uint, ISMBShare>();
@@ -35,6 +36,7 @@ namespace SMBLibrary.Server
             m_sessionID = sessionID;
             m_sessionKey = sessionKey;
             m_securityContext = new SecurityContext(userName, machineName, connection.ClientEndPoint, connection.AuthenticationContext, accessToken);
+            m_creationDT = DateTime.Now;
         }
 
         private uint? AllocateTreeID()
@@ -163,5 +165,21 @@ namespace SMBLibrary.Server
                 return m_securityContext.UserName;
             }
         }
+
+        public string MachineName
+        {
+            get
+            {
+                return m_securityContext.MachineName;
+            }
+        }
+
+        public DateTime CreationDT
+        {
+            get
+            {
+                return m_creationDT;
+            }
+        }
     }
 }