ConnectionState.cs 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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.Net;
  10. using System.Net.Sockets;
  11. using SMBLibrary.NetBios;
  12. using Utilities;
  13. namespace SMBLibrary.Server
  14. {
  15. internal delegate void LogDelegate(Severity severity, string message);
  16. internal class ConnectionState
  17. {
  18. public Socket ClientSocket;
  19. public IPEndPoint ClientEndPoint;
  20. public NBTConnectionReceiveBuffer ReceiveBuffer;
  21. public BlockingQueue<SessionPacket> SendQueue;
  22. protected LogDelegate LogToServerHandler;
  23. public SMBDialect Dialect;
  24. public object AuthenticationContext;
  25. public ConnectionState(LogDelegate logToServerHandler)
  26. {
  27. ReceiveBuffer = new NBTConnectionReceiveBuffer();
  28. SendQueue = new BlockingQueue<SessionPacket>();
  29. LogToServerHandler = logToServerHandler;
  30. Dialect = SMBDialect.NotSet;
  31. }
  32. public ConnectionState(ConnectionState state)
  33. {
  34. ClientSocket = state.ClientSocket;
  35. ClientEndPoint = state.ClientEndPoint;
  36. ReceiveBuffer = state.ReceiveBuffer;
  37. SendQueue = state.SendQueue;
  38. LogToServerHandler = state.LogToServerHandler;
  39. Dialect = state.Dialect;
  40. }
  41. /// <summary>
  42. /// Free all resources used by the active sessions in this connection
  43. /// </summary>
  44. public virtual void CloseSessions()
  45. {
  46. }
  47. public virtual List<SessionInformation> GetSessionsInformation()
  48. {
  49. return new List<SessionInformation>();
  50. }
  51. public void LogToServer(Severity severity, string message)
  52. {
  53. message = String.Format("[{0}] {1}", ConnectionIdentifier, message);
  54. if (LogToServerHandler != null)
  55. {
  56. LogToServerHandler(severity, message);
  57. }
  58. }
  59. public void LogToServer(Severity severity, string message, params object[] args)
  60. {
  61. LogToServer(severity, String.Format(message, args));
  62. }
  63. public string ConnectionIdentifier
  64. {
  65. get
  66. {
  67. if (ClientEndPoint != null)
  68. {
  69. return ClientEndPoint.Address + ":" + ClientEndPoint.Port;
  70. }
  71. return String.Empty;
  72. }
  73. }
  74. }
  75. }