[75] | 1 | using System;
|
---|
[182] | 2 | using System.Collections.Generic;
|
---|
| 3 | using System.IO;
|
---|
[75] | 4 | using System.Net;
|
---|
| 5 | using System.Net.Sockets;
|
---|
[142] | 6 | using System.Text;
|
---|
[182] | 7 | using System.Threading;
|
---|
[75] | 8 |
|
---|
[132] | 9 | namespace AllocsFixes.NetConnections.Servers.Telnet
|
---|
[130] | 10 | {
|
---|
[132] | 11 | public class TelnetConnection : IConnection
|
---|
[75] | 12 | {
|
---|
[182] | 13 | BlockingQueue<string> toClientQueue = new BlockingQueue<string> ();
|
---|
| 14 | private Thread receiveThread = null;
|
---|
| 15 | private Thread sendThread = null;
|
---|
[132] | 16 | private bool authenticated = false;
|
---|
| 17 | private bool authEnabled;
|
---|
| 18 | private TcpClient client;
|
---|
| 19 | private NetworkStream stream;
|
---|
| 20 | private EndPoint endpoint;
|
---|
[75] | 21 |
|
---|
[132] | 22 | public TelnetConnection (TcpClient client, bool authEnabled)
|
---|
| 23 | {
|
---|
| 24 | this.authEnabled = authEnabled;
|
---|
| 25 | this.client = client;
|
---|
| 26 | this.stream = client.GetStream ();
|
---|
| 27 | this.endpoint = client.Client.RemoteEndPoint;
|
---|
[182] | 28 |
|
---|
| 29 | Log.Out ("Telnet connection from: " + endpoint);
|
---|
| 30 |
|
---|
| 31 | receiveThread = ThreadMaster.Create ("TelnetClientReceive", new ThreadStart (ReceiveThread));
|
---|
| 32 | receiveThread.Start ();
|
---|
| 33 | sendThread = ThreadMaster.Create ("TelnetClientSend", new ThreadStart (SendThread));
|
---|
| 34 | sendThread.Start ();
|
---|
| 35 |
|
---|
| 36 | if (authEnabled) {
|
---|
| 37 | WriteLine ("Please enter password:");
|
---|
| 38 | } else {
|
---|
| 39 | LoginMessage ();
|
---|
| 40 | }
|
---|
[132] | 41 | }
|
---|
[75] | 42 |
|
---|
[182] | 43 | private void LoginMessage ()
|
---|
[132] | 44 | {
|
---|
[182] | 45 | WriteLine ("*** Connected with 7DTD server.");
|
---|
| 46 | WriteLine ("*** Dedicated server only build");
|
---|
| 47 | WriteLine ("*** Allocs server fixes loaded");
|
---|
| 48 | WriteLine (string.Empty);
|
---|
| 49 | WriteLine ("Server IP: " +
|
---|
| 50 | ((GamePrefs.GetString (EnumGamePrefs.ServerIP) != null && GamePrefs.GetString (EnumGamePrefs.ServerIP).Length != 0) ? GamePrefs.GetString (EnumGamePrefs.ServerIP) : "Any")
|
---|
| 51 | );
|
---|
| 52 | WriteLine ("Server port: " + GamePrefs.GetInt (EnumGamePrefs.ServerPort));
|
---|
| 53 | WriteLine ("Max players: " + GamePrefs.GetInt (EnumGamePrefs.ServerMaxPlayerCount));
|
---|
| 54 | WriteLine ("Game mode: " + GamePrefs.GetString (EnumGamePrefs.GameMode));
|
---|
| 55 | WriteLine ("World: " + GamePrefs.GetString (EnumGamePrefs.GameWorld));
|
---|
| 56 | WriteLine ("Game name: " + GamePrefs.GetString (EnumGamePrefs.GameName));
|
---|
| 57 | WriteLine ("Difficulty: " + GamePrefs.GetInt (EnumGamePrefs.GameDifficulty));
|
---|
| 58 | WriteLine (string.Empty);
|
---|
| 59 | WriteLine ("Press 'help' to get a list of all commands. Press 'exit' to end session.");
|
---|
| 60 | WriteLine (string.Empty);
|
---|
[75] | 61 | }
|
---|
| 62 |
|
---|
[182] | 63 | private void ReceiveThread ()
|
---|
[132] | 64 | {
|
---|
[182] | 65 | try {
|
---|
| 66 | StreamReader reader = new StreamReader (stream);
|
---|
| 67 | try {
|
---|
| 68 | while (!IsClosed()) {
|
---|
| 69 | string line = reader.ReadLine ();
|
---|
| 70 | if (line != null) {
|
---|
| 71 | line = line.Trim ();
|
---|
| 72 |
|
---|
| 73 | if (!IsAuthenticated ()) {
|
---|
| 74 | if (line.Equals (GamePrefs.GetString (EnumGamePrefs.TelnetPassword))) {
|
---|
| 75 | authenticated = true;
|
---|
| 76 | WriteLine ("Logon successful.");
|
---|
| 77 | WriteLine (string.Empty);
|
---|
| 78 | WriteLine (string.Empty);
|
---|
| 79 | WriteLine (string.Empty);
|
---|
| 80 | LoginMessage ();
|
---|
| 81 | } else {
|
---|
| 82 | WriteLine ("Password incorrect, please enter password:");
|
---|
| 83 | }
|
---|
| 84 | } else {
|
---|
| 85 | if (line.ToLower ().Equals ("exit")) {
|
---|
| 86 | Log.Out ("Telnet connection closed by client: " + endpoint);
|
---|
| 87 | Close ();
|
---|
| 88 | break;
|
---|
| 89 | }
|
---|
| 90 | Log.Out ("Telnet executed \"" + line + "\" from: " + endpoint);
|
---|
| 91 | ConsoleOutputSeparator.QueueNetCommand (line, this);
|
---|
| 92 | }
|
---|
| 93 | }
|
---|
| 94 | }
|
---|
| 95 | } catch (IOException) {
|
---|
| 96 | } catch (ThreadInterruptedException) {
|
---|
| 97 | }
|
---|
| 98 | ThreadMaster.Remove (Thread.CurrentThread.Name);
|
---|
| 99 | } catch (Exception ex) {
|
---|
| 100 | Log.Out ("Error in TelnetClientReceive: " + ex);
|
---|
[132] | 101 | }
|
---|
[182] | 102 |
|
---|
[132] | 103 | }
|
---|
| 104 |
|
---|
[182] | 105 | private void SendThread ()
|
---|
[132] | 106 | {
|
---|
| 107 | try {
|
---|
[182] | 108 | while (!IsClosed() && stream.CanWrite) {
|
---|
| 109 | try {
|
---|
| 110 | string line = toClientQueue.Dequeue ();
|
---|
| 111 | if (!IsClosed () && stream.CanWrite) {
|
---|
| 112 | byte[] utfData = Encoding.UTF8.GetBytes (line);
|
---|
| 113 | stream.Write (utfData, 0, utfData.Length);
|
---|
| 114 | stream.WriteByte (13);
|
---|
| 115 | stream.WriteByte (10);
|
---|
| 116 | }
|
---|
| 117 | } catch (IOException) {
|
---|
| 118 | } catch (ThreadInterruptedException) {
|
---|
| 119 | } catch (Exception e) {
|
---|
| 120 | Log.Out ("Error writing to client: " + e);
|
---|
| 121 | }
|
---|
[91] | 122 | }
|
---|
[182] | 123 |
|
---|
| 124 | ThreadMaster.Remove (Thread.CurrentThread.Name);
|
---|
| 125 | } catch (Exception ex) {
|
---|
| 126 | Log.Out ("Error in TelnetClientSend: " + ex);
|
---|
[75] | 127 | }
|
---|
[182] | 128 |
|
---|
[75] | 129 | }
|
---|
| 130 |
|
---|
[182] | 131 | public void WriteLine (string s)
|
---|
| 132 | {
|
---|
| 133 | toClientQueue.Enqueue (s);
|
---|
| 134 | }
|
---|
| 135 |
|
---|
[132] | 136 | public void Close ()
|
---|
| 137 | {
|
---|
[182] | 138 | if (receiveThread != null) {
|
---|
| 139 | receiveThread.Interrupt ();
|
---|
| 140 | }
|
---|
| 141 | if (sendThread != null) {
|
---|
| 142 | sendThread.Interrupt ();
|
---|
| 143 | }
|
---|
[132] | 144 | if (client != null)
|
---|
| 145 | client.Close ();
|
---|
| 146 | client = null;
|
---|
| 147 | }
|
---|
[75] | 148 |
|
---|
[132] | 149 | public bool IsClosed ()
|
---|
| 150 | {
|
---|
| 151 | if (client != null && !client.Connected) {
|
---|
| 152 | Log.Out ("Telnet connection interrupted: " + endpoint);
|
---|
[182] | 153 | Close ();
|
---|
[132] | 154 | }
|
---|
| 155 | return (client == null) || (!client.Connected);
|
---|
[75] | 156 | }
|
---|
| 157 |
|
---|
[132] | 158 | public bool IsAuthenticated ()
|
---|
| 159 | {
|
---|
| 160 | return !authEnabled || authenticated;
|
---|
| 161 | }
|
---|
[75] | 162 |
|
---|
| 163 | }
|
---|
| 164 | }
|
---|