-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMultiplexer.cs
452 lines (382 loc) · 11.7 KB
/
Multiplexer.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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using DamienG.Security.Cryptography;
namespace Yllibed.StreamMultiplexer.Core
{
public sealed partial class Multiplexer : IMultiplexer, IDisposable
{
private static readonly Encoding _Utf8 = new UTF8Encoding(false, false);
public static byte[] DefaultAckBytes =
{
(byte) 'Y',
(byte) 'l',
(byte) 'l',
(byte) 'i',
(byte) 'b',
(byte) 'e',
(byte) 'd',
(byte) '.',
(byte) 'M',
(byte) 'U',
(byte) 'X',
(byte) '.'
};
private readonly Stream _lowLevelStream;
private readonly ushort _windowSize;
private readonly ushort _bufferSize;
private readonly bool _useCrc32;
private readonly byte[] _ackBytes;
private readonly TaskFactory _taskFactory;
private readonly CancellationTokenSource _cts;
private readonly CancellationToken _ct;
private ImmutableDictionary<ushort, MultiplexerStream> _streams =
ImmutableDictionary<ushort, MultiplexerStream>.Empty;
public Multiplexer(Stream lowLevelStream, byte[] ackBytes = null, TaskScheduler scheduler = null,
ushort bufferSize = 4096 * 2, ushort windowSize = 4, bool useCrc32 = true)
{
_lowLevelStream = lowLevelStream;
_ackBytes = ackBytes ?? DefaultAckBytes;
_bufferSize = bufferSize >= 4096
? bufferSize
: throw new ArgumentOutOfRangeException(nameof(bufferSize), "Min bufferSize is 4096.");
_windowSize = windowSize >= 1
? windowSize
: throw new ArgumentOutOfRangeException(nameof(windowSize), "Window Size must be >= 1.");
_useCrc32 = useCrc32;
_taskFactory = new TaskFactory(scheduler ?? TaskScheduler.Default);
_cts = new CancellationTokenSource();
_ct = _cts.Token;
}
public event EventHandler<StreamRequestEventArgs> RequestedStream;
public void Start()
{
_taskFactory.StartNew(ReadStartingBlock, TaskCreationOptions.LongRunning);
}
public async Task<Stream> RequestStream(CancellationToken ct, string name)
{
MultiplexerStream stream = null;
try
{
while (!ct.IsCancellationRequested)
{
var requests = _requests;
var streamId = GetNextStreamId();
var tcs = new TaskCompletionSource<(MultiplexerPacketType result, ushort data)>();
var updatedRequests = requests.SetItem(streamId, tcs);
if (Interlocked.CompareExchange(ref _requests, updatedRequests, requests) != requests)
{
continue;
}
await SendREQ(streamId, _windowSize, name);
(var result, var resultData) = await tcs.Task;
ImmutableInterlocked.TryRemove(ref _requests, streamId, out _);
if (result == MultiplexerPacketType.ACK)
{
stream = new MultiplexerStream(this, streamId, resultData);
// Register the new stream into
if (!ImmutableInterlocked.TryAdd(ref _streams, streamId, stream))
{
stream.Dispose(); // Another stream already registered on this stream id (weird)
return null;
}
}
else if (result == MultiplexerPacketType.NAK)
{
stream = null;
}
break;
}
}
finally
{
if (ct.IsCancellationRequested && stream != null)
{
stream.Dispose();
stream = null;
}
}
return stream;
}
private ushort GetNextStreamId()
{
if (_requests.IsEmpty && _streams.IsEmpty)
{
return 1;
}
return (ushort) (_requests.Keys.Concat(_streams.Keys).Max() + 1);
}
public ushort NumberOfActiveStreams => (ushort)_streams.Count;
private ImmutableDictionary<ushort, TaskCompletionSource<(MultiplexerPacketType result, ushort data)>> _requests
= ImmutableDictionary<ushort, TaskCompletionSource<(MultiplexerPacketType result, ushort data)>>.Empty;
private bool _initialized = false;
private async void ReadStartingBlock()
{
var ackBytesLength = _ackBytes.Length;
// Send starting block to other side
var t1 = _lowLevelStream.WriteAsync(_ackBytes, 0, ackBytesLength, _ct);
await _lowLevelStream.FlushAsync(_ct);
// Read incoming starting block
var buffer = new byte[ackBytesLength];
var read = await _lowLevelStream.ReadAsync(buffer, 0, ackBytesLength, _ct);
if (read != ackBytesLength || !buffer.SequenceEqual(_ackBytes))
{
Dispose();
return;
}
await t1;
_lowLevelStream.WriteByte(0x01);
await _lowLevelStream.FlushAsync(_ct);
var version = _lowLevelStream.ReadByte();
if (version != 1)
{
Dispose();
return;
}
_initialized = true;
#pragma warning disable 4014
ProcessLowLevelInbound(); // start async process
#pragma warning restore 4014
}
public async Task ProcessLowLevelInbound()
{
var buffer = new byte[_bufferSize];
ushort bufferPointer = 0;
try
{
while (!_ct.IsCancellationRequested)
{
var readBytes = await _lowLevelStream.ReadAsync(buffer, bufferPointer, _bufferSize - bufferPointer, _ct);
if (readBytes == 0)
{
// End of stream
return;
}
bufferPointer += (ushort) readBytes;
// Process any received packet
while (bufferPointer >= 6)
{
var payloadLength = BitConverter.ToUInt16(buffer, 4);
var packetLength = (ushort) (payloadLength + 6);
if (packetLength > 1440)
{
await SendERR(0, MultiplexerErrorCode.ERR_PACKET_TOO_LONG);
}
if (bufferPointer < packetLength)
{
break; // this packet is incompleted, waiting for the remaining... (this should not happen often, except on low MTU networks)
}
var packetBytes = new byte[packetLength];
// Copy buffer into new bytes for this packet
Array.Copy(buffer, 0, packetBytes, 0, packetLength);
// Move remaining of packet at beginning of the pointer & readjust pointer
Array.Copy(buffer, packetLength, buffer, 0, bufferPointer - packetLength);
bufferPointer -= packetLength;
await ProcessIncomingPacket(packetBytes);
}
}
}
finally
{
Dispose();
}
}
private async Task ProcessIncomingPacket(byte[] packetBytes)
{
var streamId = BitConverter.ToUInt16(packetBytes, 0);
var packetType = (MultiplexerPacketType) packetBytes[2];
var payloadLength = BitConverter.ToUInt16(packetBytes, 4);
switch (packetType)
{
case MultiplexerPacketType.NOP:
return; // nothing to do
case MultiplexerPacketType.REQ:
if (_streams.ContainsKey(streamId))
{
await SendCOL(streamId);
}
else
{
if (payloadLength < 2)
{
await SendERR(0, MultiplexerErrorCode.ERR_PACKET_TOO_SHORT);
}
else
{
var remoteWindowSize = BitConverter.ToUInt16(packetBytes, 6);
var name = _Utf8.GetString(packetBytes, 8, payloadLength - 2);
var args = new StreamRequestEventArgs(name, () => CreateStream(streamId, remoteWindowSize));
RequestedStream?.Invoke(this, args);
await (args.StreamCreated ? SendACK(streamId, _windowSize) : SendNAK(streamId));
}
}
break;
case MultiplexerPacketType.ACK:
if (_requests.TryGetValue(streamId, out var requestForAck))
{
var remoteWindowSize = BitConverter.ToUInt16(packetBytes, 6);
requestForAck.TrySetResult((packetType, remoteWindowSize));
}
break;
case MultiplexerPacketType.NAK:
if (_requests.TryGetValue(streamId, out var requestForNak))
{
requestForNak.TrySetResult((packetType, 0));
}
break;
case MultiplexerPacketType.COL:
if (_requests.TryGetValue(streamId, out var requestForCol))
{
var suggestedId = BitConverter.ToUInt16(packetBytes, 6);
requestForCol.TrySetResult((packetType, suggestedId));
}
break;
case MultiplexerPacketType.DATA:
if (_streams.TryGetValue(streamId, out var streamData))
{
var dataLength = payloadLength - 4;
var data = new byte [dataLength];
Array.Copy(packetBytes, 6, data, 0, dataLength);
streamData.OnReceivedBuffer(data);
// TODO: check CRC
}
break;
case MultiplexerPacketType.DACK:
if (_streams.TryGetValue(streamId, out var streamDack))
{
streamDack.ReceivedDACK();
}
break;
case MultiplexerPacketType.ERR:
break; // should log
case MultiplexerPacketType.FIN:
if (_streams.TryGetValue(streamId, out var streamFin))
{
streamFin.OnReceivedClose();
}
break;
}
}
private Stream CreateStream(ushort streamId, ushort remoteWindowSize)
{
if (_streams.ContainsKey(streamId))
{
return null; // already created;
}
var result = new MultiplexerStream(this, streamId, remoteWindowSize);
while (true)
{
var capture = _streams;
if (capture.ContainsKey(streamId))
{
result.Dispose();
return null; // already created in a concurrent thread
}
var updated = capture.SetItem(streamId, result);
if (Interlocked.CompareExchange(ref _streams, updated, capture) == capture)
{
break;
}
}
// Successfully enlisted into streams list
return result;
}
private byte[] _packetBuffer = new byte[1412];
private async Task SendPacket(ushort streamId, MultiplexerPacketType packetType, params byte[][] payloads)
{
while (!_initialized)
{
await Task.Delay(10, _ct);
}
var payloadLength = 0;
foreach (var payload in payloads)
{
Array.Copy(payload, 0, _packetBuffer, payloadLength + 6, payload.Length);
payloadLength += payload.Length;
}
var header =
new PacketHeader
{
StreamId = streamId,
Type = packetType,
Length = (ushort) payloadLength
};
_packetBuffer.WriteStructToBuffer(header);
await _lowLevelStream.WriteAsync(_packetBuffer, 0, payloadLength + 6, _ct);
await _lowLevelStream.FlushAsync(_ct);
}
private Task SendNOP()
{
return SendPacket(0, MultiplexerPacketType.NOP);
}
private Task SendREQ(ushort streamId, ushort windowSize, string name)
{
return SendPacket(
streamId,
MultiplexerPacketType.REQ,
BitConverter.GetBytes(windowSize),
_Utf8.GetBytes(name.Take(1024).ToArray()).Take(1404).ToArray());
}
private Task SendACK(ushort streamId, ushort windowSize)
{
return SendPacket(streamId, MultiplexerPacketType.ACK, BitConverter.GetBytes(windowSize));
}
private Task SendNAK(ushort streamId)
{
return SendPacket(streamId, MultiplexerPacketType.NAK);
}
private Task SendCOL(ushort streamId)
{
var suggestedId = GetNextStreamId();
return SendPacket(streamId, MultiplexerPacketType.COL, BitConverter.GetBytes(suggestedId));
}
private Task SendDATA(ushort streamId, byte[] data, ushort length)
{
if (data.Length != length)
{
data = data.Take(length).ToArray();
}
uint crc32 = _useCrc32 ? Crc32.Compute(data) : (uint) 0;
return SendPacket(streamId, MultiplexerPacketType.DATA, data, BitConverter.GetBytes(crc32));
}
private Task SendDACK(ushort streamId)
{
return SendPacket(streamId, MultiplexerPacketType.DACK);
}
private Task SendERR(ushort streamId, MultiplexerErrorCode errorCode)
{
return SendPacket(streamId, MultiplexerPacketType.ERR, BitConverter.GetBytes((ushort) errorCode));
}
private Task SendFIN(ushort streamId, MultiplexerTerminationType terminationType)
{
return SendPacket(streamId, MultiplexerPacketType.FIN, new[] {(byte) terminationType});
}
public void Dispose()
{
_cts.Cancel(false);
foreach (var request in _requests.Values)
{
request.TrySetCanceled();
}
foreach (var stream in _streams.Values)
{
stream.Dispose();
}
_lowLevelStream.Dispose();
}
[StructLayout(LayoutKind.Sequential, Pack = 1, Size=6)]
private struct PacketHeader
{
internal ushort StreamId;
internal MultiplexerPacketType Type;
internal byte Reserved;
internal ushort Length;
}
}
}