| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Diagnostics.CodeAnalysis; |
| | 4 | | using System.Globalization; |
| | 5 | | using System.Net; |
| | 6 | | using System.Net.Sockets; |
| | 7 | | using System.Text.RegularExpressions; |
| | 8 | | using Jellyfin.Extensions; |
| | 9 | | using IPNetwork = Microsoft.AspNetCore.HttpOverrides.IPNetwork; |
| | 10 | |
|
| | 11 | | namespace MediaBrowser.Common.Net; |
| | 12 | |
|
| | 13 | | /// <summary> |
| | 14 | | /// Defines the <see cref="NetworkUtils" />. |
| | 15 | | /// </summary> |
| | 16 | | public static partial class NetworkUtils |
| | 17 | | { |
| | 18 | | // Use regular expression as CheckHostName isn't RFC5892 compliant. |
| | 19 | | // Modified from gSkinner's expression at https://stackoverflow.com/questions/11809631/fully-qualified-domain-name-v |
| | 20 | | [GeneratedRegex(@"(?im)^(?!:\/\/)(?=.{1,255}$)((.{1,63}\.){0,127}(?![0-9]*$)[a-z0-9-]+\.?)(:(\d){1,5}){0,1}$", Regex |
| | 21 | | private static partial Regex FqdnGeneratedRegex(); |
| | 22 | |
|
| | 23 | | /// <summary> |
| | 24 | | /// Returns true if the IPAddress contains an IP6 Local link address. |
| | 25 | | /// </summary> |
| | 26 | | /// <param name="address">IPAddress object to check.</param> |
| | 27 | | /// <returns>True if it is a local link address.</returns> |
| | 28 | | /// <remarks> |
| | 29 | | /// See https://stackoverflow.com/questions/6459928/explain-the-instance-properties-of-system-net-ipaddress |
| | 30 | | /// it appears that the IPAddress.IsIPv6LinkLocal is out of date. |
| | 31 | | /// </remarks> |
| | 32 | | public static bool IsIPv6LinkLocal(IPAddress address) |
| | 33 | | { |
| 0 | 34 | | ArgumentNullException.ThrowIfNull(address); |
| | 35 | |
|
| 0 | 36 | | if (address.IsIPv4MappedToIPv6) |
| | 37 | | { |
| 0 | 38 | | address = address.MapToIPv4(); |
| | 39 | | } |
| | 40 | |
|
| 0 | 41 | | if (address.AddressFamily != AddressFamily.InterNetworkV6) |
| | 42 | | { |
| 0 | 43 | | return false; |
| | 44 | | } |
| | 45 | |
|
| | 46 | | // GetAddressBytes |
| 0 | 47 | | Span<byte> octet = stackalloc byte[16]; |
| 0 | 48 | | address.TryWriteBytes(octet, out _); |
| 0 | 49 | | uint word = (uint)(octet[0] << 8) + octet[1]; |
| | 50 | |
|
| 0 | 51 | | return word >= 0xfe80 && word <= 0xfebf; // fe80::/10 :Local link. |
| | 52 | | } |
| | 53 | |
|
| | 54 | | /// <summary> |
| | 55 | | /// Convert a subnet mask in CIDR notation to a dotted decimal string value. IPv4 only. |
| | 56 | | /// </summary> |
| | 57 | | /// <param name="cidr">Subnet mask in CIDR notation.</param> |
| | 58 | | /// <param name="family">IPv4 or IPv6 family.</param> |
| | 59 | | /// <returns>String value of the subnet mask in dotted decimal notation.</returns> |
| | 60 | | public static IPAddress CidrToMask(byte cidr, AddressFamily family) |
| | 61 | | { |
| 0 | 62 | | uint addr = 0xFFFFFFFF << ((family == AddressFamily.InterNetwork ? NetworkConstants.MinimumIPv4PrefixSize : Netw |
| 0 | 63 | | addr = ((addr & 0xff000000) >> 24) |
| 0 | 64 | | | ((addr & 0x00ff0000) >> 8) |
| 0 | 65 | | | ((addr & 0x0000ff00) << 8) |
| 0 | 66 | | | ((addr & 0x000000ff) << 24); |
| 0 | 67 | | return new IPAddress(addr); |
| | 68 | | } |
| | 69 | |
|
| | 70 | | /// <summary> |
| | 71 | | /// Convert a subnet mask in CIDR notation to a dotted decimal string value. IPv4 only. |
| | 72 | | /// </summary> |
| | 73 | | /// <param name="cidr">Subnet mask in CIDR notation.</param> |
| | 74 | | /// <param name="family">IPv4 or IPv6 family.</param> |
| | 75 | | /// <returns>String value of the subnet mask in dotted decimal notation.</returns> |
| | 76 | | public static IPAddress CidrToMask(int cidr, AddressFamily family) |
| | 77 | | { |
| 0 | 78 | | uint addr = 0xFFFFFFFF << ((family == AddressFamily.InterNetwork ? NetworkConstants.MinimumIPv4PrefixSize : Netw |
| 0 | 79 | | addr = ((addr & 0xff000000) >> 24) |
| 0 | 80 | | | ((addr & 0x00ff0000) >> 8) |
| 0 | 81 | | | ((addr & 0x0000ff00) << 8) |
| 0 | 82 | | | ((addr & 0x000000ff) << 24); |
| 0 | 83 | | return new IPAddress(addr); |
| | 84 | | } |
| | 85 | |
|
| | 86 | | /// <summary> |
| | 87 | | /// Convert a subnet mask to a CIDR. IPv4 only. |
| | 88 | | /// https://stackoverflow.com/questions/36954345/get-cidr-from-netmask. |
| | 89 | | /// </summary> |
| | 90 | | /// <param name="mask">Subnet mask.</param> |
| | 91 | | /// <returns>Byte CIDR representing the mask.</returns> |
| | 92 | | public static byte MaskToCidr(IPAddress mask) |
| | 93 | | { |
| 0 | 94 | | ArgumentNullException.ThrowIfNull(mask); |
| | 95 | |
|
| 0 | 96 | | byte cidrnet = 0; |
| 0 | 97 | | if (mask.Equals(IPAddress.Any)) |
| | 98 | | { |
| 0 | 99 | | return cidrnet; |
| | 100 | | } |
| | 101 | |
|
| | 102 | | // GetAddressBytes |
| 0 | 103 | | Span<byte> bytes = stackalloc byte[mask.AddressFamily == AddressFamily.InterNetwork ? NetworkConstants.IPv4MaskB |
| 0 | 104 | | if (!mask.TryWriteBytes(bytes, out var bytesWritten)) |
| | 105 | | { |
| 0 | 106 | | Console.WriteLine("Unable to write address bytes, only {0} bytes written.", bytesWritten.ToString(CultureInf |
| | 107 | | } |
| | 108 | |
|
| 0 | 109 | | var zeroed = false; |
| 0 | 110 | | for (var i = 0; i < bytes.Length; i++) |
| | 111 | | { |
| 0 | 112 | | for (int v = bytes[i]; (v & 0xFF) != 0; v <<= 1) |
| | 113 | | { |
| 0 | 114 | | if (zeroed) |
| | 115 | | { |
| | 116 | | // Invalid netmask. |
| 0 | 117 | | return (byte)~cidrnet; |
| | 118 | | } |
| | 119 | |
|
| 0 | 120 | | if ((v & 0x80) == 0) |
| | 121 | | { |
| 0 | 122 | | zeroed = true; |
| | 123 | | } |
| | 124 | | else |
| | 125 | | { |
| 0 | 126 | | cidrnet++; |
| | 127 | | } |
| | 128 | | } |
| | 129 | | } |
| | 130 | |
|
| 0 | 131 | | return cidrnet; |
| | 132 | | } |
| | 133 | |
|
| | 134 | | /// <summary> |
| | 135 | | /// Converts an IPAddress into a string. |
| | 136 | | /// IPv6 addresses are returned in [ ], with their scope removed. |
| | 137 | | /// </summary> |
| | 138 | | /// <param name="address">Address to convert.</param> |
| | 139 | | /// <returns>URI safe conversion of the address.</returns> |
| | 140 | | public static string FormatIPString(IPAddress? address) |
| | 141 | | { |
| 17 | 142 | | if (address is null) |
| | 143 | | { |
| 0 | 144 | | return string.Empty; |
| | 145 | | } |
| | 146 | |
|
| 17 | 147 | | var str = address.ToString(); |
| 17 | 148 | | if (address.AddressFamily == AddressFamily.InterNetworkV6) |
| | 149 | | { |
| 0 | 150 | | int i = str.IndexOf('%', StringComparison.Ordinal); |
| 0 | 151 | | if (i != -1) |
| | 152 | | { |
| 0 | 153 | | str = str.Substring(0, i); |
| | 154 | | } |
| | 155 | |
|
| 0 | 156 | | return $"[{str}]"; |
| | 157 | | } |
| | 158 | |
|
| 17 | 159 | | return str; |
| | 160 | | } |
| | 161 | |
|
| | 162 | | /// <summary> |
| | 163 | | /// Try parsing an array of strings into <see cref="IPNetwork"/> objects, respecting exclusions. |
| | 164 | | /// Elements without a subnet mask will be represented as <see cref="IPNetwork"/> with a single IP. |
| | 165 | | /// </summary> |
| | 166 | | /// <param name="values">Input string array to be parsed.</param> |
| | 167 | | /// <param name="result">Collection of <see cref="IPNetwork"/>.</param> |
| | 168 | | /// <param name="negated">Boolean signaling if negated or not negated values should be parsed.</param> |
| | 169 | | /// <returns><c>True</c> if parsing was successful.</returns> |
| | 170 | | public static bool TryParseToSubnets(string[] values, [NotNullWhen(true)] out IReadOnlyList<IPNetwork>? result, bool |
| | 171 | | { |
| 156 | 172 | | if (values is null || values.Length == 0) |
| | 173 | | { |
| 88 | 174 | | result = null; |
| 88 | 175 | | return false; |
| | 176 | | } |
| | 177 | |
|
| 68 | 178 | | var tmpResult = new List<IPNetwork>(); |
| 296 | 179 | | for (int a = 0; a < values.Length; a++) |
| | 180 | | { |
| 80 | 181 | | if (TryParseToSubnet(values[a], out var innerResult, negated)) |
| | 182 | | { |
| 40 | 183 | | tmpResult.Add(innerResult); |
| | 184 | | } |
| | 185 | | } |
| | 186 | |
|
| 68 | 187 | | result = tmpResult; |
| 68 | 188 | | return tmpResult.Count > 0; |
| | 189 | | } |
| | 190 | |
|
| | 191 | | /// <summary> |
| | 192 | | /// Try parsing a string into an <see cref="IPNetwork"/>, respecting exclusions. |
| | 193 | | /// Inputs without a subnet mask will be represented as <see cref="IPNetwork"/> with a single IP. |
| | 194 | | /// </summary> |
| | 195 | | /// <param name="value">Input string to be parsed.</param> |
| | 196 | | /// <param name="result">An <see cref="IPNetwork"/>.</param> |
| | 197 | | /// <param name="negated">Boolean signaling if negated or not negated values should be parsed.</param> |
| | 198 | | /// <returns><c>True</c> if parsing was successful.</returns> |
| | 199 | | public static bool TryParseToSubnet(ReadOnlySpan<char> value, [NotNullWhen(true)] out IPNetwork? result, bool negate |
| | 200 | | { |
| 226 | 201 | | value = value.Trim(); |
| 226 | 202 | | if (value.Contains('/')) |
| | 203 | | { |
| 184 | 204 | | if (negated && value.StartsWith("!") && IPNetwork.TryParse(value[1..], out result)) |
| | 205 | | { |
| 4 | 206 | | return true; |
| | 207 | | } |
| 180 | 208 | | else if (!negated && IPNetwork.TryParse(value, out result)) |
| | 209 | | { |
| 140 | 210 | | return true; |
| | 211 | | } |
| | 212 | | } |
| 42 | 213 | | else if (IPAddress.TryParse(value, out var address)) |
| | 214 | | { |
| 16 | 215 | | if (address.AddressFamily == AddressFamily.InterNetwork) |
| | 216 | | { |
| 10 | 217 | | result = address.Equals(IPAddress.Any) ? NetworkConstants.IPv4Any : new IPNetwork(address, NetworkConsta |
| 10 | 218 | | return true; |
| | 219 | | } |
| 6 | 220 | | else if (address.AddressFamily == AddressFamily.InterNetworkV6) |
| | 221 | | { |
| 6 | 222 | | result = address.Equals(IPAddress.IPv6Any) ? NetworkConstants.IPv6Any : new IPNetwork(address, NetworkCo |
| 6 | 223 | | return true; |
| | 224 | | } |
| | 225 | | } |
| | 226 | |
|
| 66 | 227 | | result = null; |
| 66 | 228 | | return false; |
| | 229 | | } |
| | 230 | |
|
| | 231 | | /// <summary> |
| | 232 | | /// Attempts to parse a host span. |
| | 233 | | /// </summary> |
| | 234 | | /// <param name="host">Host name to parse.</param> |
| | 235 | | /// <param name="addresses">Object representing the span, if it has successfully been parsed.</param> |
| | 236 | | /// <param name="isIPv4Enabled"><c>true</c> if IPv4 is enabled.</param> |
| | 237 | | /// <param name="isIPv6Enabled"><c>true</c> if IPv6 is enabled.</param> |
| | 238 | | /// <returns><c>true</c> if the parsing is successful, <c>false</c> if not.</returns> |
| | 239 | | public static bool TryParseHost(ReadOnlySpan<char> host, [NotNullWhen(true)] out IPAddress[]? addresses, bool isIPv4 |
| | 240 | | { |
| 261 | 241 | | host = host.Trim(); |
| 261 | 242 | | if (host.IsEmpty) |
| | 243 | | { |
| 5 | 244 | | addresses = null; |
| 5 | 245 | | return false; |
| | 246 | | } |
| | 247 | |
|
| | 248 | | // See if it's an IPv6 with port address e.g. [::1] or [::1]:120. |
| 256 | 249 | | if (host[0] == '[') |
| | 250 | | { |
| 4 | 251 | | int i = host.IndexOf(']'); |
| 4 | 252 | | if (i != -1) |
| | 253 | | { |
| 4 | 254 | | return TryParseHost(host[1..(i - 1)], out addresses); |
| | 255 | | } |
| | 256 | |
|
| 0 | 257 | | addresses = Array.Empty<IPAddress>(); |
| 0 | 258 | | return false; |
| | 259 | | } |
| | 260 | |
|
| 252 | 261 | | var hosts = new List<string>(); |
| 2528 | 262 | | foreach (var splitSpan in host.Split(':')) |
| | 263 | | { |
| 1012 | 264 | | hosts.Add(splitSpan.ToString()); |
| | 265 | | } |
| | 266 | |
|
| 252 | 267 | | if (hosts.Count <= 2) |
| | 268 | | { |
| 143 | 269 | | var firstPart = hosts[0]; |
| | 270 | |
|
| | 271 | | // Is hostname or hostname:port |
| 143 | 272 | | if (FqdnGeneratedRegex().IsMatch(firstPart)) |
| | 273 | | { |
| | 274 | | try |
| | 275 | | { |
| | 276 | | // .NET automatically filters only supported returned addresses based on OS support. |
| 15 | 277 | | addresses = Dns.GetHostAddresses(firstPart); |
| 12 | 278 | | return true; |
| | 279 | | } |
| 3 | 280 | | catch (SocketException) |
| | 281 | | { |
| | 282 | | // Ignore socket errors, as the result value will just be an empty array. |
| 3 | 283 | | } |
| | 284 | | } |
| | 285 | |
|
| | 286 | | // Is an IPv4 or IPv4:port |
| 131 | 287 | | if (IPAddress.TryParse(firstPart.AsSpan().LeftPart('/'), out var address)) |
| | 288 | | { |
| 123 | 289 | | if (((address.AddressFamily == AddressFamily.InterNetwork) && (!isIPv4Enabled && isIPv6Enabled)) |
| 123 | 290 | | || ((address.AddressFamily == AddressFamily.InterNetworkV6) && (isIPv4Enabled && !isIPv6Enabled))) |
| | 291 | | { |
| 0 | 292 | | addresses = Array.Empty<IPAddress>(); |
| 0 | 293 | | return false; |
| | 294 | | } |
| | 295 | |
|
| 123 | 296 | | addresses = new[] { address }; |
| | 297 | |
|
| | 298 | | // Host name is an IPv4 address, so fake resolve. |
| 123 | 299 | | return true; |
| | 300 | | } |
| | 301 | | } |
| 109 | 302 | | else if (hosts.Count > 0 && hosts.Count <= 9) // 8 octets + port |
| | 303 | | { |
| 109 | 304 | | if (IPAddress.TryParse(host.LeftPart('/'), out var address)) |
| | 305 | | { |
| 107 | 306 | | addresses = new[] { address }; |
| 107 | 307 | | return true; |
| | 308 | | } |
| | 309 | | } |
| | 310 | |
|
| 10 | 311 | | addresses = Array.Empty<IPAddress>(); |
| 10 | 312 | | return false; |
| 12 | 313 | | } |
| | 314 | |
|
| | 315 | | /// <summary> |
| | 316 | | /// Gets the broadcast address for a <see cref="IPNetwork"/>. |
| | 317 | | /// </summary> |
| | 318 | | /// <param name="network">The <see cref="IPNetwork"/>.</param> |
| | 319 | | /// <returns>The broadcast address.</returns> |
| | 320 | | public static IPAddress GetBroadcastAddress(IPNetwork network) |
| | 321 | | { |
| 0 | 322 | | var addressBytes = network.Prefix.GetAddressBytes(); |
| 0 | 323 | | uint ipAddress = BitConverter.ToUInt32(addressBytes, 0); |
| 0 | 324 | | uint ipMaskV4 = BitConverter.ToUInt32(CidrToMask(network.PrefixLength, AddressFamily.InterNetwork).GetAddressByt |
| 0 | 325 | | uint broadCastIPAddress = ipAddress | ~ipMaskV4; |
| | 326 | |
|
| 0 | 327 | | return new IPAddress(BitConverter.GetBytes(broadCastIPAddress)); |
| | 328 | | } |
| | 329 | |
|
| | 330 | | /// <summary> |
| | 331 | | /// Check if a subnet contains an address. This method also handles IPv4 mapped to IPv6 addresses. |
| | 332 | | /// </summary> |
| | 333 | | /// <param name="network">The <see cref="IPNetwork"/>.</param> |
| | 334 | | /// <param name="address">The <see cref="IPAddress"/>.</param> |
| | 335 | | /// <returns>Whether the supplied IP is in the supplied network.</returns> |
| | 336 | | public static bool SubnetContainsAddress(IPNetwork network, IPAddress address) |
| | 337 | | { |
| 34 | 338 | | ArgumentNullException.ThrowIfNull(address); |
| 34 | 339 | | ArgumentNullException.ThrowIfNull(network); |
| | 340 | |
|
| 34 | 341 | | if (address.IsIPv4MappedToIPv6) |
| | 342 | | { |
| 0 | 343 | | address = address.MapToIPv4(); |
| | 344 | | } |
| | 345 | |
|
| 34 | 346 | | return network.Contains(address); |
| | 347 | | } |
| | 348 | | } |