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
|
//
// System.Net.IPAddress.cs
//
// Author:
// Miguel de Icaza (miguel@ximian.com)
// Lawrence Pit (loz@cable.a2000.nl)
//
// (C) Ximian, Inc. http://www.ximian.com
//
// 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 System.Net.Sockets;
using System.Runtime.InteropServices;
namespace System.Net {
/// <remarks>
/// Encapsulates an IP Address.
/// </remarks>
[Serializable]
public class IPAddress {
// Don't change the name of this field without also
// changing socket-io.c in the runtime
// The IP address is stored in little-endian order inside the int,
// meaning the lower order bytes contain the netid
private long m_Address;
private AddressFamily m_Family;
private ushort[] m_Numbers; /// ip6 Stored in network order (as ip4)
private long m_ScopeId;
public static readonly IPAddress Any = new IPAddress(0);
public static readonly IPAddress Broadcast = IPAddress.Parse ("255.255.255.255");
public static readonly IPAddress Loopback = IPAddress.Parse ("127.0.0.1");
public static readonly IPAddress None = IPAddress.Parse ("255.255.255.255");
public static readonly IPAddress IPv6Any = IPAddress.ParseIPV6 ("::");
public static readonly IPAddress IPv6Loopback = IPAddress.ParseIPV6 ("::1");
public static readonly IPAddress IPv6None = IPAddress.ParseIPV6 ("::");
private static short SwapShort (short number)
{
return (short) ( ((number >> 8) & 0xFF) | ((number << 8) & 0xFF00) );
}
private static int SwapInt (int number)
{
return (((number >> 24) & 0xFF)
| ((number >> 08) & 0xFF00)
| ((number << 08) & 0xFF0000)
| ((number << 24)));
}
private static long SwapLong(long number)
{
return (((number >> 56) & 0xFF)
| ((number >> 40) & 0xFF00)
| ((number >> 24) & 0xFF0000)
| ((number >> 08) & 0xFF000000)
| ((number << 08) & 0xFF00000000)
| ((number << 24) & 0xFF0000000000)
| ((number << 40) & 0xFF000000000000)
| ((number << 56)));
}
public static short HostToNetworkOrder(short host) {
if (!BitConverter.IsLittleEndian)
return(host);
return SwapShort (host);
}
public static int HostToNetworkOrder(int host) {
if (!BitConverter.IsLittleEndian)
return(host);
return SwapInt (host);
}
public static long HostToNetworkOrder(long host) {
if (!BitConverter.IsLittleEndian)
return(host);
return SwapLong (host);
}
public static short NetworkToHostOrder(short network) {
if (!BitConverter.IsLittleEndian)
return(network);
return SwapShort (network);
}
public static int NetworkToHostOrder(int network) {
if (!BitConverter.IsLittleEndian)
return(network);
return SwapInt (network);
}
public static long NetworkToHostOrder(long network) {
if (!BitConverter.IsLittleEndian)
return(network);
return SwapLong (network);
}
/// <summary>
/// Constructor from a 32-bit constant with the address bytes in
/// little-endian order (the lower order bytes contain the netid)
/// </summary>
public IPAddress (long newAddress)
{
m_Address = newAddress;
m_Family = AddressFamily.InterNetwork;
}
public IPAddress (byte[] address)
{
if (address == null)
throw new ArgumentNullException ("address");
int len = address.Length;
if (len != 16 && len != 4)
throw new ArgumentException ("An invalid IP address was specified.",
"address");
if (len == 16) {
m_Numbers = new ushort [8];
Buffer.BlockCopy(address, 0, m_Numbers, 0, 16);
m_Family = AddressFamily.InterNetworkV6;
m_ScopeId = 0;
} else {
m_Address = ((uint) address [3] << 24) + (address [2] << 16) +
(address [1] << 8) + address [0];
m_Family = AddressFamily.InterNetwork;
}
}
public IPAddress(byte[] address, long scopeid)
{
if (address == null)
throw new ArgumentNullException ("address");
if (address.Length != 16)
throw new ArgumentException ("An invalid IP address was specified.",
"address");
m_Numbers = new ushort [8];
Buffer.BlockCopy(address, 0, m_Numbers, 0, 16);
m_Family = AddressFamily.InterNetworkV6;
m_ScopeId = scopeid;
}
internal IPAddress(ushort[] address, long scopeId)
{
m_Numbers = address;
for(int i=0; i<8; i++)
m_Numbers[i] = (ushort)HostToNetworkOrder((short)m_Numbers[i]);
m_Family = AddressFamily.InterNetworkV6;
m_ScopeId = scopeId;
}
public static IPAddress Parse (string ipString)
{
IPAddress ret;
if (TryParse (ipString, out ret))
return ret;
throw new FormatException ("An invalid IP address was specified.");
}
public static bool TryParse (string ipString, out IPAddress address)
{
if (ipString == null)
throw new ArgumentNullException ("ipString");
if ((address = ParseIPV4 (ipString)) == null)
if ((address = ParseIPV6 (ipString)) == null)
return false;
return true;
}
private static IPAddress ParseIPV4 (string ip)
{
int pos = ip.IndexOf (' ');
if (pos != -1) {
string [] nets = ip.Substring (pos + 1).Split (new char [] {'.'});
if (nets.Length > 0) {
string lastNet = nets [nets.Length - 1];
if (lastNet.Length == 0)
return null;
foreach (char c in lastNet)
if (!Uri.IsHexDigit (c))
return null;
}
ip = ip.Substring (0, pos);
}
if (ip.Length == 0 || ip [ip.Length - 1] == '.')
return null;
string [] ips = ip.Split (new char [] {'.'});
if (ips.Length > 4)
return null;
// Make the number in network order
try {
long a = 0;
long val = 0;
for (int i = 0; i < ips.Length; i++) {
string subnet = ips [i];
if ((3 <= subnet.Length && subnet.Length <= 4) &&
(subnet [0] == '0') && (subnet [1] == 'x' || subnet [1] == 'X')) {
if (subnet.Length == 3)
val = (byte) Uri.FromHex (subnet [2]);
else
val = (byte) ((Uri.FromHex (subnet [2]) << 4) | Uri.FromHex (subnet [3]));
} else if (subnet.Length == 0)
return null;
else if (subnet [0] == '0') {
// octal
val = 0;
for (int j = 1; j < subnet.Length; j++) {
if ('0' <= subnet [j] && subnet [j] <= '7')
val = (val << 3) + subnet [j] - '0';
else
return null;
}
}
else {
if (!Int64.TryParse (subnet, NumberStyles.None, null, out val))
return null;
}
if (i == (ips.Length - 1)) {
if (i != 0 && val >= (256 << ((3 - i) * 8)))
return null;
else if (val > 0x3fffffffe) // this is the last number that parses correctly with MS
return null;
i = 3;
} else if (val >= 0x100)
return null;
for (int j = 0; val > 0; j++, val /= 0x100)
a |= (val & 0xFF) << ((i - j) << 3);
}
return (new IPAddress (a));
} catch (Exception) {
return null;
}
}
private static IPAddress ParseIPV6 (string ip)
{
IPv6Address newIPv6Address;
if (IPv6Address.TryParse(ip, out newIPv6Address))
return new IPAddress (newIPv6Address.Address, newIPv6Address.ScopeId);
return null;
}
[Obsolete("This property is obsolete. Use GetAddressBytes.")]
public long Address
{
get {
if(m_Family != AddressFamily.InterNetwork)
throw new Exception("The attempted operation is not supported for the type of object referenced");
return m_Address;
}
set {
/* no need to do this test, ms.net accepts any value.
if (value < 0 || value > 0x00000000FFFFFFFF)
throw new ArgumentOutOfRangeException (
"the address must be between 0 and 0xFFFFFFFF");
*/
if(m_Family != AddressFamily.InterNetwork)
throw new Exception("The attempted operation is not supported for the type of object referenced");
m_Address = value;
}
}
internal long InternalIPv4Address {
get { return m_Address; }
}
public bool IsIPv6LinkLocal {
get {
if (m_Family == AddressFamily.InterNetwork)
return false;
int v = NetworkToHostOrder ((short) m_Numbers [0]) & 0xFFF0;
return 0xFE80 <= v && v < 0xFEC0;
}
}
public bool IsIPv6SiteLocal {
get {
if (m_Family == AddressFamily.InterNetwork)
return false;
int v = NetworkToHostOrder ((short) m_Numbers [0]) & 0xFFF0;
return 0xFEC0 <= v && v < 0xFF00;
}
}
public bool IsIPv6Multicast {
get {
return m_Family != AddressFamily.InterNetwork &&
((ushort) NetworkToHostOrder ((short) m_Numbers [0]) & 0xFF00) == 0xFF00;
}
}
#if NET_4_0
public bool IsIPv6Teredo {
get {
return m_Family != AddressFamily.InterNetwork &&
NetworkToHostOrder ((short) m_Numbers [0]) == 0x2001 &&
m_Numbers[1] == 0;
}
}
#endif
public long ScopeId {
get {
if (m_Family != AddressFamily.InterNetworkV6)
throw new SocketException ((int) SocketError.OperationNotSupported);
return m_ScopeId;
}
set {
if (m_Family != AddressFamily.InterNetworkV6)
throw new SocketException ((int) SocketError.OperationNotSupported);
if ((value < 0) || (value > UInt32.MaxValue))
throw new ArgumentOutOfRangeException ();
m_ScopeId = value;
}
}
public byte [] GetAddressBytes ()
{
if(m_Family == AddressFamily.InterNetworkV6) {
byte [] addressBytes = new byte [16];
Buffer.BlockCopy (m_Numbers, 0, addressBytes, 0, 16);
return addressBytes;
} else {
return new byte [4] { (byte)(m_Address & 0xFF),
(byte)((m_Address >> 8) & 0xFF),
(byte)((m_Address >> 16) & 0xFF),
(byte)(m_Address >> 24) };
}
}
public AddressFamily AddressFamily
{
get {
return m_Family;
}
}
/// <summary>
/// Used to tell whether an address is a loopback.
/// All IP addresses of the form 127.X.Y.Z, where X, Y, and Z are in
/// the range 0-255, are loopback addresses.
/// </summary>
/// <param name="addr">Address to compare</param>
/// <returns></returns>
public static bool IsLoopback (IPAddress address)
{
if(address.m_Family == AddressFamily.InterNetwork)
return (address.m_Address & 0xFF) == 127;
else {
for(int i=0; i<6; i++) {
if(address.m_Numbers[i] != 0)
return false;
}
return NetworkToHostOrder((short)address.m_Numbers[7]) == 1;
}
}
/// <summary>
/// Overrides System.Object.ToString to return
/// this object rendered in a quad-dotted notation
/// </summary>
public override string ToString ()
{
if(m_Family == AddressFamily.InterNetwork)
return ToString (m_Address);
else
{
ushort[] numbers = m_Numbers.Clone() as ushort[];
for(int i=0; i<numbers.Length; i++)
numbers[i] = (ushort)NetworkToHostOrder((short)numbers[i]);
IPv6Address v6 = new IPv6Address(numbers);
v6.ScopeId = ScopeId;
return v6.ToString();
}
}
/// <summary>
/// Returns this object rendered in a quad-dotted notation
/// </summary>
static string ToString (long addr)
{
// addr is in network order
return (addr & 0xff).ToString () + "." +
((addr >> 8) & 0xff).ToString () + "." +
((addr >> 16) & 0xff).ToString () + "." +
((addr >> 24) & 0xff).ToString ();
}
/// <returns>
/// Whether both objects are equal.
/// </returns>
public override bool Equals (object comparand)
{
IPAddress otherAddr = comparand as IPAddress;
if (otherAddr != null){
if(AddressFamily != otherAddr.AddressFamily)
return false;
if(AddressFamily == AddressFamily.InterNetwork) {
return m_Address == otherAddr.m_Address;
} else {
ushort[] vals = otherAddr.m_Numbers;
for(int i=0; i<8; i++)
if(m_Numbers[i] != vals[i])
return false;
return true;
}
}
return false;
}
public override int GetHashCode ()
{
if(m_Family == AddressFamily.InterNetwork)
return (int)m_Address;
else
return Hash (((((int) m_Numbers[0]) << 16) + m_Numbers [1]),
((((int) m_Numbers [2]) << 16) + m_Numbers [3]),
((((int) m_Numbers [4]) << 16) + m_Numbers [5]),
((((int) m_Numbers [6]) << 16) + m_Numbers [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);
}
#pragma warning disable 169
// Added for serialization compatibility with MS.NET
private int m_HashCode;
#pragma warning restore
}
}
|