-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathPuncherServer.cs
250 lines (207 loc) · 8.63 KB
/
PuncherServer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
using System;
using System.Collections.Generic;
using System.Net;
using MLAPI.Puncher.Shared;
using System.Threading;
namespace MLAPI.Puncher.Server
{
/// <summary>
/// A puncher server capable of routing and organizing client punches.
/// </summary>
public class PuncherServer
{
private readonly byte[] _buffer = new byte[Constants.BUFFER_SIZE];
private readonly byte[] _tokenBuffer = new byte[Constants.TOKEN_BUFFER_SIZE];
private readonly byte[] _ipBuffer = new byte[4];
private readonly ReaderWriterLockSlim _listenerClientsLock = new ReaderWriterLockSlim(LockRecursionPolicy.SupportsRecursion);
private readonly Dictionary<IPAddress, Client> _listenerClients = new Dictionary<IPAddress, Client>();
private Thread _cleanupThread;
/// <summary>
/// Gets or sets the transport used to communicate with puncher clients.
/// </summary>
/// <value>The transport used to communcate with puncher clients.</value>
public IUDPTransport Transport { get; set; } = new SlimUDPTransport();
/// <summary>
/// Start a server bound to the specified endpoint.
/// </summary>
/// <param name="endpoint">Endpoint.</param>
public void Start(IPEndPoint endpoint)
{
Transport.Bind(endpoint);
_cleanupThread = new Thread(() =>
{
while (true)
{
_listenerClientsLock.EnterUpgradeableReadLock();
try
{
List<IPAddress> addressesToRemove = new List<IPAddress>();
foreach (Client client in _listenerClients.Values)
{
// Make them expire after 120 seconds
if ((DateTime.Now - client.LastRegisterTime).TotalSeconds > 120)
{
addressesToRemove.Add(client.EndPoint.Address);
}
}
if (addressesToRemove.Count > 0)
{
_listenerClientsLock.EnterWriteLock();
try
{
for (int i = 0; i < addressesToRemove.Count; i++)
{
_listenerClients.Remove(addressesToRemove[i]);
}
}
finally
{
_listenerClientsLock.ExitWriteLock();
}
}
}
finally
{
_listenerClientsLock.ExitUpgradeableReadLock();
}
// No point in cleaning more than once every 30 seconds
Thread.Sleep(30_000);
}
})
{
IsBackground = true
};
_cleanupThread.Start();
while (true)
{
ProcessMessage();
}
}
private void ProcessMessage()
{
int receiveSize = Transport.ReceiveFrom(_buffer, 0, _buffer.Length, -1, out IPEndPoint senderEndpoint);
// Address
IPAddress senderAddress = senderEndpoint.Address;
if (receiveSize != _buffer.Length)
{
return;
}
if (_buffer[0] != (byte)MessageType.Register)
{
return;
}
// Register client packet
byte registerFlags = _buffer[1];
bool isConnector = (registerFlags & 1) == 1;
bool isListener = ((registerFlags >> 1) & 1) == 1;
if (isListener)
{
_listenerClientsLock.EnterUpgradeableReadLock();
try
{
if (_listenerClients.TryGetValue(senderAddress, out Client client))
{
_listenerClientsLock.EnterWriteLock();
try
{
client.EndPoint = senderEndpoint;
client.IsConnector = isConnector;
client.IsListener = isListener;
client.LastRegisterTime = DateTime.Now;
}
finally
{
_listenerClientsLock.ExitWriteLock();
}
}
else
{
_listenerClientsLock.EnterWriteLock();
try
{
_listenerClients.Add(senderAddress, new Client()
{
EndPoint = senderEndpoint,
IsConnector = isConnector,
IsListener = isListener,
LastRegisterTime = DateTime.Now
});
}
finally
{
_listenerClientsLock.ExitWriteLock();
}
}
}
finally
{
_listenerClientsLock.ExitUpgradeableReadLock();
}
// Prevent info leaks
Array.Clear(_buffer, 0, _buffer.Length);
// Write message type
_buffer[0] = (byte)MessageType.Registered;
// Send to listener
Transport.SendTo(_buffer, 0, _buffer.Length, -1, senderEndpoint);
}
if (isConnector)
{
// Copy address to address buffer
Buffer.BlockCopy(_buffer, 2, _ipBuffer, 0, 4);
// Parse address
IPAddress listenerAddress = new IPAddress(_ipBuffer);
// Read token size
byte tokenSize = _buffer[6];
// Validate token size
if (tokenSize > _buffer.Length - 6)
{
// Invalid token size
return;
}
// Copy token to token buffer
Buffer.BlockCopy(_buffer, 7, _tokenBuffer, 0, tokenSize);
_listenerClientsLock.EnterReadLock();
try
{
// Look for the client they wish to connec tto
if (_listenerClients.TryGetValue(listenerAddress, out Client listenerClient) && listenerClient.IsListener)
{
// Write message type
_buffer[0] = (byte)MessageType.ConnectTo;
// Write address
Buffer.BlockCopy(listenerClient.EndPoint.Address.GetAddressBytes(), 0, _buffer, 1, 4);
// Write port
_buffer[5] = (byte)listenerClient.EndPoint.Port;
_buffer[6] = (byte)(listenerClient.EndPoint.Port >> 8);
// Write token length
_buffer[7] = tokenSize;
// Write token
Buffer.BlockCopy(_tokenBuffer, 0, _buffer, 8, tokenSize);
// Send to connector
Transport.SendTo(_buffer, 0, _buffer.Length, -1, senderEndpoint);
// Write address
Buffer.BlockCopy(senderAddress.GetAddressBytes(), 0, _buffer, 1, 4);
// Write port
_buffer[5] = (byte)senderEndpoint.Port;
_buffer[6] = (byte)(senderEndpoint.Port >> 8);
// Send to listener
Transport.SendTo(_buffer, 0, _buffer.Length, -1, listenerClient.EndPoint);
}
else
{
// Prevent info leaks
Array.Clear(_buffer, 0, _buffer.Length);
_buffer[0] = (byte)MessageType.Error;
_buffer[1] = (byte)ErrorType.ClientNotFound;
// Send error
Transport.SendTo(_buffer, 0, _buffer.Length, -1, senderEndpoint);
}
}
finally
{
_listenerClientsLock.ExitReadLock();
}
}
}
}
}