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
|
//
// System.Net.IPv6Address.cs
//
// Author:
// Lawrence Pit (loz@cable.a2000.nl)
//
// Note I: This class is not defined in the specs of .Net
//
// Note II : The name of this class is perhaps unfortunate as it turns
// out that in ms.net there's an internal class called
// IPv6Address in namespace System.
//
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.Globalization;
using MonoForks.System;
using MonoForks.System.Net;
using MonoForks.System.Net.Sockets;
using System.Runtime.InteropServices;
using System.Text;
namespace MonoForks.System.Net {
/// <remarks>
/// Encapsulates an IPv6 Address.
/// See RFC 2373 for more info on IPv6 addresses.
/// </remarks>
[Serializable]
internal class IPv6Address {
private ushort [] address;
private int prefixLength;
private long scopeId = 0;
public static readonly IPv6Address Loopback = IPv6Address.Parse ("::1");
public static readonly IPv6Address Unspecified = IPv6Address.Parse ("::");
public IPv6Address (ushort [] addr)
{
if (addr == null)
throw new ArgumentNullException ("addr");
if (addr.Length != 8)
throw new ArgumentException ("addr");
address = addr;
}
public IPv6Address (ushort [] addr, int prefixLength) : this (addr)
{
if (prefixLength < 0 || prefixLength > 128)
throw new ArgumentException ("prefixLength");
this.prefixLength = prefixLength;
}
public IPv6Address (ushort [] addr, int prefixLength, int scopeId) : this (addr, prefixLength)
{
this.scopeId = scopeId;
}
public static IPv6Address Parse (string ipString)
{
if (ipString == null)
throw new ArgumentNullException ("ipString");
IPv6Address result;
if (TryParse (ipString, out result))
return result;
throw new FormatException ("Not a valid IPv6 address");
}
static int Fill (ushort [] addr, string ipString)
{
int p = 0;
int slot = 0;
if (ipString.Length == 0)
return 0;
// Catch double uses of ::
if (ipString.IndexOf ("::") != -1)
return -1;
for (int i = 0; i < ipString.Length; i++){
char c = ipString [i];
int n;
if (c == ':'){
// Trailing : is not allowed.
if (i == ipString.Length-1)
return -1;
if (slot == 8)
return -1;
addr [slot++] = (ushort) p;
p = 0;
continue;
} if ('0' <= c && c <= '9')
n = (int) (c - '0');
else if ('a' <= c && c <= 'f')
n = (int) (c - 'a' + 10);
else if ('A' <= c && c <= 'F')
n = (int) (c - 'A' + 10);
else
return -1;
p = (p << 4) + n;
if (p > UInt16.MaxValue)
return -1;
}
if (slot == 8)
return -1;
addr [slot++] = (ushort) p;
return slot;
}
static bool TryParse (string prefix, out int res)
{
#if NET_2_0
return Int32.TryParse (prefix, NumberStyles.Integer, CultureInfo.InvariantCulture, out res);
#else
try {
res = Int32.Parse (prefix, NumberStyles.Integer, CultureInfo.InvariantCulture);
} catch (Exception) {
res = -1;
return false;
}
return true;
#endif
}
public static bool TryParse (string ipString, out IPv6Address result)
{
result = null;
if (ipString == null)
return false;
if (ipString.Length > 2 &&
ipString [0] == '[' &&
ipString [ipString.Length - 1] == ']')
ipString = ipString.Substring (1, ipString.Length - 2);
if (ipString.Length < 2)
return false;
int prefixLen = 0;
int scopeId = 0;
int pos = ipString.LastIndexOf ('/');
if (pos != -1) {
string prefix = ipString.Substring (pos + 1);
if (!TryParse (prefix , out prefixLen))
prefixLen = -1;
if (prefixLen < 0 || prefixLen > 128)
return false;
ipString = ipString.Substring (0, pos);
} else {
pos = ipString.LastIndexOf ('%');
if (pos != -1) {
string prefix = ipString.Substring (pos + 1);
if (!TryParse (prefix, out scopeId))
scopeId = 0;
ipString = ipString.Substring (0, pos);
}
}
//
// At this point the prefix/suffixes have been removed
// and we only have to deal with the ipv4 or ipv6 addressed
//
ushort [] addr = new ushort [8];
//
// Is there an ipv4 address at the end?
//
bool ipv4 = false;
int pos2 = ipString.LastIndexOf (':');
if (pos2 == -1)
return false;
int slots = 0;
if (pos2 < (ipString.Length - 1)) {
string ipv4Str = ipString.Substring (pos2 + 1);
if (ipv4Str.IndexOf ('.') != -1) {
IPAddress ip;
if (!IPAddress.TryParse (ipv4Str, out ip))
return false;
long a = ip.InternalIPv4Address;
addr [6] = (ushort) (((int) (a & 0xff) << 8) + ((int) ((a >> 8) & 0xff)));
addr [7] = (ushort) (((int) ((a >> 16) & 0xff) << 8) + ((int) ((a >> 24) & 0xff)));
if (pos2 > 0 && ipString [pos2 - 1] == ':')
ipString = ipString.Substring (0, pos2 + 1);
else
ipString = ipString.Substring (0, pos2);
ipv4 = true;
slots = 2;
}
}
//
// Only an ipv6 block remains, either:
// "hexnumbers::hexnumbers", "hexnumbers::" or "hexnumbers"
//
int c = ipString.IndexOf ("::");
if (c != -1){
int right_slots = Fill (addr, ipString.Substring (c+2));
if (right_slots == -1){
return false;
}
if (right_slots + slots > 8){
return false;
}
int d = 8-slots-right_slots;
for (int i = right_slots; i > 0; i--){
addr [i+d-1] = addr [i-1];
addr [i-1] = 0;
}
int left_slots = Fill (addr, ipString.Substring (0, c));
if (left_slots == -1)
return false;
if (left_slots + right_slots + slots > 7)
return false;
} else {
if (Fill (addr, ipString) != 8-slots)
return false;
}
// Now check the results in the ipv6-address range only
bool ipv6 = false;
for (int i = 0; i < slots; i++){
if (addr [i] != 0 || i == 5 && addr [i] != 0xffff)
ipv6 = true;
}
// check IPv4 validity
if (ipv4 && !ipv6) {
for (int i = 0; i < 5; i++) {
if (addr [i] != 0)
return false;
}
if (addr [5] != 0 && addr [5] != 0xffff)
return false;
}
result = new IPv6Address (addr, prefixLen, scopeId);
return true;
}
public ushort [] Address {
get { return address; }
}
public int PrefixLength {
get { return this.prefixLength; }
}
public long ScopeId {
get {
return scopeId;
}
set {
scopeId = value;
}
}
public ushort this [int index] {
get { return address [index]; }
}
public AddressFamily AddressFamily {
get { return AddressFamily.InterNetworkV6; }
}
public static bool IsLoopback (IPv6Address addr)
{
if (addr.address [7] != 1)
return false;
int x = addr.address [6] >> 8;
if (x != 0x7f && x != 0)
return false;
for (int i = 0; i < 4; i++) {
if (addr.address [i] != 0)
return false;
}
if (addr.address [5] != 0 && addr.address [5] != 0xffff)
return false;
return true;
}
private static ushort SwapUShort (ushort number)
{
return (ushort) ( ((number >> 8) & 0xFF) + ((number << 8) & 0xFF00) );
}
// Convert the address into a format expected by the IPAddress (long) ctor
private int AsIPv4Int ()
{
return (SwapUShort (address [7]) << 16) + SwapUShort (address [6]);
}
public bool IsIPv4Compatible ()
{
for (int i = 0; i < 6; i++)
if (address [i] != 0)
return false;
return (AsIPv4Int () > 1);
}
public bool IsIPv4Mapped ()
{
for (int i = 0; i < 5; i++)
if (address [i] != 0)
return false;
return address [5] == 0xffff;
}
/// <summary>
/// Overrides System.Object.ToString to return
/// this object rendered in a canonicalized notation
/// </summary>
public override string ToString ()
{
StringBuilder s = new StringBuilder ();
if(IsIPv4Compatible() || IsIPv4Mapped())
{
s.Append("::");
if(IsIPv4Mapped())
s.Append("ffff:");
s.Append(new IPAddress( AsIPv4Int ()).ToString ());
return s.ToString ();
}
else
{
int bestChStart = -1; // Best chain start
int bestChLen = 0; // Best chain length
int currChLen = 0; // Current chain length
// Looks for the longest zero chain
for (int i=0; i<8; i++)
{
if (address[i] != 0)
{
if ((currChLen > bestChLen)
&& (currChLen > 1))
{
bestChLen = currChLen;
bestChStart = i - currChLen;
}
currChLen = 0;
}
else
currChLen++;
}
if ((currChLen > bestChLen)
&& (currChLen > 1))
{
bestChLen = currChLen;
bestChStart = 8 - currChLen;
}
// makes the string
if (bestChStart == 0)
s.Append(":");
for (int i=0; i<8; i++)
{
if (i == bestChStart)
{
s.Append (":");
i += (bestChLen - 1);
continue;
}
s.AppendFormat("{0:x}", address [i]);
if (i < 7) s.Append (':');
}
}
if (scopeId != 0)
s.Append ('%').Append (scopeId);
return s.ToString ();
}
public string ToString (bool fullLength)
{
if (!fullLength)
return ToString ();
StringBuilder sb = new StringBuilder ();
for (int i=0; i < address.Length - 1; i++) {
sb.AppendFormat ("{0:X4}:", address [i]);
}
sb.AppendFormat ("{0:X4}", address [address.Length - 1]);
return sb.ToString ();
}
/// <returns>
/// Whether both objects are equal.
/// </returns>
public override bool Equals (object other)
{
System.Net.IPv6Address ipv6 = other as System.Net.IPv6Address;
if (ipv6 != null) {
for (int i = 0; i < 8; i++)
if (this.address [i] != ipv6.address [i])
return false;
return true;
}
System.Net.IPAddress ipv4 = other as System.Net.IPAddress;
if (ipv4 != null) {
for (int i = 0; i < 5; i++)
if (address [i] != 0)
return false;
if (address [5] != 0 && address [5] != 0xffff)
return false;
long a = ipv4.InternalIPv4Address;
if (address [6] != (ushort) (((int) (a & 0xff) << 8) + ((int) ((a >> 8) & 0xff))) ||
address [7] != (ushort) (((int) ((a >> 16) & 0xff) << 8) + ((int) ((a >> 24) & 0xff))))
return false;
return true;
}
return false;
}
public override int GetHashCode ()
{
return Hash (((((int) address [0]) << 16) + address [1]),
((((int) address [2]) << 16) + address [3]),
((((int) address [4]) << 16) + address [5]),
((((int) address [6]) << 16) + address [7]));
}
private static int Hash (int i, int j, int k, int l)
{
return i ^ (j << 13 | j >> 19) ^ (k << 26 | k >> 6) ^ (l << 7 | l >> 25);
}
}
}
|