-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathNetworkProtocol.cs
534 lines (484 loc) · 19.3 KB
/
NetworkProtocol.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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Net;
using System.Net.Sockets;
using Google.Protobuf;
using System.Globalization;
namespace Ipfs
{
/// <summary>
/// Metadata on an IPFS network address protocol.
/// </summary>
/// <remarks>
/// Protocols are defined at <see href="https://github.com/multiformats/multiaddr/blob/master/protocols.csv"/>.
/// </remarks>
/// <seealso cref="MultiAddress"/>
public abstract class NetworkProtocol
{
internal static Dictionary<string, Type> Names = new Dictionary<string, Type>();
internal static Dictionary<uint, Type> Codes = new Dictionary<uint, Type>();
/// <summary>
/// Registers the standard network protocols for IPFS.
/// </summary>
static NetworkProtocol()
{
NetworkProtocol.Register<Ipv4NetworkProtocol>();
NetworkProtocol.Register<Ipv6NetworkProtocol>();
NetworkProtocol.Register<TcpNetworkProtocol>();
NetworkProtocol.Register<UdpNetworkProtocol>();
NetworkProtocol.Register<P2pNetworkProtocol>();
NetworkProtocol.RegisterAlias<IpfsNetworkProtocol>();
NetworkProtocol.Register<QuicNetworkProtocol>();
NetworkProtocol.Register<HttpNetworkProtocol>();
NetworkProtocol.Register<HttpsNetworkProtocol>();
NetworkProtocol.Register<DccpNetworkProtocol>();
NetworkProtocol.Register<SctpNetworkProtocol>();
NetworkProtocol.Register<WsNetworkProtocol>();
NetworkProtocol.Register<Libp2pWebrtcStarNetworkProtocol>();
NetworkProtocol.Register<UdtNetworkProtocol>();
NetworkProtocol.Register<UtpNetworkProtocol>();
NetworkProtocol.Register<OnionNetworkProtocol>();
NetworkProtocol.Register<Libp2pWebrtcDirectNetworkProtocol>();
NetworkProtocol.Register<P2pCircuitNetworkProtocol>();
NetworkProtocol.Register<DnsNetworkProtocol>();
NetworkProtocol.Register<Dns4NetworkProtocol>();
NetworkProtocol.Register<Dns6NetworkProtocol>();
NetworkProtocol.Register<DnsAddrNetworkProtocol>();
NetworkProtocol.Register<WssNetworkProtocol>();
NetworkProtocol.Register<IpcidrNetworkProtocol>();
}
/// <summary>
/// Register a network protocol for use.
/// </summary>
/// <typeparam name="T">
/// A <see cref="NetworkProtocol"/> to register.
/// </typeparam>
public static void Register<T>() where T : NetworkProtocol, new()
{
var protocol = new T();
if (Names.ContainsKey(protocol.Name))
throw new ArgumentException(string.Format("The IPFS network protocol '{0}' is already defined.", protocol.Name));
if (Codes.ContainsKey(protocol.Code))
throw new ArgumentException(string.Format("The IPFS network protocol code ({0}) is already defined.", protocol.Code));
Names.Add(protocol.Name, typeof(T));
Codes.Add(protocol.Code, typeof(T));
}
/// <summary>
/// Register an alias to another network protocol.
/// </summary>
/// <typeparam name="T">
/// A <see cref="NetworkProtocol"/> to register.
/// </typeparam>
public static void RegisterAlias<T>() where T : NetworkProtocol, new()
{
var protocol = new T();
if (Names.ContainsKey(protocol.Name))
throw new ArgumentException(string.Format("The IPFS network protocol '{0}' is already defined.", protocol.Name));
if (!Codes.ContainsKey(protocol.Code))
throw new ArgumentException(string.Format("The IPFS network protocol code ({0}) is not defined.", protocol.Code));
Names.Add(protocol.Name, typeof(T));
}
/// <summary>
/// The name of the protocol.
/// </summary>
public abstract string Name { get; }
/// <summary>
/// The IPFS numeric code assigned to the network protocol.
/// </summary>
public abstract uint Code { get; }
/// <summary>
/// The string value associated with the protocol.
/// </summary>
/// <remarks>
/// For tcp and udp this is the port number. This can be <b>null</b> as is the case for http and https.
/// </remarks>
public string Value { get; set; }
/// <summary>
/// Writes the binary representation to the specified <see cref="Stream"/>.
/// </summary>
/// <param name="stream">
/// The <see cref="CodedOutputStream"/> to write to.
/// </param>
/// <remarks>
/// The binary representation of the <see cref="Value"/>.
/// </remarks>
public abstract void WriteValue(CodedOutputStream stream);
/// <summary>
/// Writes the string representation to the specified <see cref="TextWriter"/>.
/// </summary>
/// <param name="stream">
/// The <see cref="TextWriter"/> to write to.
/// </param>
/// <remarks>
/// The string representation of the optional <see cref="Value"/>.
/// </remarks>
public virtual void WriteValue(TextWriter stream)
{
if (Value != null)
{
stream.Write('/');
stream.Write(Value);
}
}
/// <summary>
/// Reads the binary representation from the specified <see cref="CodedInputStream"/>.
/// </summary>
/// <param name="stream">
/// The <see cref="CodedOutputStream"/> to read from.
/// </param>
/// <remarks>
/// The binary representation is an option <see cref="Value"/>.
/// </remarks>
public abstract void ReadValue(CodedInputStream stream);
/// <summary>
/// Reads the string representation from the specified <see cref="TextReader"/>.
/// </summary>
/// <param name="stream">
/// The <see cref="TextReader"/> to read from
/// </param>
/// <remarks>
/// The string representation is "/<see cref="Name"/>" followed by
/// an optional "/<see cref="Value"/>".
/// </remarks>
public virtual void ReadValue(TextReader stream)
{
Value = string.Empty;
int c;
while (-1 != (c = stream.Read()) && c != '/')
{
Value += (char)c;
}
}
/// <summary>
/// The <see cref="Name"/> and optional <see cref="Value"/> of the network protocol.
/// </summary>
public override string ToString()
{
using (var s = new StringWriter())
{
s.Write('/');
s.Write(Name);
WriteValue(s);
return s.ToString();
}
}
}
class TcpNetworkProtocol : NetworkProtocol
{
public UInt16 Port { get; set; }
public override string Name { get { return "tcp"; } }
public override uint Code { get { return 6; } }
public override void ReadValue(TextReader stream)
{
base.ReadValue(stream);
try
{
Port = UInt16.Parse(Value);
}
catch (Exception e)
{
throw new FormatException(string.Format("'{0}' is not a valid port number.", Value), e);
}
}
public override void ReadValue(CodedInputStream stream)
{
var bytes = stream.ReadSomeBytes(2);
Port = (UInt16) IPAddress.NetworkToHostOrder(BitConverter.ToInt16(bytes, 0));
Value = Port.ToString(CultureInfo.InvariantCulture);
}
public override void WriteValue(CodedOutputStream stream)
{
var bytes = BitConverter.GetBytes(IPAddress.HostToNetworkOrder((Int16)Port));
stream.WriteSomeBytes(bytes);
}
}
class UdpNetworkProtocol : TcpNetworkProtocol
{
public override string Name { get { return "udp"; } }
public override uint Code { get { return 273; } }
}
class DccpNetworkProtocol : TcpNetworkProtocol
{
public override string Name { get { return "dccp"; } }
public override uint Code { get { return 33; } }
}
class SctpNetworkProtocol : TcpNetworkProtocol
{
public override string Name { get { return "sctp"; } }
public override uint Code { get { return 132; } }
}
abstract class IpNetworkProtocol : NetworkProtocol
{
public IPAddress Address { get; set; }
public override void ReadValue(TextReader stream)
{
base.ReadValue(stream);
try
{
// Remove the scope id.
int i = Value.LastIndexOf('%');
if (i != -1)
Value = Value.Substring(0, i);
Address = IPAddress.Parse(Value);
}
catch (Exception e)
{
throw new FormatException(string.Format("'{0}' is not a valid IP address.", Value), e);
}
}
public override void WriteValue(TextWriter stream)
{
stream.Write('/');
stream.Write(Address.ToString());
}
public override void WriteValue(CodedOutputStream stream)
{
var ip = Address.GetAddressBytes();
stream.WriteSomeBytes(ip);
}
}
class Ipv4NetworkProtocol : IpNetworkProtocol
{
static int AddressSize = IPAddress.Any.GetAddressBytes().Length;
public override string Name { get { return "ip4"; } }
public override uint Code { get { return 4; } }
public override void ReadValue(TextReader stream)
{
base.ReadValue(stream);
if (Address.AddressFamily != AddressFamily.InterNetwork)
throw new FormatException(string.Format("'{0}' is not a valid IPv4 address.", Value));
}
public override void ReadValue(CodedInputStream stream)
{
var a = stream.ReadSomeBytes(AddressSize);
Address = new IPAddress(a);
Value = Address.ToString();
}
}
class Ipv6NetworkProtocol : IpNetworkProtocol
{
static int AddressSize = IPAddress.IPv6Any.GetAddressBytes().Length;
public override string Name { get { return "ip6"; } }
public override uint Code { get { return 41; } }
public override void ReadValue(TextReader stream)
{
base.ReadValue(stream);
if (Address.AddressFamily != AddressFamily.InterNetworkV6)
throw new FormatException(string.Format("'{0}' is not a valid IPv6 address.", Value));
}
public override void ReadValue(CodedInputStream stream)
{
var a = stream.ReadSomeBytes(AddressSize);
Address = new IPAddress(a);
Value = Address.ToString();
}
}
class P2pNetworkProtocol : NetworkProtocol
{
public MultiHash MultiHash { get; private set; }
public override string Name { get { return "p2p"; } }
public override uint Code { get { return 421; } }
public override void ReadValue(TextReader stream)
{
base.ReadValue(stream);
MultiHash = new MultiHash(Value);
}
public override void ReadValue(CodedInputStream stream)
{
stream.ReadLength();
MultiHash = new MultiHash(stream);
Value = MultiHash.ToBase58();
}
public override void WriteValue(CodedOutputStream stream)
{
var bytes = MultiHash.ToArray();
stream.WriteLength(bytes.Length);
stream.WriteSomeBytes(bytes);
}
}
class IpfsNetworkProtocol : P2pNetworkProtocol
{
public override string Name { get { return "ipfs"; } }
}
class OnionNetworkProtocol : NetworkProtocol
{
public byte[] Address { get; private set; }
public UInt16 Port { get; private set; }
public override string Name { get { return "onion"; } }
public override uint Code { get { return 444; } }
public override void ReadValue(TextReader stream)
{
base.ReadValue(stream);
var parts = Value.Split(':');
if (parts.Length != 2)
throw new FormatException(string.Format("'{0}' is not a valid onion address, missing the port number.", Value));
if (parts[0].Length != 16)
throw new FormatException(string.Format("'{0}' is not a valid onion address.", Value));
try
{
Port = UInt16.Parse(parts[1]);
}
catch (Exception e)
{
throw new FormatException(string.Format("'{0}' is not a valid onion address, invalid port number.", Value), e);
}
if (Port < 1)
throw new FormatException(string.Format("'{0}' is not a valid onion address, invalid port number.", Value));
Address = parts[0].ToUpperInvariant().FromBase32();
}
public override void ReadValue(CodedInputStream stream)
{
Address = stream.ReadSomeBytes(10);
var bytes = stream.ReadSomeBytes(2);
Port = (UInt16)IPAddress.NetworkToHostOrder(BitConverter.ToInt16(bytes, 0));
Value = Address.ToBase32().ToLowerInvariant() + ":" + Port.ToString(CultureInfo.InvariantCulture);
}
public override void WriteValue(CodedOutputStream stream)
{
stream.WriteSomeBytes(Address);
var bytes = BitConverter.GetBytes(IPAddress.HostToNetworkOrder((Int16)Port));
stream.WriteSomeBytes(bytes);
}
}
abstract class ValuelessNetworkProtocol : NetworkProtocol
{
public override void ReadValue(CodedInputStream stream)
{
// No value to read
}
public override void ReadValue(TextReader stream)
{
// No value to read
}
public override void WriteValue(CodedOutputStream stream)
{
// No value to write
}
}
class QuicNetworkProtocol : ValuelessNetworkProtocol
{
public override string Name { get { return "quic"; } }
public override uint Code { get { return 460; } }
}
class HttpNetworkProtocol : ValuelessNetworkProtocol
{
public override string Name { get { return "http"; } }
public override uint Code { get { return 480; } }
}
class HttpsNetworkProtocol : ValuelessNetworkProtocol
{
public override string Name { get { return "https"; } }
public override uint Code { get { return 443; } }
}
class WsNetworkProtocol : ValuelessNetworkProtocol
{
public override string Name { get { return "ws"; } }
public override uint Code { get { return 477; } }
}
class WssNetworkProtocol : ValuelessNetworkProtocol
{
public override string Name { get { return "wss"; } }
public override uint Code { get { return 478; } }
}
class Libp2pWebrtcStarNetworkProtocol : ValuelessNetworkProtocol
{
public override string Name { get { return "libp2p-webrtc-star"; } }
public override uint Code { get { return 275; } }
}
class Libp2pWebrtcDirectNetworkProtocol : ValuelessNetworkProtocol
{
public override string Name { get { return "libp2p-webrtc-direct"; } }
public override uint Code { get { return 276; } }
}
class UdtNetworkProtocol : ValuelessNetworkProtocol
{
public override string Name { get { return "udt"; } }
public override uint Code { get { return 301; } }
}
class UtpNetworkProtocol : ValuelessNetworkProtocol
{
public override string Name { get { return "utp"; } }
public override uint Code { get { return 302; } }
}
class P2pCircuitNetworkProtocol : ValuelessNetworkProtocol
{
public override string Name { get { return "p2p-circuit"; } }
public override uint Code { get { return 290; } }
}
abstract class DomainNameNetworkProtocol : NetworkProtocol
{
public string DomainName { get; set; }
public override void ReadValue(TextReader stream)
{
base.ReadValue(stream);
DomainName = Value;
}
public override void ReadValue(CodedInputStream stream)
{
Value = stream.ReadString();
DomainName = Value;
}
public override void WriteValue(TextWriter stream)
{
stream.Write('/');
stream.Write(DomainName.ToString());
}
public override void WriteValue(CodedOutputStream stream)
{
stream.WriteString(DomainName);
}
}
class DnsNetworkProtocol : DomainNameNetworkProtocol
{
public override string Name { get { return "dns"; } }
public override uint Code { get { return 53; } }
}
class DnsAddrNetworkProtocol : DomainNameNetworkProtocol
{
public override string Name { get { return "dnsaddr"; } }
public override uint Code { get { return 56; } }
}
class Dns4NetworkProtocol : DomainNameNetworkProtocol
{
public override string Name { get { return "dns4"; } }
public override uint Code { get { return 54; } }
}
class Dns6NetworkProtocol : DomainNameNetworkProtocol
{
public override string Name { get { return "dns6"; } }
public override uint Code { get { return 55; } }
}
class IpcidrNetworkProtocol : NetworkProtocol
{
public UInt16 RoutingPrefix { get; set; }
public override string Name { get { return "ipcidr"; } }
// TODO: https://github.com/multiformats/multiaddr/issues/60
public override uint Code { get { return 999; } }
public override void ReadValue(TextReader stream)
{
base.ReadValue(stream);
try
{
RoutingPrefix = UInt16.Parse(Value);
}
catch (Exception e)
{
throw new FormatException(string.Format("'{0}' is not a valid routing prefix.", Value), e);
}
}
public override void ReadValue(CodedInputStream stream)
{
var bytes = stream.ReadSomeBytes(2);
RoutingPrefix = (UInt16)IPAddress.NetworkToHostOrder(BitConverter.ToInt16(bytes, 0));
Value = RoutingPrefix.ToString(CultureInfo.InvariantCulture);
}
public override void WriteValue(CodedOutputStream stream)
{
var bytes = BitConverter.GetBytes(IPAddress.HostToNetworkOrder((Int16)RoutingPrefix));
stream.WriteSomeBytes(bytes);
}
}
}