using System; using System.IO; using System.Xml; using System.Xml.Serialization; using Emby.Server.Implementations; using MediaBrowser.Common.Net; using Microsoft.Extensions.Logging; namespace Jellyfin.Server.Migrations.PreStartupRoutines; /// public class MigrateNetworkConfiguration : IMigrationRoutine { private readonly ServerApplicationPaths _applicationPaths; private readonly ILogger _logger; /// /// Initializes a new instance of the class. /// /// An instance of . /// An instance of the interface. public MigrateNetworkConfiguration(ServerApplicationPaths applicationPaths, ILoggerFactory loggerFactory) { _applicationPaths = applicationPaths; _logger = loggerFactory.CreateLogger(); } /// public Guid Id => Guid.Parse("4FB5C950-1991-11EE-9B4B-0800200C9A66"); /// public string Name => nameof(MigrateNetworkConfiguration); /// public bool PerformOnNewInstall => false; /// public void Perform() { string path = Path.Combine(_applicationPaths.ConfigurationDirectoryPath, "network.xml"); var oldNetworkConfigSerializer = new XmlSerializer(typeof(OldNetworkConfiguration), new XmlRootAttribute("NetworkConfiguration")); OldNetworkConfiguration? oldNetworkConfiguration = null; try { using var xmlReader = XmlReader.Create(path); oldNetworkConfiguration = (OldNetworkConfiguration?)oldNetworkConfigSerializer.Deserialize(xmlReader); } catch (InvalidOperationException ex) { _logger.LogError(ex, "Migrate NetworkConfiguration deserialize Invalid Operation error"); } catch (Exception ex) { _logger.LogError(ex, "Migrate NetworkConfiguration deserialize error"); } if (oldNetworkConfiguration is null) { return; } // Migrate network config values to new config schema var networkConfiguration = new NetworkConfiguration { AutoDiscovery = oldNetworkConfiguration.AutoDiscovery, BaseUrl = oldNetworkConfiguration.BaseUrl, CertificatePassword = oldNetworkConfiguration.CertificatePassword, CertificatePath = oldNetworkConfiguration.CertificatePath, EnableHttps = oldNetworkConfiguration.EnableHttps, EnableIPv4 = oldNetworkConfiguration.EnableIPV4, EnableIPv6 = oldNetworkConfiguration.EnableIPV6, EnablePublishedServerUriByRequest = oldNetworkConfiguration.EnablePublishedServerUriByRequest, EnableRemoteAccess = oldNetworkConfiguration.EnableRemoteAccess, EnableUPnP = oldNetworkConfiguration.EnableUPnP, IgnoreVirtualInterfaces = oldNetworkConfiguration.IgnoreVirtualInterfaces, InternalHttpPort = oldNetworkConfiguration.HttpServerPortNumber, InternalHttpsPort = oldNetworkConfiguration.HttpsPortNumber, IsRemoteIPFilterBlacklist = oldNetworkConfiguration.IsRemoteIPFilterBlacklist, KnownProxies = oldNetworkConfiguration.KnownProxies, LocalNetworkAddresses = oldNetworkConfiguration.LocalNetworkAddresses, LocalNetworkSubnets = oldNetworkConfiguration.LocalNetworkSubnets, PublicHttpPort = oldNetworkConfiguration.PublicPort, PublicHttpsPort = oldNetworkConfiguration.PublicHttpsPort, PublishedServerUriBySubnet = oldNetworkConfiguration.PublishedServerUriBySubnet, RemoteIPFilter = oldNetworkConfiguration.RemoteIPFilter, RequireHttps = oldNetworkConfiguration.RequireHttps }; // Migrate old virtual interface name schema var oldVirtualInterfaceNames = oldNetworkConfiguration.VirtualInterfaceNames; if (oldVirtualInterfaceNames.Equals("vEthernet*", StringComparison.OrdinalIgnoreCase)) { networkConfiguration.VirtualInterfaceNames = new string[] { "veth" }; } else { networkConfiguration.VirtualInterfaceNames = oldVirtualInterfaceNames.Replace("*", string.Empty, StringComparison.OrdinalIgnoreCase).Split(','); } var networkConfigSerializer = new XmlSerializer(typeof(NetworkConfiguration)); var xmlWriterSettings = new XmlWriterSettings { Indent = true }; using var xmlWriter = XmlWriter.Create(path, xmlWriterSettings); networkConfigSerializer.Serialize(xmlWriter, networkConfiguration); } #pragma warning disable public sealed class OldNetworkConfiguration { public const int DefaultHttpPort = 8096; public const int DefaultHttpsPort = 8920; private string _baseUrl = string.Empty; public bool RequireHttps { get; set; } public string CertificatePath { get; set; } = string.Empty; public string CertificatePassword { get; set; } = string.Empty; public string BaseUrl { get => _baseUrl; set { // Normalize the start of the string if (string.IsNullOrWhiteSpace(value)) { // If baseUrl is empty, set an empty prefix string _baseUrl = string.Empty; return; } if (value[0] != '/') { // If baseUrl was not configured with a leading slash, append one for consistency value = "/" + value; } // Normalize the end of the string if (value[^1] == '/') { // If baseUrl was configured with a trailing slash, remove it for consistency value = value.Remove(value.Length - 1); } _baseUrl = value; } } public int PublicHttpsPort { get; set; } = DefaultHttpsPort; public int HttpServerPortNumber { get; set; } = DefaultHttpPort; public int HttpsPortNumber { get; set; } = DefaultHttpsPort; public bool EnableHttps { get; set; } public int PublicPort { get; set; } = DefaultHttpPort; public bool UPnPCreateHttpPortMap { get; set; } public string UDPPortRange { get; set; } = string.Empty; public bool EnableIPV6 { get; set; } public bool EnableIPV4 { get; set; } = true; public bool EnableSSDPTracing { get; set; } public string SSDPTracingFilter { get; set; } = string.Empty; public int UDPSendCount { get; set; } = 2; public int UDPSendDelay { get; set; } = 100; public bool IgnoreVirtualInterfaces { get; set; } = true; public string VirtualInterfaceNames { get; set; } = "vEthernet*"; public int GatewayMonitorPeriod { get; set; } = 60; public bool EnableMultiSocketBinding { get; } = true; public bool TrustAllIP6Interfaces { get; set; } public string HDHomerunPortRange { get; set; } = string.Empty; public string[] PublishedServerUriBySubnet { get; set; } = Array.Empty(); public bool AutoDiscoveryTracing { get; set; } public bool AutoDiscovery { get; set; } = true; public string[] RemoteIPFilter { get; set; } = Array.Empty(); public bool IsRemoteIPFilterBlacklist { get; set; } public bool EnableUPnP { get; set; } public bool EnableRemoteAccess { get; set; } = true; public string[] LocalNetworkSubnets { get; set; } = Array.Empty(); public string[] LocalNetworkAddresses { get; set; } = Array.Empty(); public string[] KnownProxies { get; set; } = Array.Empty(); public bool EnablePublishedServerUriByRequest { get; set; } = false; } }