Browse Source

Server API: Added the OpenFileInformation class to provide more information about open files

Tal Aloni 7 years ago
parent
commit
3234ed3138

+ 1 - 0
SMBLibrary/SMBLibrary.csproj

@@ -222,6 +222,7 @@
     <Compile Include="Server\ConnectionState\SMB2Session.cs" />
     <Compile Include="Server\Enums\SMBDialect.cs" />
     <Compile Include="Server\Helpers\ServerPathUtils.cs" />
+    <Compile Include="Server\Information\OpenFileInformation.cs" />
     <Compile Include="Server\Information\SessionInformation.cs" />
     <Compile Include="Server\NameServer.cs" />
     <Compile Include="Server\Shares\AccessRequestArgs.cs" />

+ 1 - 1
SMBLibrary/Server/ConnectionState/SMB1ConnectionState.cs

@@ -116,7 +116,7 @@ namespace SMBLibrary.Server
             {
                 foreach (SMB1Session session in m_sessions.Values)
                 {
-                    result.Add(new SessionInformation(this.ClientEndPoint, this.Dialect, session.UserName, session.MachineName, session.ListOpenFiles(), session.CreationDT));
+                    result.Add(new SessionInformation(this.ClientEndPoint, this.Dialect, session.UserName, session.MachineName, session.GetOpenFilesInformation(), session.CreationDT));
                 }
             }
             return result;

+ 3 - 3
SMBLibrary/Server/ConnectionState/SMB1Session.cs

@@ -118,14 +118,14 @@ namespace SMBLibrary.Server
             }
         }
 
-        public List<string> ListOpenFiles()
+        public List<OpenFileInformation> GetOpenFilesInformation()
         {
-            List<string> result = new List<string>();
+            List<OpenFileInformation> result = new List<OpenFileInformation>();
             lock (m_connection)
             {
                 foreach (OpenFileObject openFile in m_openFiles.Values)
                 {
-                    result.Add(@"\" + openFile.ShareName + openFile.Path);
+                    result.Add(new OpenFileInformation(openFile.ShareName, openFile.Path, openFile.FileAccess, openFile.OpenedDT));
                 }
             }
             return result;

+ 1 - 1
SMBLibrary/Server/ConnectionState/SMB2ConnectionState.cs

@@ -94,7 +94,7 @@ namespace SMBLibrary.Server
             {
                 foreach (SMB2Session session in m_sessions.Values)
                 {
-                    result.Add(new SessionInformation(this.ClientEndPoint, this.Dialect, session.UserName, session.MachineName, session.ListOpenFiles(), session.CreationDT));
+                    result.Add(new SessionInformation(this.ClientEndPoint, this.Dialect, session.UserName, session.MachineName, session.GetOpenFilesInformation(), session.CreationDT));
                 }
             }
             return result;

+ 3 - 3
SMBLibrary/Server/ConnectionState/SMB2Session.cs

@@ -165,14 +165,14 @@ namespace SMBLibrary.Server
             m_openSearches.Remove(fileID.Volatile);
         }
 
-        public List<string> ListOpenFiles()
+        public List<OpenFileInformation> GetOpenFilesInformation()
         {
-            List<string> result = new List<string>();
+            List<OpenFileInformation> result = new List<OpenFileInformation>();
             lock (m_openFiles)
             {
                 foreach (OpenFileObject openFile in m_openFiles.Values)
                 {
-                    result.Add(@"\" + openFile.ShareName + openFile.Path);
+                    result.Add(new OpenFileInformation(openFile.ShareName, openFile.Path, openFile.FileAccess, openFile.OpenedDT));
                 }
             }
             return result;

+ 27 - 0
SMBLibrary/Server/Information/OpenFileInformation.cs

@@ -0,0 +1,27 @@
+/* Copyright (C) 2017 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
+ * 
+ * You can redistribute this program and/or modify it under the terms of
+ * the GNU Lesser Public License as published by the Free Software Foundation,
+ * either version 3 of the License, or (at your option) any later version.
+ */
+using System;
+using System.IO;
+
+namespace SMBLibrary.Server
+{
+    public class OpenFileInformation
+    {
+        public string ShareName;
+        public string Path;
+        public FileAccess FileAccess;
+        public DateTime OpenedDT;
+
+        public OpenFileInformation(string shareName, string path, FileAccess fileAccess, DateTime openedDT)
+        {
+            ShareName = shareName;
+            Path = path;
+            FileAccess = fileAccess;
+            OpenedDT = openedDT;
+        }
+    }
+}

+ 2 - 2
SMBLibrary/Server/Information/SessionInformation.cs

@@ -16,10 +16,10 @@ namespace SMBLibrary.Server
         public SMBDialect Dialect;
         public string UserName;
         public string MachineName;
-        public List<string> OpenFiles;
+        public List<OpenFileInformation> OpenFiles;
         public DateTime CreationDT;
 
-        public SessionInformation(IPEndPoint clientEndPoint, SMBDialect dialect, string userName, string machineName, List<string> openFiles, DateTime creationDT)
+        public SessionInformation(IPEndPoint clientEndPoint, SMBDialect dialect, string userName, string machineName, List<OpenFileInformation> openFiles, DateTime creationDT)
         {
             ClientEndPoint = clientEndPoint;
             Dialect = dialect;