| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Diagnostics.CodeAnalysis; |
| | 4 | | using System.Globalization; |
| | 5 | | using System.Linq; |
| | 6 | | using System.Net; |
| | 7 | | using System.Net.NetworkInformation; |
| | 8 | | using System.Net.Sockets; |
| | 9 | | using System.Threading; |
| | 10 | | using MediaBrowser.Common.Configuration; |
| | 11 | | using MediaBrowser.Common.Net; |
| | 12 | | using MediaBrowser.Model.Net; |
| | 13 | | using Microsoft.AspNetCore.Http; |
| | 14 | | using Microsoft.Extensions.Configuration; |
| | 15 | | using Microsoft.Extensions.Logging; |
| | 16 | | using static MediaBrowser.Controller.Extensions.ConfigurationExtensions; |
| | 17 | | using IConfigurationManager = MediaBrowser.Common.Configuration.IConfigurationManager; |
| | 18 | | using IPNetwork = Microsoft.AspNetCore.HttpOverrides.IPNetwork; |
| | 19 | |
|
| | 20 | | namespace Jellyfin.Networking.Manager; |
| | 21 | |
|
| | 22 | | /// <summary> |
| | 23 | | /// Class to take care of network interface management. |
| | 24 | | /// </summary> |
| | 25 | | public class NetworkManager : INetworkManager, IDisposable |
| | 26 | | { |
| | 27 | | /// <summary> |
| | 28 | | /// Threading lock for network properties. |
| | 29 | | /// </summary> |
| | 30 | | private readonly Lock _initLock; |
| | 31 | |
|
| | 32 | | private readonly ILogger<NetworkManager> _logger; |
| | 33 | |
|
| | 34 | | private readonly IConfigurationManager _configurationManager; |
| | 35 | |
|
| | 36 | | private readonly IConfiguration _startupConfig; |
| | 37 | |
|
| | 38 | | private readonly Lock _networkEventLock; |
| | 39 | |
|
| | 40 | | /// <summary> |
| | 41 | | /// Holds the published server URLs and the IPs to use them on. |
| | 42 | | /// </summary> |
| | 43 | | private IReadOnlyList<PublishedServerUriOverride> _publishedServerUrls; |
| | 44 | |
|
| | 45 | | private IReadOnlyList<IPNetwork> _remoteAddressFilter; |
| | 46 | |
|
| | 47 | | /// <summary> |
| | 48 | | /// Used to stop "event-racing conditions". |
| | 49 | | /// </summary> |
| | 50 | | private bool _eventfire; |
| | 51 | |
|
| | 52 | | /// <summary> |
| | 53 | | /// Dictionary containing interface addresses and their subnets. |
| | 54 | | /// </summary> |
| | 55 | | private List<IPData> _interfaces; |
| | 56 | |
|
| | 57 | | /// <summary> |
| | 58 | | /// Unfiltered user defined LAN subnets (<see cref="NetworkConfiguration.LocalNetworkSubnets"/>) |
| | 59 | | /// or internal interface network subnets if undefined by user. |
| | 60 | | /// </summary> |
| | 61 | | private IReadOnlyList<IPNetwork> _lanSubnets; |
| | 62 | |
|
| | 63 | | /// <summary> |
| | 64 | | /// User defined list of subnets to excluded from the LAN. |
| | 65 | | /// </summary> |
| | 66 | | private IReadOnlyList<IPNetwork> _excludedSubnets; |
| | 67 | |
|
| | 68 | | /// <summary> |
| | 69 | | /// True if this object is disposed. |
| | 70 | | /// </summary> |
| | 71 | | private bool _disposed; |
| | 72 | |
|
| | 73 | | /// <summary> |
| | 74 | | /// Initializes a new instance of the <see cref="NetworkManager"/> class. |
| | 75 | | /// </summary> |
| | 76 | | /// <param name="configurationManager">The <see cref="IConfigurationManager"/> instance.</param> |
| | 77 | | /// <param name="startupConfig">The <see cref="IConfiguration"/> instance holding startup parameters.</param> |
| | 78 | | /// <param name="logger">Logger to use for messages.</param> |
| | 79 | | public NetworkManager(IConfigurationManager configurationManager, IConfiguration startupConfig, ILogger<NetworkManag |
| | 80 | | { |
| 76 | 81 | | ArgumentNullException.ThrowIfNull(logger); |
| 76 | 82 | | ArgumentNullException.ThrowIfNull(configurationManager); |
| | 83 | |
|
| 76 | 84 | | _logger = logger; |
| 76 | 85 | | _configurationManager = configurationManager; |
| 76 | 86 | | _startupConfig = startupConfig; |
| 76 | 87 | | _initLock = new(); |
| 76 | 88 | | _interfaces = new List<IPData>(); |
| 76 | 89 | | _publishedServerUrls = new List<PublishedServerUriOverride>(); |
| 76 | 90 | | _networkEventLock = new(); |
| 76 | 91 | | _remoteAddressFilter = new List<IPNetwork>(); |
| | 92 | |
|
| 76 | 93 | | _ = bool.TryParse(startupConfig[DetectNetworkChangeKey], out var detectNetworkChange); |
| | 94 | |
|
| 76 | 95 | | UpdateSettings(_configurationManager.GetNetworkConfiguration()); |
| | 96 | |
|
| 76 | 97 | | if (detectNetworkChange) |
| | 98 | | { |
| 21 | 99 | | NetworkChange.NetworkAddressChanged += OnNetworkAddressChanged; |
| 21 | 100 | | NetworkChange.NetworkAvailabilityChanged += OnNetworkAvailabilityChanged; |
| | 101 | | } |
| | 102 | |
|
| 76 | 103 | | _configurationManager.NamedConfigurationUpdated += ConfigurationUpdated; |
| 76 | 104 | | } |
| | 105 | |
|
| | 106 | | /// <summary> |
| | 107 | | /// Event triggered on network changes. |
| | 108 | | /// </summary> |
| | 109 | | public event EventHandler? NetworkChanged; |
| | 110 | |
|
| | 111 | | /// <summary> |
| | 112 | | /// Gets or sets a value indicating whether testing is taking place. |
| | 113 | | /// </summary> |
| 3 | 114 | | public static string MockNetworkSettings { get; set; } = string.Empty; |
| | 115 | |
|
| | 116 | | /// <summary> |
| | 117 | | /// Gets a value indicating whether IP4 is enabled. |
| | 118 | | /// </summary> |
| 378 | 119 | | public bool IsIPv4Enabled => _configurationManager.GetNetworkConfiguration().EnableIPv4; |
| | 120 | |
|
| | 121 | | /// <summary> |
| | 122 | | /// Gets a value indicating whether IP6 is enabled. |
| | 123 | | /// </summary> |
| 255 | 124 | | public bool IsIPv6Enabled => _configurationManager.GetNetworkConfiguration().EnableIPv6; |
| | 125 | |
|
| | 126 | | /// <summary> |
| | 127 | | /// Gets a value indicating whether is all IPv6 interfaces are trusted as internal. |
| | 128 | | /// </summary> |
| | 129 | | public bool TrustAllIPv6Interfaces { get; private set; } |
| | 130 | |
|
| | 131 | | /// <summary> |
| | 132 | | /// Gets the Published server override list. |
| | 133 | | /// </summary> |
| 0 | 134 | | public IReadOnlyList<PublishedServerUriOverride> PublishedServerUrls => _publishedServerUrls; |
| | 135 | |
|
| | 136 | | /// <inheritdoc/> |
| | 137 | | public void Dispose() |
| | 138 | | { |
| 55 | 139 | | Dispose(true); |
| 55 | 140 | | GC.SuppressFinalize(this); |
| 55 | 141 | | } |
| | 142 | |
|
| | 143 | | /// <summary> |
| | 144 | | /// Handler for network change events. |
| | 145 | | /// </summary> |
| | 146 | | /// <param name="sender">Sender.</param> |
| | 147 | | /// <param name="e">A <see cref="NetworkAvailabilityEventArgs"/> containing network availability information.</param |
| | 148 | | private void OnNetworkAvailabilityChanged(object? sender, NetworkAvailabilityEventArgs e) |
| | 149 | | { |
| 0 | 150 | | _logger.LogDebug("Network availability changed."); |
| 0 | 151 | | HandleNetworkChange(); |
| 0 | 152 | | } |
| | 153 | |
|
| | 154 | | /// <summary> |
| | 155 | | /// Handler for network change events. |
| | 156 | | /// </summary> |
| | 157 | | /// <param name="sender">Sender.</param> |
| | 158 | | /// <param name="e">An <see cref="EventArgs"/>.</param> |
| | 159 | | private void OnNetworkAddressChanged(object? sender, EventArgs e) |
| | 160 | | { |
| 0 | 161 | | _logger.LogDebug("Network address change detected."); |
| 0 | 162 | | HandleNetworkChange(); |
| 0 | 163 | | } |
| | 164 | |
|
| | 165 | | /// <summary> |
| | 166 | | /// Triggers our event, and re-loads interface information. |
| | 167 | | /// </summary> |
| | 168 | | private void HandleNetworkChange() |
| 0 | 169 | | { |
| | 170 | | lock (_networkEventLock) |
| | 171 | | { |
| 0 | 172 | | if (!_eventfire) |
| | 173 | | { |
| | 174 | | // As network events tend to fire one after the other only fire once every second. |
| 0 | 175 | | _eventfire = true; |
| 0 | 176 | | OnNetworkChange(); |
| | 177 | | } |
| 0 | 178 | | } |
| 0 | 179 | | } |
| | 180 | |
|
| | 181 | | /// <summary> |
| | 182 | | /// Waits for 2 seconds before re-initialising the settings, as typically these events fire multiple times in succes |
| | 183 | | /// </summary> |
| | 184 | | private void OnNetworkChange() |
| | 185 | | { |
| | 186 | | try |
| | 187 | | { |
| 0 | 188 | | Thread.Sleep(2000); |
| 0 | 189 | | var networkConfig = _configurationManager.GetNetworkConfiguration(); |
| 0 | 190 | | if (IsIPv6Enabled && !Socket.OSSupportsIPv6) |
| | 191 | | { |
| 0 | 192 | | UpdateSettings(networkConfig); |
| | 193 | | } |
| | 194 | | else |
| | 195 | | { |
| 0 | 196 | | InitializeInterfaces(); |
| 0 | 197 | | InitializeLan(networkConfig); |
| 0 | 198 | | EnforceBindSettings(networkConfig); |
| | 199 | | } |
| | 200 | |
|
| 0 | 201 | | PrintNetworkInformation(networkConfig); |
| 0 | 202 | | NetworkChanged?.Invoke(this, EventArgs.Empty); |
| 0 | 203 | | } |
| | 204 | | finally |
| | 205 | | { |
| 0 | 206 | | _eventfire = false; |
| 0 | 207 | | } |
| 0 | 208 | | } |
| | 209 | |
|
| | 210 | | /// <summary> |
| | 211 | | /// Generate a list of all the interface ip addresses and submasks where that are in the active/unknown state. |
| | 212 | | /// </summary> |
| | 213 | | private void InitializeInterfaces() |
| 37 | 214 | | { |
| | 215 | | lock (_initLock) |
| | 216 | | { |
| 37 | 217 | | _logger.LogDebug("Refreshing interfaces."); |
| | 218 | |
|
| 37 | 219 | | var interfaces = new List<IPData>(); |
| | 220 | |
|
| | 221 | | try |
| | 222 | | { |
| 37 | 223 | | var nics = NetworkInterface.GetAllNetworkInterfaces() |
| 37 | 224 | | .Where(i => i.OperationalStatus == OperationalStatus.Up); |
| | 225 | |
|
| 222 | 226 | | foreach (NetworkInterface adapter in nics) |
| | 227 | | { |
| | 228 | | try |
| | 229 | | { |
| 74 | 230 | | var ipProperties = adapter.GetIPProperties(); |
| | 231 | |
|
| | 232 | | // Populate interface list |
| 444 | 233 | | foreach (var info in ipProperties.UnicastAddresses) |
| | 234 | | { |
| 148 | 235 | | if (IsIPv4Enabled && info.Address.AddressFamily == AddressFamily.InterNetwork) |
| | 236 | | { |
| 74 | 237 | | var interfaceObject = new IPData(info.Address, new IPNetwork(info.Address, info.PrefixLe |
| 74 | 238 | | { |
| 74 | 239 | | Index = ipProperties.GetIPv4Properties().Index, |
| 74 | 240 | | Name = adapter.Name, |
| 74 | 241 | | SupportsMulticast = adapter.SupportsMulticast |
| 74 | 242 | | }; |
| | 243 | |
|
| 74 | 244 | | interfaces.Add(interfaceObject); |
| | 245 | | } |
| 74 | 246 | | else if (IsIPv6Enabled && info.Address.AddressFamily == AddressFamily.InterNetworkV6) |
| | 247 | | { |
| 20 | 248 | | var interfaceObject = new IPData(info.Address, new IPNetwork(info.Address, info.PrefixLe |
| 20 | 249 | | { |
| 20 | 250 | | Index = ipProperties.GetIPv6Properties().Index, |
| 20 | 251 | | Name = adapter.Name, |
| 20 | 252 | | SupportsMulticast = adapter.SupportsMulticast |
| 20 | 253 | | }; |
| | 254 | |
|
| 20 | 255 | | interfaces.Add(interfaceObject); |
| | 256 | | } |
| | 257 | | } |
| 74 | 258 | | } |
| 0 | 259 | | catch (Exception ex) |
| | 260 | | { |
| | 261 | | // Ignore error, and attempt to continue. |
| 0 | 262 | | _logger.LogError(ex, "Error encountered parsing interfaces."); |
| 0 | 263 | | } |
| | 264 | | } |
| 37 | 265 | | } |
| 0 | 266 | | catch (Exception ex) |
| | 267 | | { |
| 0 | 268 | | _logger.LogError(ex, "Error obtaining interfaces."); |
| 0 | 269 | | } |
| | 270 | |
|
| | 271 | | // If no interfaces are found, fallback to loopback interfaces. |
| 37 | 272 | | if (interfaces.Count == 0) |
| | 273 | | { |
| 0 | 274 | | _logger.LogWarning("No interface information available. Using loopback interface(s)."); |
| | 275 | |
|
| 0 | 276 | | if (IsIPv4Enabled) |
| | 277 | | { |
| 0 | 278 | | interfaces.Add(new IPData(IPAddress.Loopback, NetworkConstants.IPv4RFC5735Loopback, "lo")); |
| | 279 | | } |
| | 280 | |
|
| 0 | 281 | | if (IsIPv6Enabled) |
| | 282 | | { |
| 0 | 283 | | interfaces.Add(new IPData(IPAddress.IPv6Loopback, NetworkConstants.IPv6RFC4291Loopback, "lo")); |
| | 284 | | } |
| | 285 | | } |
| | 286 | |
|
| 37 | 287 | | _logger.LogDebug("Discovered {NumberOfInterfaces} interfaces.", interfaces.Count); |
| 37 | 288 | | _logger.LogDebug("Interfaces addresses: {Addresses}", interfaces.OrderByDescending(s => s.AddressFamily == A |
| | 289 | |
|
| 37 | 290 | | _interfaces = interfaces; |
| 37 | 291 | | } |
| 37 | 292 | | } |
| | 293 | |
|
| | 294 | | /// <summary> |
| | 295 | | /// Initializes internal LAN cache. |
| | 296 | | /// </summary> |
| | 297 | | [MemberNotNull(nameof(_lanSubnets), nameof(_excludedSubnets))] |
| | 298 | | private void InitializeLan(NetworkConfiguration config) |
| 76 | 299 | | { |
| | 300 | | lock (_initLock) |
| | 301 | | { |
| 76 | 302 | | _logger.LogDebug("Refreshing LAN information."); |
| | 303 | |
|
| | 304 | | // Get configuration options |
| 76 | 305 | | var subnets = config.LocalNetworkSubnets; |
| | 306 | |
|
| | 307 | | // If no LAN addresses are specified, all private subnets and Loopback are deemed to be the LAN |
| 76 | 308 | | if (!NetworkUtils.TryParseToSubnets(subnets, out var lanSubnets, false) || lanSubnets.Count == 0) |
| | 309 | | { |
| 42 | 310 | | _logger.LogDebug("Using LAN interface addresses as user provided no LAN details."); |
| | 311 | |
|
| 42 | 312 | | var fallbackLanSubnets = new List<IPNetwork>(); |
| 42 | 313 | | if (IsIPv6Enabled) |
| | 314 | | { |
| 7 | 315 | | fallbackLanSubnets.Add(NetworkConstants.IPv6RFC4291Loopback); // RFC 4291 (Loopback) |
| 7 | 316 | | fallbackLanSubnets.Add(NetworkConstants.IPv6RFC4291SiteLocal); // RFC 4291 (Site local) |
| 7 | 317 | | fallbackLanSubnets.Add(NetworkConstants.IPv6RFC4193UniqueLocal); // RFC 4193 (Unique local) |
| | 318 | | } |
| | 319 | |
|
| 42 | 320 | | if (IsIPv4Enabled) |
| | 321 | | { |
| 42 | 322 | | fallbackLanSubnets.Add(NetworkConstants.IPv4RFC5735Loopback); // RFC 5735 (Loopback) |
| 42 | 323 | | fallbackLanSubnets.Add(NetworkConstants.IPv4RFC1918PrivateClassA); // RFC 1918 (private Class A) |
| 42 | 324 | | fallbackLanSubnets.Add(NetworkConstants.IPv4RFC1918PrivateClassB); // RFC 1918 (private Class B) |
| 42 | 325 | | fallbackLanSubnets.Add(NetworkConstants.IPv4RFC1918PrivateClassC); // RFC 1918 (private Class C) |
| | 326 | | } |
| | 327 | |
|
| 42 | 328 | | _lanSubnets = fallbackLanSubnets; |
| | 329 | | } |
| | 330 | | else |
| | 331 | | { |
| 34 | 332 | | _lanSubnets = lanSubnets; |
| | 333 | | } |
| | 334 | |
|
| 76 | 335 | | _excludedSubnets = NetworkUtils.TryParseToSubnets(subnets, out var excludedSubnets, true) |
| 76 | 336 | | ? excludedSubnets |
| 76 | 337 | | : new List<IPNetwork>(); |
| 76 | 338 | | } |
| 76 | 339 | | } |
| | 340 | |
|
| | 341 | | /// <summary> |
| | 342 | | /// Enforce bind addresses and exclusions on available interfaces. |
| | 343 | | /// </summary> |
| | 344 | | private void EnforceBindSettings(NetworkConfiguration config) |
| 76 | 345 | | { |
| | 346 | | lock (_initLock) |
| | 347 | | { |
| | 348 | | // Respect explicit bind addresses |
| 76 | 349 | | var interfaces = _interfaces.ToList(); |
| 76 | 350 | | var localNetworkAddresses = config.LocalNetworkAddresses; |
| 76 | 351 | | if (localNetworkAddresses.Length > 0 && !string.IsNullOrWhiteSpace(localNetworkAddresses[0])) |
| | 352 | | { |
| 12 | 353 | | var bindAddresses = localNetworkAddresses.Select(p => NetworkUtils.TryParseToSubnet(p, out var network) |
| 12 | 354 | | ? network.Prefix |
| 12 | 355 | | : (interfaces.Where(x => x.Name.Equals(p, StringComparison.OrdinalIgnoreCase)) |
| 12 | 356 | | .Select(x => x.Address) |
| 12 | 357 | | .FirstOrDefault() ?? IPAddress.None)) |
| 12 | 358 | | .Where(x => x != IPAddress.None) |
| 12 | 359 | | .ToHashSet(); |
| 12 | 360 | | interfaces = interfaces.Where(x => bindAddresses.Contains(x.Address)).ToList(); |
| | 361 | |
|
| 12 | 362 | | if (bindAddresses.Contains(IPAddress.Loopback) && !interfaces.Any(i => i.Address.Equals(IPAddress.Loopba |
| | 363 | | { |
| 0 | 364 | | interfaces.Add(new IPData(IPAddress.Loopback, NetworkConstants.IPv4RFC5735Loopback, "lo")); |
| | 365 | | } |
| | 366 | |
|
| 12 | 367 | | if (bindAddresses.Contains(IPAddress.IPv6Loopback) && !interfaces.Any(i => i.Address.Equals(IPAddress.IP |
| | 368 | | { |
| 0 | 369 | | interfaces.Add(new IPData(IPAddress.IPv6Loopback, NetworkConstants.IPv6RFC4291Loopback, "lo")); |
| | 370 | | } |
| | 371 | | } |
| | 372 | |
|
| | 373 | | // Remove all interfaces matching any virtual machine interface prefix |
| 76 | 374 | | if (config.IgnoreVirtualInterfaces) |
| | 375 | | { |
| | 376 | | // Remove potentially existing * and split config string into prefixes |
| 76 | 377 | | var virtualInterfacePrefixes = config.VirtualInterfaceNames |
| 76 | 378 | | .Select(i => i.Replace("*", string.Empty, StringComparison.OrdinalIgnoreCase)); |
| | 379 | |
|
| | 380 | | // Check all interfaces for matches against the prefixes and remove them |
| 76 | 381 | | if (_interfaces.Count > 0) |
| | 382 | | { |
| 304 | 383 | | foreach (var virtualInterfacePrefix in virtualInterfacePrefixes) |
| | 384 | | { |
| 76 | 385 | | interfaces.RemoveAll(x => x.Name.StartsWith(virtualInterfacePrefix, StringComparison.OrdinalIgno |
| | 386 | | } |
| | 387 | | } |
| | 388 | | } |
| | 389 | |
|
| | 390 | | // Remove all IPv4 interfaces if IPv4 is disabled |
| 76 | 391 | | if (!IsIPv4Enabled) |
| | 392 | | { |
| 0 | 393 | | interfaces.RemoveAll(x => x.AddressFamily == AddressFamily.InterNetwork); |
| | 394 | | } |
| | 395 | |
|
| | 396 | | // Remove all IPv6 interfaces if IPv6 is disabled |
| 76 | 397 | | if (!IsIPv6Enabled) |
| | 398 | | { |
| 52 | 399 | | interfaces.RemoveAll(x => x.AddressFamily == AddressFamily.InterNetworkV6); |
| | 400 | | } |
| | 401 | |
|
| | 402 | | // Users may have complex networking configuration that multiple interfaces sharing the same IP address |
| | 403 | | // Only return one IP for binding, and let the OS handle the rest |
| 76 | 404 | | _interfaces = interfaces.DistinctBy(iface => iface.Address).ToList(); |
| 76 | 405 | | } |
| 76 | 406 | | } |
| | 407 | |
|
| | 408 | | /// <summary> |
| | 409 | | /// Initializes the remote address values. |
| | 410 | | /// </summary> |
| | 411 | | private void InitializeRemote(NetworkConfiguration config) |
| 76 | 412 | | { |
| | 413 | | lock (_initLock) |
| | 414 | | { |
| | 415 | | // Parse config values into filter collection |
| 76 | 416 | | var remoteIPFilter = config.RemoteIPFilter; |
| 76 | 417 | | if (remoteIPFilter.Length != 0 && !string.IsNullOrWhiteSpace(remoteIPFilter[0])) |
| | 418 | | { |
| | 419 | | // Parse all IPs with netmask to a subnet |
| 4 | 420 | | var remoteAddressFilter = new List<IPNetwork>(); |
| 4 | 421 | | var remoteFilteredSubnets = remoteIPFilter.Where(x => x.Contains('/', StringComparison.OrdinalIgnoreCase |
| 4 | 422 | | if (NetworkUtils.TryParseToSubnets(remoteFilteredSubnets, out var remoteAddressFilterResult, false)) |
| | 423 | | { |
| 0 | 424 | | remoteAddressFilter = remoteAddressFilterResult.ToList(); |
| | 425 | | } |
| | 426 | |
|
| | 427 | | // Parse everything else as an IP and construct subnet with a single IP |
| 4 | 428 | | var remoteFilteredIPs = remoteIPFilter.Where(x => !x.Contains('/', StringComparison.OrdinalIgnoreCase)); |
| 18 | 429 | | foreach (var ip in remoteFilteredIPs) |
| | 430 | | { |
| 5 | 431 | | if (IPAddress.TryParse(ip, out var ipp)) |
| | 432 | | { |
| 5 | 433 | | remoteAddressFilter.Add(new IPNetwork(ipp, ipp.AddressFamily == AddressFamily.InterNetwork ? Net |
| | 434 | | } |
| | 435 | | } |
| | 436 | |
|
| 4 | 437 | | _remoteAddressFilter = remoteAddressFilter; |
| | 438 | | } |
| 76 | 439 | | } |
| 76 | 440 | | } |
| | 441 | |
|
| | 442 | | /// <summary> |
| | 443 | | /// Parses the user defined overrides into the dictionary object. |
| | 444 | | /// Overrides are the equivalent of localised publishedServerUrl, enabling |
| | 445 | | /// different addresses to be advertised over different subnets. |
| | 446 | | /// format is subnet=ipaddress|host|uri |
| | 447 | | /// when subnet = 0.0.0.0, any external address matches. |
| | 448 | | /// </summary> |
| | 449 | | private void InitializeOverrides(NetworkConfiguration config) |
| 76 | 450 | | { |
| | 451 | | lock (_initLock) |
| | 452 | | { |
| 76 | 453 | | var publishedServerUrls = new List<PublishedServerUriOverride>(); |
| | 454 | |
|
| | 455 | | // Prefer startup configuration. |
| 76 | 456 | | var startupOverrideKey = _startupConfig[AddressOverrideKey]; |
| 76 | 457 | | if (!string.IsNullOrEmpty(startupOverrideKey)) |
| | 458 | | { |
| 0 | 459 | | publishedServerUrls.Add( |
| 0 | 460 | | new PublishedServerUriOverride( |
| 0 | 461 | | new IPData(IPAddress.Any, NetworkConstants.IPv4Any), |
| 0 | 462 | | startupOverrideKey, |
| 0 | 463 | | true, |
| 0 | 464 | | true)); |
| 0 | 465 | | publishedServerUrls.Add( |
| 0 | 466 | | new PublishedServerUriOverride( |
| 0 | 467 | | new IPData(IPAddress.IPv6Any, NetworkConstants.IPv6Any), |
| 0 | 468 | | startupOverrideKey, |
| 0 | 469 | | true, |
| 0 | 470 | | true)); |
| 0 | 471 | | _publishedServerUrls = publishedServerUrls; |
| 0 | 472 | | return; |
| | 473 | | } |
| | 474 | |
|
| 76 | 475 | | var overrides = config.PublishedServerUriBySubnet; |
| 166 | 476 | | foreach (var entry in overrides) |
| | 477 | | { |
| 8 | 478 | | var parts = entry.Split('='); |
| 8 | 479 | | if (parts.Length != 2) |
| | 480 | | { |
| 0 | 481 | | _logger.LogError("Unable to parse bind override: {Entry}", entry); |
| 0 | 482 | | return; |
| | 483 | | } |
| | 484 | |
|
| 8 | 485 | | var replacement = parts[1].Trim(); |
| 8 | 486 | | var identifier = parts[0]; |
| 8 | 487 | | if (string.Equals(identifier, "all", StringComparison.OrdinalIgnoreCase)) |
| | 488 | | { |
| | 489 | | // Drop any other overrides in case an "all" override exists |
| 2 | 490 | | publishedServerUrls.Clear(); |
| 2 | 491 | | publishedServerUrls.Add( |
| 2 | 492 | | new PublishedServerUriOverride( |
| 2 | 493 | | new IPData(IPAddress.Any, NetworkConstants.IPv4Any), |
| 2 | 494 | | replacement, |
| 2 | 495 | | true, |
| 2 | 496 | | true)); |
| 2 | 497 | | publishedServerUrls.Add( |
| 2 | 498 | | new PublishedServerUriOverride( |
| 2 | 499 | | new IPData(IPAddress.IPv6Any, NetworkConstants.IPv6Any), |
| 2 | 500 | | replacement, |
| 2 | 501 | | true, |
| 2 | 502 | | true)); |
| 2 | 503 | | break; |
| | 504 | | } |
| 6 | 505 | | else if (string.Equals(identifier, "external", StringComparison.OrdinalIgnoreCase)) |
| | 506 | | { |
| 4 | 507 | | publishedServerUrls.Add( |
| 4 | 508 | | new PublishedServerUriOverride( |
| 4 | 509 | | new IPData(IPAddress.Any, NetworkConstants.IPv4Any), |
| 4 | 510 | | replacement, |
| 4 | 511 | | false, |
| 4 | 512 | | true)); |
| 4 | 513 | | publishedServerUrls.Add( |
| 4 | 514 | | new PublishedServerUriOverride( |
| 4 | 515 | | new IPData(IPAddress.IPv6Any, NetworkConstants.IPv6Any), |
| 4 | 516 | | replacement, |
| 4 | 517 | | false, |
| 4 | 518 | | true)); |
| | 519 | | } |
| 2 | 520 | | else if (string.Equals(identifier, "internal", StringComparison.OrdinalIgnoreCase)) |
| | 521 | | { |
| 0 | 522 | | foreach (var lan in _lanSubnets) |
| | 523 | | { |
| 0 | 524 | | var lanPrefix = lan.Prefix; |
| 0 | 525 | | publishedServerUrls.Add( |
| 0 | 526 | | new PublishedServerUriOverride( |
| 0 | 527 | | new IPData(lanPrefix, new IPNetwork(lanPrefix, lan.PrefixLength)), |
| 0 | 528 | | replacement, |
| 0 | 529 | | true, |
| 0 | 530 | | false)); |
| | 531 | | } |
| | 532 | | } |
| 2 | 533 | | else if (NetworkUtils.TryParseToSubnet(identifier, out var result) && result is not null) |
| | 534 | | { |
| 1 | 535 | | var data = new IPData(result.Prefix, result); |
| 1 | 536 | | publishedServerUrls.Add( |
| 1 | 537 | | new PublishedServerUriOverride( |
| 1 | 538 | | data, |
| 1 | 539 | | replacement, |
| 1 | 540 | | true, |
| 1 | 541 | | true)); |
| | 542 | | } |
| 1 | 543 | | else if (TryParseInterface(identifier, out var ifaces)) |
| | 544 | | { |
| 4 | 545 | | foreach (var iface in ifaces) |
| | 546 | | { |
| 1 | 547 | | publishedServerUrls.Add( |
| 1 | 548 | | new PublishedServerUriOverride( |
| 1 | 549 | | iface, |
| 1 | 550 | | replacement, |
| 1 | 551 | | true, |
| 1 | 552 | | true)); |
| | 553 | | } |
| | 554 | | } |
| | 555 | | else |
| | 556 | | { |
| 0 | 557 | | _logger.LogError("Unable to parse bind override: {Entry}", entry); |
| | 558 | | } |
| | 559 | | } |
| | 560 | |
|
| 76 | 561 | | _publishedServerUrls = publishedServerUrls; |
| 76 | 562 | | } |
| 76 | 563 | | } |
| | 564 | |
|
| | 565 | | private void ConfigurationUpdated(object? sender, ConfigurationUpdateEventArgs evt) |
| | 566 | | { |
| 22 | 567 | | if (evt.Key.Equals(NetworkConfigurationStore.StoreKey, StringComparison.Ordinal)) |
| | 568 | | { |
| 0 | 569 | | UpdateSettings((NetworkConfiguration)evt.NewConfiguration); |
| | 570 | | } |
| 22 | 571 | | } |
| | 572 | |
|
| | 573 | | /// <summary> |
| | 574 | | /// Reloads all settings and re-Initializes the instance. |
| | 575 | | /// </summary> |
| | 576 | | /// <param name="configuration">The <see cref="NetworkConfiguration"/> to use.</param> |
| | 577 | | [MemberNotNull(nameof(_lanSubnets), nameof(_excludedSubnets))] |
| | 578 | | public void UpdateSettings(object configuration) |
| | 579 | | { |
| 76 | 580 | | ArgumentNullException.ThrowIfNull(configuration); |
| | 581 | |
|
| 76 | 582 | | var config = (NetworkConfiguration)configuration; |
| 76 | 583 | | HappyEyeballs.HttpClientExtension.UseIPv6 = config.EnableIPv6; |
| | 584 | |
|
| 76 | 585 | | InitializeLan(config); |
| 76 | 586 | | InitializeRemote(config); |
| | 587 | |
|
| 76 | 588 | | if (string.IsNullOrEmpty(MockNetworkSettings)) |
| | 589 | | { |
| 37 | 590 | | InitializeInterfaces(); |
| | 591 | | } |
| | 592 | | else // Used in testing only. |
| | 593 | | { |
| | 594 | | // Format is <IPAddress>,<Index>,<Name>: <next interface>. Set index to -ve to simulate a gateway. |
| 39 | 595 | | var interfaceList = MockNetworkSettings.Split('|'); |
| 39 | 596 | | var interfaces = new List<IPData>(); |
| 236 | 597 | | foreach (var details in interfaceList) |
| | 598 | | { |
| 79 | 599 | | var parts = details.Split(','); |
| 79 | 600 | | if (NetworkUtils.TryParseToSubnet(parts[0], out var subnet)) |
| | 601 | | { |
| 79 | 602 | | var address = subnet.Prefix; |
| 79 | 603 | | var index = int.Parse(parts[1], CultureInfo.InvariantCulture); |
| 79 | 604 | | if (address.AddressFamily == AddressFamily.InterNetwork || address.AddressFamily == AddressFamily.In |
| | 605 | | { |
| 79 | 606 | | var data = new IPData(address, subnet, parts[2]) |
| 79 | 607 | | { |
| 79 | 608 | | Index = index |
| 79 | 609 | | }; |
| 79 | 610 | | interfaces.Add(data); |
| | 611 | | } |
| | 612 | | } |
| | 613 | | else |
| | 614 | | { |
| 0 | 615 | | _logger.LogWarning("Could not parse mock interface settings: {Part}", details); |
| | 616 | | } |
| | 617 | | } |
| | 618 | |
|
| 39 | 619 | | _interfaces = interfaces; |
| | 620 | | } |
| | 621 | |
|
| 76 | 622 | | EnforceBindSettings(config); |
| 76 | 623 | | InitializeOverrides(config); |
| | 624 | |
|
| 76 | 625 | | PrintNetworkInformation(config, false); |
| 76 | 626 | | } |
| | 627 | |
|
| | 628 | | /// <summary> |
| | 629 | | /// Protected implementation of Dispose pattern. |
| | 630 | | /// </summary> |
| | 631 | | /// <param name="disposing"><c>True</c> to dispose the managed state.</param> |
| | 632 | | protected virtual void Dispose(bool disposing) |
| | 633 | | { |
| 55 | 634 | | if (!_disposed) |
| | 635 | | { |
| 55 | 636 | | if (disposing) |
| | 637 | | { |
| 55 | 638 | | _configurationManager.NamedConfigurationUpdated -= ConfigurationUpdated; |
| 55 | 639 | | NetworkChange.NetworkAddressChanged -= OnNetworkAddressChanged; |
| 55 | 640 | | NetworkChange.NetworkAvailabilityChanged -= OnNetworkAvailabilityChanged; |
| | 641 | | } |
| | 642 | |
|
| 55 | 643 | | _disposed = true; |
| | 644 | | } |
| 55 | 645 | | } |
| | 646 | |
|
| | 647 | | /// <inheritdoc/> |
| | 648 | | public bool TryParseInterface(string intf, [NotNullWhen(true)] out IReadOnlyList<IPData>? result) |
| | 649 | | { |
| 15 | 650 | | if (string.IsNullOrEmpty(intf) |
| 15 | 651 | | || _interfaces is null |
| 15 | 652 | | || _interfaces.Count == 0) |
| | 653 | | { |
| 0 | 654 | | result = null; |
| 0 | 655 | | return false; |
| | 656 | | } |
| | 657 | |
|
| | 658 | | // Match all interfaces starting with names starting with token |
| 15 | 659 | | result = _interfaces |
| 15 | 660 | | .Where(i => i.Name.Equals(intf, StringComparison.OrdinalIgnoreCase) |
| 15 | 661 | | && ((IsIPv4Enabled && i.Address.AddressFamily == AddressFamily.InterNetwork) |
| 15 | 662 | | || (IsIPv6Enabled && i.Address.AddressFamily == AddressFamily.InterNetworkV6))) |
| 15 | 663 | | .OrderBy(x => x.Index) |
| 15 | 664 | | .ToArray(); |
| 15 | 665 | | return result.Count > 0; |
| | 666 | | } |
| | 667 | |
|
| | 668 | | /// <inheritdoc/> |
| | 669 | | public bool HasRemoteAccess(IPAddress remoteIP) |
| | 670 | | { |
| 6 | 671 | | var config = _configurationManager.GetNetworkConfiguration(); |
| 6 | 672 | | if (config.EnableRemoteAccess) |
| | 673 | | { |
| | 674 | | // Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect r |
| | 675 | | // If left blank, all remote addresses will be allowed. |
| 6 | 676 | | if (_remoteAddressFilter.Any() && !IsInLocalNetwork(remoteIP)) |
| | 677 | | { |
| | 678 | | // remoteAddressFilter is a whitelist or blacklist. |
| 4 | 679 | | var matches = _remoteAddressFilter.Count(remoteNetwork => NetworkUtils.SubnetContainsAddress(remoteNetwo |
| 4 | 680 | | if ((!config.IsRemoteIPFilterBlacklist && matches > 0) |
| 4 | 681 | | || (config.IsRemoteIPFilterBlacklist && matches == 0)) |
| | 682 | | { |
| 2 | 683 | | return true; |
| | 684 | | } |
| | 685 | |
|
| 2 | 686 | | return false; |
| | 687 | | } |
| | 688 | | } |
| 0 | 689 | | else if (!IsInLocalNetwork(remoteIP)) |
| | 690 | | { |
| | 691 | | // Remote not enabled. So everyone should be LAN. |
| 0 | 692 | | return false; |
| | 693 | | } |
| | 694 | |
|
| 2 | 695 | | return true; |
| | 696 | | } |
| | 697 | |
|
| | 698 | | /// <inheritdoc/> |
| | 699 | | public IReadOnlyList<IPData> GetLoopbacks() |
| | 700 | | { |
| 0 | 701 | | if (!IsIPv4Enabled && !IsIPv6Enabled) |
| | 702 | | { |
| 0 | 703 | | return Array.Empty<IPData>(); |
| | 704 | | } |
| | 705 | |
|
| 0 | 706 | | var loopbackNetworks = new List<IPData>(); |
| 0 | 707 | | if (IsIPv4Enabled) |
| | 708 | | { |
| 0 | 709 | | loopbackNetworks.Add(new IPData(IPAddress.Loopback, NetworkConstants.IPv4RFC5735Loopback, "lo")); |
| | 710 | | } |
| | 711 | |
|
| 0 | 712 | | if (IsIPv6Enabled) |
| | 713 | | { |
| 0 | 714 | | loopbackNetworks.Add(new IPData(IPAddress.IPv6Loopback, NetworkConstants.IPv6RFC4291Loopback, "lo")); |
| | 715 | | } |
| | 716 | |
|
| 0 | 717 | | return loopbackNetworks; |
| | 718 | | } |
| | 719 | |
|
| | 720 | | /// <inheritdoc/> |
| | 721 | | public IReadOnlyList<IPData> GetAllBindInterfaces(bool individualInterfaces = false) |
| | 722 | | { |
| 21 | 723 | | var config = _configurationManager.GetNetworkConfiguration(); |
| 21 | 724 | | var localNetworkAddresses = config.LocalNetworkAddresses; |
| 21 | 725 | | if ((localNetworkAddresses.Length > 0 && !string.IsNullOrWhiteSpace(localNetworkAddresses[0]) && _interfaces.Cou |
| | 726 | | { |
| 0 | 727 | | return _interfaces; |
| | 728 | | } |
| | 729 | |
|
| | 730 | | // No bind address and no exclusions, so listen on all interfaces. |
| 21 | 731 | | var result = new List<IPData>(); |
| 21 | 732 | | if (IsIPv4Enabled && IsIPv6Enabled) |
| | 733 | | { |
| | 734 | | // Kestrel source code shows it uses Sockets.DualMode - so this also covers IPAddress.Any by default |
| 0 | 735 | | result.Add(new IPData(IPAddress.IPv6Any, NetworkConstants.IPv6Any)); |
| | 736 | | } |
| 21 | 737 | | else if (IsIPv4Enabled) |
| | 738 | | { |
| 21 | 739 | | result.Add(new IPData(IPAddress.Any, NetworkConstants.IPv4Any)); |
| | 740 | | } |
| 0 | 741 | | else if (IsIPv6Enabled) |
| | 742 | | { |
| | 743 | | // Cannot use IPv6Any as Kestrel will bind to IPv4 addresses too. |
| 0 | 744 | | foreach (var iface in _interfaces) |
| | 745 | | { |
| 0 | 746 | | if (iface.AddressFamily == AddressFamily.InterNetworkV6) |
| | 747 | | { |
| 0 | 748 | | result.Add(iface); |
| | 749 | | } |
| | 750 | | } |
| | 751 | | } |
| | 752 | |
|
| 21 | 753 | | return result; |
| | 754 | | } |
| | 755 | |
|
| | 756 | | /// <inheritdoc/> |
| | 757 | | public string GetBindAddress(string source, out int? port) |
| | 758 | | { |
| 23 | 759 | | if (!NetworkUtils.TryParseHost(source, out var addresses, IsIPv4Enabled, IsIPv6Enabled)) |
| | 760 | | { |
| 4 | 761 | | addresses = Array.Empty<IPAddress>(); |
| | 762 | | } |
| | 763 | |
|
| 23 | 764 | | var result = GetBindAddress(addresses.FirstOrDefault(), out port); |
| 23 | 765 | | return result; |
| | 766 | | } |
| | 767 | |
|
| | 768 | | /// <inheritdoc/> |
| | 769 | | public string GetBindAddress(HttpRequest source, out int? port) |
| | 770 | | { |
| 0 | 771 | | var result = GetBindAddress(source.Host.Host, out port); |
| 0 | 772 | | port ??= source.Host.Port; |
| | 773 | |
|
| 0 | 774 | | return result; |
| | 775 | | } |
| | 776 | |
|
| | 777 | | /// <inheritdoc/> |
| | 778 | | public string GetBindAddress(IPAddress? source, out int? port, bool skipOverrides = false) |
| | 779 | | { |
| 23 | 780 | | port = null; |
| | 781 | |
|
| | 782 | | string result; |
| | 783 | |
|
| 23 | 784 | | if (source is not null) |
| | 785 | | { |
| 19 | 786 | | if (IsIPv4Enabled && !IsIPv6Enabled && source.AddressFamily == AddressFamily.InterNetworkV6) |
| | 787 | | { |
| 0 | 788 | | _logger.LogWarning("IPv6 is disabled in Jellyfin, but enabled in the OS. This may affect how the interfa |
| | 789 | | } |
| | 790 | |
|
| 19 | 791 | | if (!IsIPv4Enabled && IsIPv6Enabled && source.AddressFamily == AddressFamily.InterNetwork) |
| | 792 | | { |
| 0 | 793 | | _logger.LogWarning("IPv4 is disabled in Jellyfin, but enabled in the OS. This may affect how the interfa |
| | 794 | | } |
| | 795 | |
|
| 19 | 796 | | bool isExternal = !IsInLocalNetwork(source); |
| 19 | 797 | | _logger.LogDebug("Trying to get bind address for source {Source} - External: {IsExternal}", source, isExtern |
| | 798 | |
|
| 19 | 799 | | if (!skipOverrides && MatchesPublishedServerUrl(source, isExternal, out result)) |
| | 800 | | { |
| 6 | 801 | | return result; |
| | 802 | | } |
| | 803 | |
|
| | 804 | | // No preference given, so move on to bind addresses. |
| 13 | 805 | | if (MatchesBindInterface(source, isExternal, out result)) |
| | 806 | | { |
| 11 | 807 | | return result; |
| | 808 | | } |
| | 809 | |
|
| 2 | 810 | | if (isExternal && MatchesExternalInterface(source, out result)) |
| | 811 | | { |
| 0 | 812 | | return result; |
| | 813 | | } |
| | 814 | | } |
| | 815 | |
|
| | 816 | | // Get the first LAN interface address that's not excluded and not a loopback address. |
| | 817 | | // Get all available interfaces, prefer local interfaces |
| 6 | 818 | | var availableInterfaces = _interfaces.Where(x => !IPAddress.IsLoopback(x.Address)) |
| 6 | 819 | | .OrderByDescending(x => IsInLocalNetwork(x.Address)) |
| 6 | 820 | | .ThenBy(x => x.Index) |
| 6 | 821 | | .ToList(); |
| | 822 | |
|
| 6 | 823 | | if (availableInterfaces.Count == 0) |
| | 824 | | { |
| | 825 | | // There isn't any others, so we'll use the loopback. |
| 0 | 826 | | result = IsIPv4Enabled && !IsIPv6Enabled ? "127.0.0.1" : "::1"; |
| 0 | 827 | | _logger.LogWarning("{Source}: Only loopback {Result} returned, using that as bind address.", source, result) |
| 0 | 828 | | return result; |
| | 829 | | } |
| | 830 | |
|
| | 831 | | // If no source address is given, use the preferred (first) interface |
| 6 | 832 | | if (source is null) |
| | 833 | | { |
| 4 | 834 | | result = NetworkUtils.FormatIPString(availableInterfaces.First().Address); |
| 4 | 835 | | _logger.LogDebug("{Source}: Using first internal interface as bind address: {Result}", source, result); |
| 4 | 836 | | return result; |
| | 837 | | } |
| | 838 | |
|
| | 839 | | // Does the request originate in one of the interface subnets? |
| | 840 | | // (For systems with multiple internal network cards, and multiple subnets) |
| 8 | 841 | | foreach (var intf in availableInterfaces) |
| | 842 | | { |
| 2 | 843 | | if (NetworkUtils.SubnetContainsAddress(intf.Subnet, source)) |
| | 844 | | { |
| 0 | 845 | | result = NetworkUtils.FormatIPString(intf.Address); |
| 0 | 846 | | _logger.LogDebug("{Source}: Found interface with matching subnet, using it as bind address: {Result}", s |
| 0 | 847 | | return result; |
| | 848 | | } |
| | 849 | | } |
| | 850 | |
|
| | 851 | | // Fallback to first available interface |
| 2 | 852 | | result = NetworkUtils.FormatIPString(availableInterfaces[0].Address); |
| 2 | 853 | | _logger.LogDebug("{Source}: No matching interfaces found, using preferred interface as bind address: {Result}", |
| 2 | 854 | | return result; |
| 0 | 855 | | } |
| | 856 | |
|
| | 857 | | /// <inheritdoc/> |
| | 858 | | public IReadOnlyList<IPData> GetInternalBindAddresses() |
| | 859 | | { |
| | 860 | | // Select all local bind addresses |
| 6 | 861 | | return _interfaces.Where(x => IsInLocalNetwork(x.Address)) |
| 6 | 862 | | .OrderBy(x => x.Index) |
| 6 | 863 | | .ToList(); |
| | 864 | | } |
| | 865 | |
|
| | 866 | | /// <inheritdoc/> |
| | 867 | | public bool IsInLocalNetwork(string address) |
| | 868 | | { |
| 0 | 869 | | if (NetworkUtils.TryParseToSubnet(address, out var subnet)) |
| | 870 | | { |
| 0 | 871 | | return IsInLocalNetwork(subnet.Prefix); |
| | 872 | | } |
| | 873 | |
|
| 0 | 874 | | return NetworkUtils.TryParseHost(address, out var addresses, IsIPv4Enabled, IsIPv6Enabled) |
| 0 | 875 | | && addresses.Any(IsInLocalNetwork); |
| | 876 | | } |
| | 877 | |
|
| | 878 | | /// <summary> |
| | 879 | | /// Get if the IPAddress is Link-local. |
| | 880 | | /// </summary> |
| | 881 | | /// <param name="address">The IP Address.</param> |
| | 882 | | /// <returns>Bool indicates if the address is link-local.</returns> |
| | 883 | | public bool IsLinkLocalAddress(IPAddress address) |
| | 884 | | { |
| 4 | 885 | | ArgumentNullException.ThrowIfNull(address); |
| 4 | 886 | | return NetworkConstants.IPv4RFC3927LinkLocal.Contains(address) || address.IsIPv6LinkLocal; |
| | 887 | | } |
| | 888 | |
|
| | 889 | | /// <inheritdoc/> |
| | 890 | | public bool IsInLocalNetwork(IPAddress address) |
| | 891 | | { |
| 157 | 892 | | ArgumentNullException.ThrowIfNull(address); |
| | 893 | |
|
| | 894 | | // Map IPv6 mapped IPv4 back to IPv4 (happens if Kestrel runs in dual-socket mode) |
| 157 | 895 | | if (address.IsIPv4MappedToIPv6) |
| | 896 | | { |
| 0 | 897 | | address = address.MapToIPv4(); |
| | 898 | | } |
| | 899 | |
|
| 157 | 900 | | if ((TrustAllIPv6Interfaces && address.AddressFamily == AddressFamily.InterNetworkV6) |
| 157 | 901 | | || IPAddress.IsLoopback(address)) |
| | 902 | | { |
| 85 | 903 | | return true; |
| | 904 | | } |
| | 905 | |
|
| | 906 | | // As private addresses can be redefined by Configuration.LocalNetworkAddresses |
| 72 | 907 | | return CheckIfLanAndNotExcluded(address); |
| | 908 | | } |
| | 909 | |
|
| | 910 | | /// <summary> |
| | 911 | | /// Check if the address is in the LAN and not excluded. |
| | 912 | | /// </summary> |
| | 913 | | /// <param name="address">The IP address to check. The caller should make sure this is not an IPv4MappedToIPv6 addre |
| | 914 | | /// <returns>Boolean indicates whether the address is in LAN.</returns> |
| | 915 | | private bool CheckIfLanAndNotExcluded(IPAddress address) |
| | 916 | | { |
| 376 | 917 | | foreach (var lanSubnet in _lanSubnets) |
| | 918 | | { |
| 135 | 919 | | if (lanSubnet.Contains(address)) |
| | 920 | | { |
| 82 | 921 | | foreach (var excludedSubnet in _excludedSubnets) |
| | 922 | | { |
| 4 | 923 | | if (excludedSubnet.Contains(address)) |
| | 924 | | { |
| 2 | 925 | | return false; |
| | 926 | | } |
| | 927 | | } |
| | 928 | |
|
| 36 | 929 | | return true; |
| | 930 | | } |
| | 931 | | } |
| | 932 | |
|
| 34 | 933 | | return false; |
| 38 | 934 | | } |
| | 935 | |
|
| | 936 | | /// <summary> |
| | 937 | | /// Attempts to match the source against the published server URL overrides. |
| | 938 | | /// </summary> |
| | 939 | | /// <param name="source">IP source address to use.</param> |
| | 940 | | /// <param name="isInExternalSubnet">True if the source is in an external subnet.</param> |
| | 941 | | /// <param name="bindPreference">The published server URL that matches the source address.</param> |
| | 942 | | /// <returns><c>true</c> if a match is found, <c>false</c> otherwise.</returns> |
| | 943 | | private bool MatchesPublishedServerUrl(IPAddress source, bool isInExternalSubnet, out string bindPreference) |
| | 944 | | { |
| 19 | 945 | | bindPreference = string.Empty; |
| 19 | 946 | | int? port = null; |
| | 947 | |
|
| | 948 | | // Only consider subnets including the source IP, preferring specific overrides |
| | 949 | | List<PublishedServerUriOverride> validPublishedServerUrls; |
| 19 | 950 | | if (!isInExternalSubnet) |
| | 951 | | { |
| | 952 | | // Only use matching internal subnets |
| | 953 | | // Prefer more specific (bigger subnet prefix) overrides |
| 10 | 954 | | validPublishedServerUrls = _publishedServerUrls.Where(x => x.IsInternalOverride && NetworkUtils.SubnetContai |
| 10 | 955 | | .OrderByDescending(x => x.Data.Subnet.PrefixLength) |
| 10 | 956 | | .ToList(); |
| | 957 | | } |
| | 958 | | else |
| | 959 | | { |
| | 960 | | // Only use matching external subnets |
| | 961 | | // Prefer more specific (bigger subnet prefix) overrides |
| 9 | 962 | | validPublishedServerUrls = _publishedServerUrls.Where(x => x.IsExternalOverride && NetworkUtils.SubnetContai |
| 9 | 963 | | .OrderByDescending(x => x.Data.Subnet.PrefixLength) |
| 9 | 964 | | .ToList(); |
| | 965 | | } |
| | 966 | |
|
| 44 | 967 | | foreach (var data in validPublishedServerUrls) |
| | 968 | | { |
| | 969 | | // Get interface matching override subnet |
| 6 | 970 | | var intf = _interfaces.OrderBy(x => x.Index).FirstOrDefault(x => NetworkUtils.SubnetContainsAddress(data.Dat |
| | 971 | |
|
| 6 | 972 | | if (intf?.Address is not null |
| 6 | 973 | | || (data.Data.AddressFamily == AddressFamily.InterNetwork && data.Data.Address.Equals(IPAddress.Any)) |
| 6 | 974 | | || (data.Data.AddressFamily == AddressFamily.InterNetworkV6 && data.Data.Address.Equals(IPAddress.IPv6An |
| | 975 | | { |
| | 976 | | // If matching interface is found, use override |
| 6 | 977 | | bindPreference = data.OverrideUri; |
| 6 | 978 | | break; |
| | 979 | | } |
| | 980 | | } |
| | 981 | |
|
| 19 | 982 | | if (string.IsNullOrEmpty(bindPreference)) |
| | 983 | | { |
| 13 | 984 | | _logger.LogDebug("{Source}: No matching bind address override found", source); |
| 13 | 985 | | return false; |
| | 986 | | } |
| | 987 | |
|
| | 988 | | // Handle override specifying port |
| 6 | 989 | | var parts = bindPreference.Split(':'); |
| 6 | 990 | | if (parts.Length > 1) |
| | 991 | | { |
| 5 | 992 | | if (int.TryParse(parts[1], out int p)) |
| | 993 | | { |
| 0 | 994 | | bindPreference = parts[0]; |
| 0 | 995 | | port = p; |
| 0 | 996 | | _logger.LogDebug("{Source}: Matching bind address override found: {Address}:{Port}", source, bindPrefere |
| 0 | 997 | | return true; |
| | 998 | | } |
| | 999 | | } |
| | 1000 | |
|
| 6 | 1001 | | _logger.LogDebug("{Source}: Matching bind address override found: {Address}", source, bindPreference); |
| | 1002 | |
|
| 6 | 1003 | | return true; |
| | 1004 | | } |
| | 1005 | |
|
| | 1006 | | /// <summary> |
| | 1007 | | /// Attempts to match the source against the user defined bind interfaces. |
| | 1008 | | /// </summary> |
| | 1009 | | /// <param name="source">IP source address to use.</param> |
| | 1010 | | /// <param name="isInExternalSubnet">True if the source is in the external subnet.</param> |
| | 1011 | | /// <param name="result">The result, if a match is found.</param> |
| | 1012 | | /// <returns><c>true</c> if a match is found, <c>false</c> otherwise.</returns> |
| | 1013 | | private bool MatchesBindInterface(IPAddress source, bool isInExternalSubnet, out string result) |
| | 1014 | | { |
| 13 | 1015 | | result = string.Empty; |
| | 1016 | |
|
| 13 | 1017 | | int count = _interfaces.Count; |
| 13 | 1018 | | if (count == 1 && (_interfaces[0].Address.Equals(IPAddress.Any) || _interfaces[0].Address.Equals(IPAddress.IPv6A |
| | 1019 | | { |
| | 1020 | | // Ignore IPAny addresses. |
| 0 | 1021 | | count = 0; |
| | 1022 | | } |
| | 1023 | |
|
| 13 | 1024 | | if (count == 0) |
| | 1025 | | { |
| 0 | 1026 | | return false; |
| | 1027 | | } |
| | 1028 | |
|
| 13 | 1029 | | IPAddress? bindAddress = null; |
| 13 | 1030 | | if (isInExternalSubnet) |
| | 1031 | | { |
| 5 | 1032 | | var externalInterfaces = _interfaces.Where(x => !IsInLocalNetwork(x.Address)) |
| 5 | 1033 | | .Where(x => !IsLinkLocalAddress(x.Address)) |
| 5 | 1034 | | .OrderBy(x => x.Index) |
| 5 | 1035 | | .ToList(); |
| 5 | 1036 | | if (externalInterfaces.Count > 0) |
| | 1037 | | { |
| | 1038 | | // Check to see if any of the external bind interfaces are in the same subnet as the source. |
| | 1039 | | // If none exists, this will select the first external interface if there is one. |
| 4 | 1040 | | bindAddress = externalInterfaces |
| 4 | 1041 | | .OrderByDescending(x => NetworkUtils.SubnetContainsAddress(x.Subnet, source)) |
| 4 | 1042 | | .ThenByDescending(x => x.Subnet.PrefixLength) |
| 4 | 1043 | | .ThenBy(x => x.Index) |
| 4 | 1044 | | .Select(x => x.Address) |
| 4 | 1045 | | .First(); |
| | 1046 | |
|
| 4 | 1047 | | result = NetworkUtils.FormatIPString(bindAddress); |
| 4 | 1048 | | _logger.LogDebug("{Source}: External request received, matching external bind address found: {Result}", |
| 4 | 1049 | | return true; |
| | 1050 | | } |
| | 1051 | |
|
| 1 | 1052 | | _logger.LogDebug("{Source}: External request received, no matching external bind address found, trying inter |
| | 1053 | | } |
| | 1054 | | else |
| | 1055 | | { |
| | 1056 | | // Check to see if any of the internal bind interfaces are in the same subnet as the source. |
| | 1057 | | // If none exists, this will select the first internal interface if there is one. |
| 8 | 1058 | | bindAddress = _interfaces.Where(x => IsInLocalNetwork(x.Address)) |
| 8 | 1059 | | .OrderByDescending(x => NetworkUtils.SubnetContainsAddress(x.Subnet, source)) |
| 8 | 1060 | | .ThenByDescending(x => x.Subnet.PrefixLength) |
| 8 | 1061 | | .ThenBy(x => x.Index) |
| 8 | 1062 | | .Select(x => x.Address) |
| 8 | 1063 | | .FirstOrDefault(); |
| | 1064 | |
|
| 8 | 1065 | | if (bindAddress is not null) |
| | 1066 | | { |
| 7 | 1067 | | result = NetworkUtils.FormatIPString(bindAddress); |
| 7 | 1068 | | _logger.LogDebug("{Source}: Internal request received, matching internal bind address found: {Result}", |
| 7 | 1069 | | return true; |
| | 1070 | | } |
| | 1071 | | } |
| | 1072 | |
|
| 2 | 1073 | | return false; |
| | 1074 | | } |
| | 1075 | |
|
| | 1076 | | /// <summary> |
| | 1077 | | /// Attempts to match the source against external interfaces. |
| | 1078 | | /// </summary> |
| | 1079 | | /// <param name="source">IP source address to use.</param> |
| | 1080 | | /// <param name="result">The result, if a match is found.</param> |
| | 1081 | | /// <returns><c>true</c> if a match is found, <c>false</c> otherwise.</returns> |
| | 1082 | | private bool MatchesExternalInterface(IPAddress source, out string result) |
| | 1083 | | { |
| | 1084 | | // Get the first external interface address that isn't a loopback. |
| 1 | 1085 | | var extResult = _interfaces |
| 1 | 1086 | | .Where(p => !IsInLocalNetwork(p.Address)) |
| 1 | 1087 | | .Where(p => p.Address.AddressFamily.Equals(source.AddressFamily)) |
| 1 | 1088 | | .Where(p => !IsLinkLocalAddress(p.Address)) |
| 1 | 1089 | | .OrderBy(x => x.Index).ToArray(); |
| | 1090 | |
|
| | 1091 | | // No external interface found |
| 1 | 1092 | | if (extResult.Length == 0) |
| | 1093 | | { |
| 1 | 1094 | | result = string.Empty; |
| 1 | 1095 | | _logger.LogDebug("{Source}: External request received, but no external interface found. Need to route throug |
| 1 | 1096 | | return false; |
| | 1097 | | } |
| | 1098 | |
|
| | 1099 | | // Does the request originate in one of the interface subnets? |
| | 1100 | | // (For systems with multiple network cards and/or multiple subnets) |
| 0 | 1101 | | foreach (var intf in extResult) |
| | 1102 | | { |
| 0 | 1103 | | if (NetworkUtils.SubnetContainsAddress(intf.Subnet, source)) |
| | 1104 | | { |
| 0 | 1105 | | result = NetworkUtils.FormatIPString(intf.Address); |
| 0 | 1106 | | _logger.LogDebug("{Source}: Found external interface with matching subnet, using it as bind address: {Re |
| 0 | 1107 | | return true; |
| | 1108 | | } |
| | 1109 | | } |
| | 1110 | |
|
| | 1111 | | // Fallback to first external interface. |
| 0 | 1112 | | result = NetworkUtils.FormatIPString(extResult[0].Address); |
| 0 | 1113 | | _logger.LogDebug("{Source}: Using first external interface as bind address: {Result}", source, result); |
| 0 | 1114 | | return true; |
| | 1115 | | } |
| | 1116 | |
|
| | 1117 | | private void PrintNetworkInformation(NetworkConfiguration config, bool debug = true) |
| | 1118 | | { |
| 76 | 1119 | | var logLevel = debug ? LogLevel.Debug : LogLevel.Information; |
| 76 | 1120 | | if (_logger.IsEnabled(logLevel)) |
| | 1121 | | { |
| 21 | 1122 | | _logger.Log(logLevel, "Defined LAN subnets: {Subnets}", _lanSubnets.Select(s => s.Prefix + "/" + s.PrefixLen |
| 21 | 1123 | | _logger.Log(logLevel, "Defined LAN exclusions: {Subnets}", _excludedSubnets.Select(s => s.Prefix + "/" + s.P |
| 21 | 1124 | | _logger.Log(logLevel, "Used LAN subnets: {Subnets}", _lanSubnets.Where(s => !_excludedSubnets.Contains(s)).S |
| 21 | 1125 | | _logger.Log(logLevel, "Filtered interface addresses: {Addresses}", _interfaces.OrderByDescending(x => x.Addr |
| 21 | 1126 | | _logger.Log(logLevel, "Bind Addresses {Addresses}", GetAllBindInterfaces(false).OrderByDescending(x => x.Add |
| 21 | 1127 | | _logger.Log(logLevel, "Remote IP filter is {Type}", config.IsRemoteIPFilterBlacklist ? "Blocklist" : "Allowl |
| 21 | 1128 | | _logger.Log(logLevel, "Filtered subnets: {Subnets}", _remoteAddressFilter.Select(s => s.Prefix + "/" + s.Pre |
| | 1129 | | } |
| 76 | 1130 | | } |
| | 1131 | | } |