Browse Source

Server: New connections can now be rejected using the ConnectionRequested event

Tal Aloni 5 years ago
parent
commit
9f78ebde74

+ 1 - 0
SMBLibrary/SMBLibrary.csproj

@@ -211,6 +211,7 @@
     <Compile Include="RPC\Structures\Version.cs" />
     <Compile Include="RPC\Structures\VersionsSupported.cs" />
     <Compile Include="Server\ConnectionManager.cs" />
+    <Compile Include="Server\ConnectionRequestEventArgs.cs" />
     <Compile Include="Server\ConnectionState\SMB1AsyncContext.cs" />
     <Compile Include="Server\ConnectionState\SMB2AsyncContext.cs" />
     <Compile Include="Server\ConnectionState\ConnectionState.cs" />

+ 23 - 0
SMBLibrary/Server/ConnectionRequestEventArgs.cs

@@ -0,0 +1,23 @@
+/* Copyright (C) 2019 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.Collections.Generic;
+using System.Net;
+
+namespace SMBLibrary.Server
+{
+    public class ConnectionRequestEventArgs : EventArgs
+    {
+        public IPEndPoint IPEndPoint;
+        public bool Accept = true;
+
+        public ConnectionRequestEventArgs(IPEndPoint ipEndPoint)
+        {
+            IPEndPoint = ipEndPoint;
+        }
+    }
+}

+ 35 - 16
SMBLibrary/Server/SMBServer.cs

@@ -1,4 +1,4 @@
-/* Copyright (C) 2014-2018 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
+/* Copyright (C) 2014-2019 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,
@@ -42,6 +42,7 @@ namespace SMBLibrary.Server
         private bool m_listening;
         private DateTime m_serverStartTime;
 
+        public event EventHandler<ConnectionRequestEventArgs> ConnectionRequested;
         public event EventHandler<LogEntry> LogEntryAdded;
 
         public SMBServer(SMBShareCollection shares, GSSProvider securityProvider)
@@ -148,27 +149,45 @@ namespace SMBLibrary.Server
             // Disable the Nagle Algorithm for this tcp socket:
             clientSocket.NoDelay = true;
             IPEndPoint clientEndPoint = (IPEndPoint)clientSocket.RemoteEndPoint;
-            ConnectionState state = new ConnectionState(clientSocket, clientEndPoint, Log);
-            state.LogToServer(Severity.Verbose, "New connection request");
-            Thread senderThread = new Thread(delegate()
-            {
-                ProcessSendQueue(state);
-            });
-            senderThread.IsBackground = true;
-            senderThread.Start();
-
-            try
+            EventHandler<ConnectionRequestEventArgs> handler = ConnectionRequested;
+            bool acceptConnection = true;
+            if (handler != null)
             {
-                // Direct TCP transport packet is actually an NBT Session Message Packet,
-                // So in either case (NetBios over TCP or Direct TCP Transport) we will receive an NBT packet.
-                clientSocket.BeginReceive(state.ReceiveBuffer.Buffer, state.ReceiveBuffer.WriteOffset, state.ReceiveBuffer.AvailableLength, 0, ReceiveCallback, state);
+                ConnectionRequestEventArgs connectionRequestArgs = new ConnectionRequestEventArgs(clientEndPoint);
+                handler(this, connectionRequestArgs);
+                acceptConnection = connectionRequestArgs.Accept;
             }
-            catch (ObjectDisposedException)
+
+            if (acceptConnection)
             {
+                ConnectionState state = new ConnectionState(clientSocket, clientEndPoint, Log);
+                state.LogToServer(Severity.Verbose, "New connection request accepted");
+                Thread senderThread = new Thread(delegate()
+                {
+                    ProcessSendQueue(state);
+                });
+                senderThread.IsBackground = true;
+                senderThread.Start();
+
+                try
+                {
+                    // Direct TCP transport packet is actually an NBT Session Message Packet,
+                    // So in either case (NetBios over TCP or Direct TCP Transport) we will receive an NBT packet.
+                    clientSocket.BeginReceive(state.ReceiveBuffer.Buffer, state.ReceiveBuffer.WriteOffset, state.ReceiveBuffer.AvailableLength, 0, ReceiveCallback, state);
+                }
+                catch (ObjectDisposedException)
+                {
+                }
+                catch (SocketException)
+                {
+                }
             }
-            catch (SocketException)
+            else
             {
+                Log(Severity.Verbose, "[{0}:{1}] New connection request rejected", clientEndPoint.Address, clientEndPoint.Port);
+                clientSocket.Close();
             }
+
             listenerSocket.BeginAccept(ConnectRequestCallback, listenerSocket);
         }