mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 00:01:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			732 lines
		
	
	
		
			25 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			732 lines
		
	
	
		
			25 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Globalization;
 | |
| using System.Linq;
 | |
| using System.Net;
 | |
| using System.Net.NetworkInformation;
 | |
| using System.Net.Sockets;
 | |
| using System.Threading.Tasks;
 | |
| using MediaBrowser.Common.Net;
 | |
| using MediaBrowser.Model.Extensions;
 | |
| using MediaBrowser.Model.IO;
 | |
| using MediaBrowser.Model.Logging;
 | |
| using MediaBrowser.Model.Net;
 | |
| using MediaBrowser.Model.System;
 | |
| using System.Numerics;
 | |
| 
 | |
| namespace Emby.Server.Implementations.Networking
 | |
| {
 | |
|     public class NetworkManager : INetworkManager
 | |
|     {
 | |
|         protected ILogger Logger { get; private set; }
 | |
| 
 | |
|         public event EventHandler NetworkChanged;
 | |
|         public Func<string[]> LocalSubnetsFn { get; set; }
 | |
| 
 | |
|         public NetworkManager(ILogger logger, IEnvironmentInfo environment)
 | |
|         {
 | |
|             Logger = logger;
 | |
| 
 | |
|             // In FreeBSD these events cause a crash
 | |
|             if (environment.OperatingSystem != MediaBrowser.Model.System.OperatingSystem.BSD)
 | |
|             {
 | |
|                 try
 | |
|                 {
 | |
|                     NetworkChange.NetworkAddressChanged += NetworkChange_NetworkAddressChanged;
 | |
|                 }
 | |
|                 catch (Exception ex)
 | |
|                 {
 | |
|                     Logger.ErrorException("Error binding to NetworkAddressChanged event", ex);
 | |
|                 }
 | |
| 
 | |
|                 try
 | |
|                 {
 | |
|                     NetworkChange.NetworkAvailabilityChanged += NetworkChange_NetworkAvailabilityChanged;
 | |
|                 }
 | |
|                 catch (Exception ex)
 | |
|                 {
 | |
|                     Logger.ErrorException("Error binding to NetworkChange_NetworkAvailabilityChanged event", ex);
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         private void NetworkChange_NetworkAvailabilityChanged(object sender, NetworkAvailabilityEventArgs e)
 | |
|         {
 | |
|             Logger.Debug("NetworkAvailabilityChanged");
 | |
|             OnNetworkChanged();
 | |
|         }
 | |
| 
 | |
|         private void NetworkChange_NetworkAddressChanged(object sender, EventArgs e)
 | |
|         {
 | |
|             Logger.Debug("NetworkAddressChanged");
 | |
|             OnNetworkChanged();
 | |
|         }
 | |
| 
 | |
|         private void OnNetworkChanged()
 | |
|         {
 | |
|             lock (_localIpAddressSyncLock)
 | |
|             {
 | |
|                 _localIpAddresses = null;
 | |
|                 _macAddresses = null;
 | |
|             }
 | |
|             if (NetworkChanged != null)
 | |
|             {
 | |
|                 NetworkChanged(this, EventArgs.Empty);
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         private IpAddressInfo[] _localIpAddresses;
 | |
|         private readonly object _localIpAddressSyncLock = new object();
 | |
| 
 | |
|         public IpAddressInfo[] GetLocalIpAddresses()
 | |
|         {
 | |
|             lock (_localIpAddressSyncLock)
 | |
|             {
 | |
|                 if (_localIpAddresses == null)
 | |
|                 {
 | |
|                     var addresses = GetLocalIpAddressesInternal().Result.Select(ToIpAddressInfo).ToArray();
 | |
| 
 | |
|                     _localIpAddresses = addresses;
 | |
| 
 | |
|                     return addresses;
 | |
|                 }
 | |
|                 return _localIpAddresses;
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         private async Task<List<IPAddress>> GetLocalIpAddressesInternal()
 | |
|         {
 | |
|             var list = GetIPsDefault()
 | |
|                 .ToList();
 | |
| 
 | |
|             if (list.Count == 0)
 | |
|             {
 | |
|                 list.AddRange(await GetLocalIpAddressesFallback().ConfigureAwait(false));
 | |
|             }
 | |
| 
 | |
|             var listClone = list.ToList();
 | |
| 
 | |
|             return list
 | |
|                 .OrderBy(i => i.AddressFamily == AddressFamily.InterNetwork ? 0 : 1)
 | |
|                 .ThenBy(i => listClone.IndexOf(i))
 | |
|                 .Where(FilterIpAddress)
 | |
|                 .DistinctBy(i => i.ToString())
 | |
|                 .ToList();
 | |
|         }
 | |
| 
 | |
|         private bool FilterIpAddress(IPAddress address)
 | |
|         {
 | |
|             var addressString = address.ToString();
 | |
| 
 | |
|             if (addressString.StartsWith("169.", StringComparison.OrdinalIgnoreCase))
 | |
|             {
 | |
|                 return false;
 | |
|             }
 | |
| 
 | |
|             return true;
 | |
|         }
 | |
| 
 | |
|         public bool IsInPrivateAddressSpace(string endpoint)
 | |
|         {
 | |
|             return IsInPrivateAddressSpace(endpoint, true);
 | |
|         }
 | |
| 
 | |
|         private bool IsInPrivateAddressSpace(string endpoint, bool checkSubnets)
 | |
|         {
 | |
|             if (string.Equals(endpoint, "::1", StringComparison.OrdinalIgnoreCase))
 | |
|             {
 | |
|                 return true;
 | |
|             }
 | |
| 
 | |
|             // ipv6
 | |
|             if (endpoint.Split('.').Length > 4)
 | |
|             {
 | |
|                 // Handle ipv4 mapped to ipv6
 | |
|                 var originalEndpoint = endpoint;
 | |
|                 endpoint = endpoint.Replace("::ffff:", string.Empty);
 | |
| 
 | |
|                 if (string.Equals(endpoint, originalEndpoint, StringComparison.OrdinalIgnoreCase))
 | |
|                 {
 | |
|                     return false;
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             // Private address space:
 | |
|             // http://en.wikipedia.org/wiki/Private_network
 | |
| 
 | |
|             if (endpoint.StartsWith("172.", StringComparison.OrdinalIgnoreCase))
 | |
|             {
 | |
|                 return Is172AddressPrivate(endpoint);
 | |
|             }
 | |
| 
 | |
|             if (endpoint.StartsWith("localhost", StringComparison.OrdinalIgnoreCase) ||
 | |
|                 endpoint.StartsWith("127.", StringComparison.OrdinalIgnoreCase) ||
 | |
|                 endpoint.StartsWith("169.", StringComparison.OrdinalIgnoreCase))
 | |
|             {
 | |
|                 return true;
 | |
|             }
 | |
| 
 | |
|             if (checkSubnets && endpoint.StartsWith("192.168", StringComparison.OrdinalIgnoreCase))
 | |
|             {
 | |
|                 return true;
 | |
|             }
 | |
| 
 | |
|             if (checkSubnets && IsInPrivateAddressSpaceAndLocalSubnet(endpoint))
 | |
|             {
 | |
|                 return true;
 | |
|             }
 | |
| 
 | |
|             return false;
 | |
|         }
 | |
| 
 | |
|         public bool IsInPrivateAddressSpaceAndLocalSubnet(string endpoint)
 | |
|         {
 | |
|             if (endpoint.StartsWith("10.", StringComparison.OrdinalIgnoreCase))
 | |
|             {
 | |
|                 var endpointFirstPart = endpoint.Split('.')[0];
 | |
| 
 | |
|                 var subnets = GetSubnets(endpointFirstPart);
 | |
| 
 | |
|                 foreach (var subnet_Match in subnets)
 | |
|                 {
 | |
|                     //Logger.Debug("subnet_Match:" + subnet_Match);
 | |
| 
 | |
|                     if (endpoint.StartsWith(subnet_Match + ".", StringComparison.OrdinalIgnoreCase))
 | |
|                     {
 | |
|                         return true;
 | |
|                     }
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             return false;
 | |
|         }
 | |
| 
 | |
|         private Dictionary<string, List<string>> _subnetLookup = new Dictionary<string, List<string>>(StringComparer.Ordinal);
 | |
|         private List<string> GetSubnets(string endpointFirstPart)
 | |
|         {
 | |
|             List<string> subnets;
 | |
| 
 | |
|             lock (_subnetLookup)
 | |
|             {
 | |
|                 if (_subnetLookup.TryGetValue(endpointFirstPart, out subnets))
 | |
|                 {
 | |
|                     return subnets;
 | |
|                 }
 | |
| 
 | |
|                 subnets = new List<string>();
 | |
| 
 | |
|                 foreach (NetworkInterface adapter in NetworkInterface.GetAllNetworkInterfaces())
 | |
|                 {
 | |
|                     foreach (UnicastIPAddressInformation unicastIPAddressInformation in adapter.GetIPProperties().UnicastAddresses)
 | |
|                     {
 | |
|                         if (unicastIPAddressInformation.Address.AddressFamily == AddressFamily.InterNetwork && endpointFirstPart == unicastIPAddressInformation.Address.ToString().Split('.')[0])
 | |
|                         {
 | |
|                             int subnet_Test = 0;
 | |
|                             foreach (string part in unicastIPAddressInformation.IPv4Mask.ToString().Split('.'))
 | |
|                             {
 | |
|                                 if (part.Equals("0")) break;
 | |
|                                 subnet_Test++;
 | |
|                             }
 | |
| 
 | |
|                             var subnet_Match = String.Join(".", unicastIPAddressInformation.Address.ToString().Split('.').Take(subnet_Test).ToArray());
 | |
| 
 | |
|                             // TODO: Is this check necessary?
 | |
|                             if (adapter.OperationalStatus == OperationalStatus.Up)
 | |
|                             {
 | |
|                                 subnets.Add(subnet_Match);
 | |
|                             }
 | |
|                         }
 | |
|                     }
 | |
|                 }
 | |
| 
 | |
|                 _subnetLookup[endpointFirstPart] = subnets;
 | |
| 
 | |
|                 return subnets;
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         private bool Is172AddressPrivate(string endpoint)
 | |
|         {
 | |
|             for (var i = 16; i <= 31; i++)
 | |
|             {
 | |
|                 if (endpoint.StartsWith("172." + i.ToString(CultureInfo.InvariantCulture) + ".", StringComparison.OrdinalIgnoreCase))
 | |
|                 {
 | |
|                     return true;
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             return false;
 | |
|         }
 | |
| 
 | |
|         public bool IsInLocalNetwork(string endpoint)
 | |
|         {
 | |
|             return IsInLocalNetworkInternal(endpoint, true);
 | |
|         }
 | |
| 
 | |
|         public bool IsAddressInSubnets(string addressString, string[] subnets)
 | |
|         {
 | |
|             return IsAddressInSubnets(IPAddress.Parse(addressString), addressString, subnets);
 | |
|         }
 | |
| 
 | |
|         private bool IsAddressInSubnets(IPAddress address, string addressString, string[] subnets)
 | |
|         {
 | |
|             foreach (var subnet in subnets)
 | |
|             {
 | |
|                 var normalizedSubnet = subnet.Trim();
 | |
| 
 | |
|                 if (string.Equals(normalizedSubnet, addressString, StringComparison.OrdinalIgnoreCase))
 | |
|                 {
 | |
|                     return true;
 | |
|                 }
 | |
| 
 | |
|                 if (normalizedSubnet.IndexOf('/') != -1)
 | |
|                 {
 | |
|                     var ipnetwork = IPNetwork.Parse(normalizedSubnet);
 | |
|                     if (ipnetwork.Contains(address))
 | |
|                     {
 | |
|                         return true;
 | |
|                     }
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             return false;
 | |
|         }
 | |
| 
 | |
|         private bool IsInLocalNetworkInternal(string endpoint, bool resolveHost)
 | |
|         {
 | |
|             if (string.IsNullOrEmpty(endpoint))
 | |
|             {
 | |
|                 throw new ArgumentNullException("endpoint");
 | |
|             }
 | |
| 
 | |
|             IPAddress address;
 | |
|             if (IPAddress.TryParse(endpoint, out address))
 | |
|             {
 | |
|                 var addressString = address.ToString();
 | |
| 
 | |
|                 var localSubnetsFn = LocalSubnetsFn;
 | |
|                 if (localSubnetsFn != null)
 | |
|                 {
 | |
|                     var localSubnets = localSubnetsFn();
 | |
|                     foreach (var subnet in localSubnets)
 | |
|                     {
 | |
|                         // only validate if there's at least one valid entry
 | |
|                         if (!string.IsNullOrWhiteSpace(subnet))
 | |
|                         {
 | |
|                             return IsAddressInSubnets(address, addressString, localSubnets) || IsInPrivateAddressSpace(addressString, false);
 | |
|                         }
 | |
|                     }
 | |
|                 }
 | |
| 
 | |
|                 int lengthMatch = 100;
 | |
|                 if (address.AddressFamily == AddressFamily.InterNetwork)
 | |
|                 {
 | |
|                     lengthMatch = 4;
 | |
|                     if (IsInPrivateAddressSpace(addressString, true))
 | |
|                     {
 | |
|                         return true;
 | |
|                     }
 | |
|                 }
 | |
|                 else if (address.AddressFamily == AddressFamily.InterNetworkV6)
 | |
|                 {
 | |
|                     lengthMatch = 9;
 | |
|                     if (IsInPrivateAddressSpace(endpoint, true))
 | |
|                     {
 | |
|                         return true;
 | |
|                     }
 | |
|                 }
 | |
| 
 | |
|                 // Should be even be doing this with ipv6?
 | |
|                 if (addressString.Length >= lengthMatch)
 | |
|                 {
 | |
|                     var prefix = addressString.Substring(0, lengthMatch);
 | |
| 
 | |
|                     if (GetLocalIpAddresses().Any(i => i.ToString().StartsWith(prefix, StringComparison.OrdinalIgnoreCase)))
 | |
|                     {
 | |
|                         return true;
 | |
|                     }
 | |
|                 }
 | |
|             }
 | |
|             else if (resolveHost)
 | |
|             {
 | |
|                 Uri uri;
 | |
|                 if (Uri.TryCreate(endpoint, UriKind.RelativeOrAbsolute, out uri))
 | |
|                 {
 | |
|                     try
 | |
|                     {
 | |
|                         var host = uri.DnsSafeHost;
 | |
|                         Logger.Debug("Resolving host {0}", host);
 | |
| 
 | |
|                         address = GetIpAddresses(host).Result.FirstOrDefault();
 | |
| 
 | |
|                         if (address != null)
 | |
|                         {
 | |
|                             Logger.Debug("{0} resolved to {1}", host, address);
 | |
| 
 | |
|                             return IsInLocalNetworkInternal(address.ToString(), false);
 | |
|                         }
 | |
|                     }
 | |
|                     catch (InvalidOperationException)
 | |
|                     {
 | |
|                         // Can happen with reverse proxy or IIS url rewriting
 | |
|                     }
 | |
|                     catch (Exception ex)
 | |
|                     {
 | |
|                         Logger.ErrorException("Error resovling hostname", ex);
 | |
|                     }
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             return false;
 | |
|         }
 | |
| 
 | |
|         private Task<IPAddress[]> GetIpAddresses(string hostName)
 | |
|         {
 | |
|             return Dns.GetHostAddressesAsync(hostName);
 | |
|         }
 | |
| 
 | |
|         private List<IPAddress> GetIPsDefault()
 | |
|         {
 | |
|             NetworkInterface[] interfaces;
 | |
| 
 | |
|             try
 | |
|             {
 | |
|                 var validStatuses = new[] { OperationalStatus.Up, OperationalStatus.Unknown };
 | |
| 
 | |
|                 interfaces = NetworkInterface.GetAllNetworkInterfaces()
 | |
|                     .Where(i => validStatuses.Contains(i.OperationalStatus))
 | |
|                     .ToArray();
 | |
|             }
 | |
|             catch (Exception ex)
 | |
|             {
 | |
|                 Logger.ErrorException("Error in GetAllNetworkInterfaces", ex);
 | |
|                 return new List<IPAddress>();
 | |
|             }
 | |
| 
 | |
|             return interfaces.SelectMany(network =>
 | |
|             {
 | |
| 
 | |
|                 try
 | |
|                 {
 | |
|                     // suppress logging because it might be causing nas device wake up
 | |
|                     //Logger.Debug("Querying interface: {0}. Type: {1}. Status: {2}", network.Name, network.NetworkInterfaceType, network.OperationalStatus);
 | |
| 
 | |
|                     var ipProperties = network.GetIPProperties();
 | |
| 
 | |
|                     // Try to exclude virtual adapters
 | |
|                     // http://stackoverflow.com/questions/8089685/c-sharp-finding-my-machines-local-ip-address-and-not-the-vms
 | |
|                     var addr = ipProperties.GatewayAddresses.FirstOrDefault();
 | |
|                     if (addr == null || string.Equals(addr.Address.ToString(), "0.0.0.0", StringComparison.OrdinalIgnoreCase))
 | |
|                     {
 | |
|                         return new List<IPAddress>();
 | |
|                     }
 | |
| 
 | |
|                     return ipProperties.UnicastAddresses
 | |
|                         .Select(i => i.Address)
 | |
|                         .Where(i => i.AddressFamily == AddressFamily.InterNetwork || i.AddressFamily == AddressFamily.InterNetworkV6)
 | |
|                         .ToList();
 | |
|                 }
 | |
|                 catch (Exception ex)
 | |
|                 {
 | |
|                     Logger.ErrorException("Error querying network interface", ex);
 | |
|                     return new List<IPAddress>();
 | |
|                 }
 | |
| 
 | |
|             }).DistinctBy(i => i.ToString())
 | |
|                 .ToList();
 | |
|         }
 | |
| 
 | |
|         private async Task<IEnumerable<IPAddress>> GetLocalIpAddressesFallback()
 | |
|         {
 | |
|             var host = await Dns.GetHostEntryAsync(Dns.GetHostName()).ConfigureAwait(false);
 | |
| 
 | |
|             // Reverse them because the last one is usually the correct one
 | |
|             // It's not fool-proof so ultimately the consumer will have to examine them and decide
 | |
|             return host.AddressList
 | |
|                 .Where(i => i.AddressFamily == AddressFamily.InterNetwork || i.AddressFamily == AddressFamily.InterNetworkV6)
 | |
|                 .Reverse();
 | |
|         }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets a random port number that is currently available
 | |
|         /// </summary>
 | |
|         /// <returns>System.Int32.</returns>
 | |
|         public int GetRandomUnusedTcpPort()
 | |
|         {
 | |
|             var listener = new TcpListener(IPAddress.Any, 0);
 | |
|             listener.Start();
 | |
|             var port = ((IPEndPoint)listener.LocalEndpoint).Port;
 | |
|             listener.Stop();
 | |
|             return port;
 | |
|         }
 | |
| 
 | |
|         public int GetRandomUnusedUdpPort()
 | |
|         {
 | |
|             IPEndPoint localEndPoint = new IPEndPoint(IPAddress.Any, 0);
 | |
|             using (var udpClient = new UdpClient(localEndPoint))
 | |
|             {
 | |
|                 var port = ((IPEndPoint)(udpClient.Client.LocalEndPoint)).Port;
 | |
|                 return port;
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         private List<string> _macAddresses;
 | |
|         public List<string> GetMacAddresses()
 | |
|         {
 | |
|             if (_macAddresses == null)
 | |
|             {
 | |
|                 _macAddresses = GetMacAddressesInternal();
 | |
|             }
 | |
|             return _macAddresses;
 | |
|         }
 | |
| 
 | |
|         private List<string> GetMacAddressesInternal()
 | |
|         {
 | |
|             return NetworkInterface.GetAllNetworkInterfaces()
 | |
|                 .Where(i => i.NetworkInterfaceType != NetworkInterfaceType.Loopback)
 | |
|                 .Select(i =>
 | |
|                 {
 | |
|                     try
 | |
|                     {
 | |
|                         var physicalAddress = i.GetPhysicalAddress();
 | |
| 
 | |
|                         if (physicalAddress == null)
 | |
|                         {
 | |
|                             return null;
 | |
|                         }
 | |
| 
 | |
|                         return physicalAddress.ToString();
 | |
|                     }
 | |
|                     catch (Exception ex)
 | |
|                     {
 | |
|                         return null;
 | |
|                     }
 | |
|                 })
 | |
|                 .Where(i => i != null)
 | |
|                 .ToList();
 | |
|         }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Parses the specified endpointstring.
 | |
|         /// </summary>
 | |
|         /// <param name="endpointstring">The endpointstring.</param>
 | |
|         /// <returns>IPEndPoint.</returns>
 | |
|         public IPEndPoint Parse(string endpointstring)
 | |
|         {
 | |
|             return Parse(endpointstring, -1).Result;
 | |
|         }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Parses the specified endpointstring.
 | |
|         /// </summary>
 | |
|         /// <param name="endpointstring">The endpointstring.</param>
 | |
|         /// <param name="defaultport">The defaultport.</param>
 | |
|         /// <returns>IPEndPoint.</returns>
 | |
|         /// <exception cref="System.ArgumentException">Endpoint descriptor may not be empty.</exception>
 | |
|         /// <exception cref="System.FormatException"></exception>
 | |
|         private static async Task<IPEndPoint> Parse(string endpointstring, int defaultport)
 | |
|         {
 | |
|             if (String.IsNullOrEmpty(endpointstring)
 | |
|                 || endpointstring.Trim().Length == 0)
 | |
|             {
 | |
|                 throw new ArgumentException("Endpoint descriptor may not be empty.");
 | |
|             }
 | |
| 
 | |
|             if (defaultport != -1 &&
 | |
|                 (defaultport < IPEndPoint.MinPort
 | |
|                 || defaultport > IPEndPoint.MaxPort))
 | |
|             {
 | |
|                 throw new ArgumentException(String.Format("Invalid default port '{0}'", defaultport));
 | |
|             }
 | |
| 
 | |
|             string[] values = endpointstring.Split(new char[] { ':' });
 | |
|             IPAddress ipaddy;
 | |
|             int port = -1;
 | |
| 
 | |
|             //check if we have an IPv6 or ports
 | |
|             if (values.Length <= 2) // ipv4 or hostname
 | |
|             {
 | |
|                 port = values.Length == 1 ? defaultport : GetPort(values[1]);
 | |
| 
 | |
|                 //try to use the address as IPv4, otherwise get hostname
 | |
|                 if (!IPAddress.TryParse(values[0], out ipaddy))
 | |
|                     ipaddy = await GetIPfromHost(values[0]).ConfigureAwait(false);
 | |
|             }
 | |
|             else if (values.Length > 2) //ipv6
 | |
|             {
 | |
|                 //could [a:b:c]:d
 | |
|                 if (values[0].StartsWith("[") && values[values.Length - 2].EndsWith("]"))
 | |
|                 {
 | |
|                     string ipaddressstring = String.Join(":", values.Take(values.Length - 1).ToArray());
 | |
|                     ipaddy = IPAddress.Parse(ipaddressstring);
 | |
|                     port = GetPort(values[values.Length - 1]);
 | |
|                 }
 | |
|                 else //[a:b:c] or a:b:c
 | |
|                 {
 | |
|                     ipaddy = IPAddress.Parse(endpointstring);
 | |
|                     port = defaultport;
 | |
|                 }
 | |
|             }
 | |
|             else
 | |
|             {
 | |
|                 throw new FormatException(String.Format("Invalid endpoint ipaddress '{0}'", endpointstring));
 | |
|             }
 | |
| 
 | |
|             if (port == -1)
 | |
|                 throw new ArgumentException(String.Format("No port specified: '{0}'", endpointstring));
 | |
| 
 | |
|             return new IPEndPoint(ipaddy, port);
 | |
|         }
 | |
| 
 | |
|         protected static readonly CultureInfo UsCulture = new CultureInfo("en-US");
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets the port.
 | |
|         /// </summary>
 | |
|         /// <param name="p">The p.</param>
 | |
|         /// <returns>System.Int32.</returns>
 | |
|         /// <exception cref="System.FormatException"></exception>
 | |
|         private static int GetPort(string p)
 | |
|         {
 | |
|             int port;
 | |
| 
 | |
|             if (!Int32.TryParse(p, out port)
 | |
|              || port < IPEndPoint.MinPort
 | |
|              || port > IPEndPoint.MaxPort)
 | |
|             {
 | |
|                 throw new FormatException(String.Format("Invalid end point port '{0}'", p));
 | |
|             }
 | |
| 
 | |
|             return port;
 | |
|         }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets the I pfrom host.
 | |
|         /// </summary>
 | |
|         /// <param name="p">The p.</param>
 | |
|         /// <returns>IPAddress.</returns>
 | |
|         /// <exception cref="System.ArgumentException"></exception>
 | |
|         private static async Task<IPAddress> GetIPfromHost(string p)
 | |
|         {
 | |
|             var hosts = await Dns.GetHostAddressesAsync(p).ConfigureAwait(false);
 | |
| 
 | |
|             if (hosts == null || hosts.Length == 0)
 | |
|                 throw new ArgumentException(String.Format("Host not found: {0}", p));
 | |
| 
 | |
|             return hosts[0];
 | |
|         }
 | |
| 
 | |
|         public IpAddressInfo ParseIpAddress(string ipAddress)
 | |
|         {
 | |
|             IpAddressInfo info;
 | |
|             if (TryParseIpAddress(ipAddress, out info))
 | |
|             {
 | |
|                 return info;
 | |
|             }
 | |
| 
 | |
|             throw new ArgumentException("Invalid ip address: " + ipAddress);
 | |
|         }
 | |
| 
 | |
|         public bool TryParseIpAddress(string ipAddress, out IpAddressInfo ipAddressInfo)
 | |
|         {
 | |
|             IPAddress address;
 | |
|             if (IPAddress.TryParse(ipAddress, out address))
 | |
|             {
 | |
|                 ipAddressInfo = ToIpAddressInfo(address);
 | |
|                 return true;
 | |
|             }
 | |
| 
 | |
|             ipAddressInfo = null;
 | |
|             return false;
 | |
|         }
 | |
| 
 | |
|         public static IpEndPointInfo ToIpEndPointInfo(IPEndPoint endpoint)
 | |
|         {
 | |
|             if (endpoint == null)
 | |
|             {
 | |
|                 return null;
 | |
|             }
 | |
| 
 | |
|             return new IpEndPointInfo(ToIpAddressInfo(endpoint.Address), endpoint.Port);
 | |
|         }
 | |
| 
 | |
|         public static IPEndPoint ToIPEndPoint(IpEndPointInfo endpoint)
 | |
|         {
 | |
|             if (endpoint == null)
 | |
|             {
 | |
|                 return null;
 | |
|             }
 | |
| 
 | |
|             return new IPEndPoint(ToIPAddress(endpoint.IpAddress), endpoint.Port);
 | |
|         }
 | |
| 
 | |
|         public static IPAddress ToIPAddress(IpAddressInfo address)
 | |
|         {
 | |
|             if (address.Equals(IpAddressInfo.Any))
 | |
|             {
 | |
|                 return IPAddress.Any;
 | |
|             }
 | |
|             if (address.Equals(IpAddressInfo.IPv6Any))
 | |
|             {
 | |
|                 return IPAddress.IPv6Any;
 | |
|             }
 | |
|             if (address.Equals(IpAddressInfo.Loopback))
 | |
|             {
 | |
|                 return IPAddress.Loopback;
 | |
|             }
 | |
|             if (address.Equals(IpAddressInfo.IPv6Loopback))
 | |
|             {
 | |
|                 return IPAddress.IPv6Loopback;
 | |
|             }
 | |
| 
 | |
|             return IPAddress.Parse(address.Address);
 | |
|         }
 | |
| 
 | |
|         public static IpAddressInfo ToIpAddressInfo(IPAddress address)
 | |
|         {
 | |
|             if (address.Equals(IPAddress.Any))
 | |
|             {
 | |
|                 return IpAddressInfo.Any;
 | |
|             }
 | |
|             if (address.Equals(IPAddress.IPv6Any))
 | |
|             {
 | |
|                 return IpAddressInfo.IPv6Any;
 | |
|             }
 | |
|             if (address.Equals(IPAddress.Loopback))
 | |
|             {
 | |
|                 return IpAddressInfo.Loopback;
 | |
|             }
 | |
|             if (address.Equals(IPAddress.IPv6Loopback))
 | |
|             {
 | |
|                 return IpAddressInfo.IPv6Loopback;
 | |
|             }
 | |
|             return new IpAddressInfo(address.ToString(), address.AddressFamily == AddressFamily.InterNetworkV6 ? IpAddressFamily.InterNetworkV6 : IpAddressFamily.InterNetwork);
 | |
|         }
 | |
| 
 | |
|         public async Task<IpAddressInfo[]> GetHostAddressesAsync(string host)
 | |
|         {
 | |
|             var addresses = await Dns.GetHostAddressesAsync(host).ConfigureAwait(false);
 | |
|             return addresses.Select(ToIpAddressInfo).ToArray();
 | |
|         }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets the network shares.
 | |
|         /// </summary>
 | |
|         /// <param name="path">The path.</param>
 | |
|         /// <returns>IEnumerable{NetworkShare}.</returns>
 | |
|         public virtual IEnumerable<NetworkShare> GetNetworkShares(string path)
 | |
|         {
 | |
|             return new List<NetworkShare>();
 | |
|         }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets available devices within the domain
 | |
|         /// </summary>
 | |
|         /// <returns>PC's in the Domain</returns>
 | |
|         public virtual IEnumerable<FileSystemEntryInfo> GetNetworkDevices()
 | |
|         {
 | |
|             return new List<FileSystemEntryInfo>();
 | |
|         }
 | |
|     }
 | |
| }
 |