jellyfin/Emby.Server.Implementations/EntryPoints/ExternalPortForwarding.cs

231 lines
7.1 KiB
C#
Raw Normal View History

2019-11-01 18:38:54 +01:00
#pragma warning disable CS1591
2019-12-11 00:13:57 +01:00
#pragma warning disable SA1600
2019-11-01 18:38:54 +01:00
using System;
2014-08-21 17:55:35 +02:00
using System.Collections.Generic;
2015-04-29 20:48:34 +02:00
using System.Net;
2019-11-01 21:22:35 +01:00
using System.Text;
using System.Threading;
using System.Threading.Tasks;
2016-11-11 05:25:21 +01:00
using MediaBrowser.Controller;
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Plugins;
2016-10-29 20:46:56 +02:00
using MediaBrowser.Model.Dlna;
2016-09-11 09:33:53 +02:00
using MediaBrowser.Model.Events;
using Microsoft.Extensions.Logging;
2016-11-11 05:25:21 +01:00
using Mono.Nat;
2014-02-26 05:38:21 +01:00
namespace Emby.Server.Implementations.EntryPoints
2014-02-26 05:38:21 +01:00
{
2019-11-01 21:25:37 +01:00
/// <summary>
/// Server entrypoint handling external port forwarding.
/// </summary>
2014-02-26 05:38:21 +01:00
public class ExternalPortForwarding : IServerEntryPoint
{
private readonly IServerApplicationHost _appHost;
private readonly ILogger _logger;
private readonly IServerConfigurationManager _config;
2016-09-11 09:33:53 +02:00
private readonly IDeviceDiscovery _deviceDiscovery;
2016-04-04 21:07:43 +02:00
private readonly object _createdRulesLock = new object();
2019-11-01 21:22:35 +01:00
private List<IPEndPoint> _createdRules = new List<IPEndPoint>();
2019-11-01 21:25:37 +01:00
private Timer _timer;
2019-11-01 21:22:35 +01:00
private string _lastConfigIdentifier;
private bool _disposed = false;
2019-11-01 21:25:37 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="ExternalPortForwarding"/> class.
/// </summary>
/// <param name="logger">The logger.</param>
/// <param name="appHost">The application host.</param>
/// <param name="config">The configuration manager.</param>
/// <param name="deviceDiscovery">The device discovery.</param>
2019-11-01 21:22:35 +01:00
public ExternalPortForwarding(
ILogger<ExternalPortForwarding> logger,
IServerApplicationHost appHost,
IServerConfigurationManager config,
IDeviceDiscovery deviceDiscovery)
2014-02-26 05:38:21 +01:00
{
2019-11-01 21:22:35 +01:00
_logger = logger;
2014-02-26 05:38:21 +01:00
_appHost = appHost;
_config = config;
2016-09-11 09:33:53 +02:00
_deviceDiscovery = deviceDiscovery;
2018-09-12 19:26:21 +02:00
}
2016-04-04 21:07:43 +02:00
private string GetConfigIdentifier()
{
2019-11-01 21:22:35 +01:00
const char Separator = '|';
2016-04-04 21:07:43 +02:00
var config = _config.Configuration;
2019-11-01 21:22:35 +01:00
return new StringBuilder(32)
.Append(config.EnableUPnP).Append(Separator)
.Append(config.PublicPort).Append(Separator)
.Append(_appHost.HttpPort).Append(Separator)
.Append(_appHost.HttpsPort).Append(Separator)
.Append(_appHost.EnableHttps).Append(Separator)
.Append(config.EnableRemoteAccess).Append(Separator)
.ToString();
2015-01-19 05:29:57 +01:00
}
2014-02-26 05:38:21 +01:00
2019-11-02 10:31:14 +01:00
private void OnConfigurationUpdated(object sender, EventArgs e)
2014-02-26 05:38:21 +01:00
{
2016-04-04 21:07:43 +02:00
if (!string.Equals(_lastConfigIdentifier, GetConfigIdentifier(), StringComparison.OrdinalIgnoreCase))
{
2019-11-01 21:22:35 +01:00
Stop();
2019-11-02 10:31:14 +01:00
Start();
2016-04-04 21:07:43 +02:00
}
2016-03-31 21:22:07 +02:00
}
2014-08-21 17:55:35 +02:00
2019-11-01 21:25:37 +01:00
/// <inheritdoc />
2019-01-27 15:40:37 +01:00
public Task RunAsync()
2016-03-31 21:22:07 +02:00
{
2019-11-02 10:31:14 +01:00
Start();
2016-04-04 21:07:43 +02:00
2019-11-01 21:22:35 +01:00
_config.ConfigurationUpdated += OnConfigurationUpdated;
2019-01-27 15:40:37 +01:00
return Task.CompletedTask;
2014-02-26 05:38:21 +01:00
}
2016-04-04 21:07:43 +02:00
private void Start()
2014-02-26 05:38:21 +01:00
{
2019-11-02 10:31:14 +01:00
if (!_config.Configuration.EnableUPnP || !_config.Configuration.EnableRemoteAccess)
{
return;
}
_logger.LogDebug("Starting NAT discovery");
2019-11-01 21:22:35 +01:00
NatUtility.DeviceFound += OnNatUtilityDeviceFound;
NatUtility.StartDiscovery();
2019-02-05 09:49:46 +01:00
_timer = new Timer(ClearCreatedRules, null, TimeSpan.FromMinutes(10), TimeSpan.FromMinutes(10));
2016-04-04 21:07:43 +02:00
2019-11-01 21:22:35 +01:00
_deviceDiscovery.DeviceDiscovered += OnDeviceDiscoveryDeviceDiscovered;
2016-04-04 21:07:43 +02:00
_lastConfigIdentifier = GetConfigIdentifier();
}
2019-11-01 21:22:35 +01:00
private void Stop()
2016-04-04 21:07:43 +02:00
{
2019-11-01 21:22:35 +01:00
_logger.LogDebug("Stopping NAT discovery");
2016-09-11 09:33:53 +02:00
2019-11-01 21:22:35 +01:00
NatUtility.StopDiscovery();
NatUtility.DeviceFound -= OnNatUtilityDeviceFound;
2016-10-28 03:07:40 +02:00
2019-11-01 21:22:35 +01:00
_timer?.Dispose();
2016-10-14 18:22:04 +02:00
2019-11-01 21:22:35 +01:00
_deviceDiscovery.DeviceDiscovered -= OnDeviceDiscoveryDeviceDiscovered;
2016-04-04 21:07:43 +02:00
}
2016-09-11 09:33:53 +02:00
private void ClearCreatedRules(object state)
{
lock (_createdRulesLock)
2017-02-22 21:58:02 +01:00
{
_createdRules.Clear();
}
2016-09-11 09:33:53 +02:00
}
2019-11-01 21:22:35 +01:00
private void OnDeviceDiscoveryDeviceDiscovered(object sender, GenericEventArgs<UpnpDeviceInfo> e)
2016-04-04 21:07:43 +02:00
{
2019-11-01 21:22:35 +01:00
NatUtility.Search(e.Argument.LocalIpAddress, NatProtocol.Upnp);
}
2017-01-02 20:36:54 +01:00
2019-11-01 21:22:35 +01:00
private void OnNatUtilityDeviceFound(object sender, DeviceEventArgs e)
{
2016-04-04 21:07:43 +02:00
try
2014-02-26 05:38:21 +01:00
{
2016-04-04 21:07:43 +02:00
var device = e.Device;
CreateRules(device);
}
2019-11-01 21:22:35 +01:00
catch (Exception ex)
2016-04-04 21:07:43 +02:00
{
2019-11-01 21:22:35 +01:00
_logger.LogError(ex, "Error creating port forwarding rules");
2016-03-31 20:46:03 +02:00
}
2014-02-26 05:38:21 +01:00
}
2017-01-24 20:54:18 +01:00
private async void CreateRules(INatDevice device)
{
2017-01-02 20:36:54 +01:00
if (_disposed)
{
throw new ObjectDisposedException(GetType().Name);
2017-01-02 20:36:54 +01:00
}
2016-03-31 20:46:03 +02:00
// On some systems the device discovered event seems to fire repeatedly
// This check will help ensure we're not trying to port map the same device over and over
2019-11-01 21:22:35 +01:00
var address = device.DeviceEndpoint;
2016-04-04 21:07:43 +02:00
lock (_createdRulesLock)
2016-04-04 21:07:43 +02:00
{
2019-11-01 21:22:35 +01:00
if (!_createdRules.Contains(address))
2017-01-24 20:54:18 +01:00
{
2019-11-01 21:22:35 +01:00
_createdRules.Add(address);
2017-01-24 20:54:18 +01:00
}
2017-02-22 21:58:02 +01:00
else
{
return;
}
}
2018-09-12 19:26:21 +02:00
try
2017-02-22 21:58:02 +01:00
{
2018-09-12 19:26:21 +02:00
await CreatePortMap(device, _appHost.HttpPort, _config.Configuration.PublicPort).ConfigureAwait(false);
}
catch (Exception ex)
{
2018-12-20 13:11:26 +01:00
_logger.LogError(ex, "Error creating http port map");
2018-09-12 19:26:21 +02:00
return;
2016-04-04 21:07:43 +02:00
}
2016-10-28 03:07:40 +02:00
try
2014-02-26 05:38:21 +01:00
{
2018-09-12 19:26:21 +02:00
await CreatePortMap(device, _appHost.HttpsPort, _config.Configuration.PublicHttpsPort).ConfigureAwait(false);
2016-10-28 03:07:40 +02:00
}
catch (Exception ex)
{
2018-12-20 13:11:26 +01:00
_logger.LogError(ex, "Error creating https port map");
2016-10-28 03:07:40 +02:00
}
2016-04-04 21:07:43 +02:00
}
2019-11-01 21:22:35 +01:00
private Task<Mapping> CreatePortMap(INatDevice device, int privatePort, int publicPort)
2016-04-04 21:07:43 +02:00
{
2019-11-01 21:22:35 +01:00
_logger.LogDebug(
"Creating port map on local port {0} to public port {1} with device {2}",
privatePort,
publicPort,
device.DeviceEndpoint);
return device.CreatePortMapAsync(
new Mapping(Protocol.Tcp, privatePort, publicPort, 0, _appHost.Name));
2014-02-26 05:38:21 +01:00
}
2019-11-01 21:22:35 +01:00
/// <inheritdoc />
2016-03-31 20:46:03 +02:00
public void Dispose()
2014-02-26 05:38:21 +01:00
{
2019-11-01 21:22:35 +01:00
Dispose(true);
GC.SuppressFinalize(this);
2016-03-31 20:46:03 +02:00
}
2014-02-26 05:38:21 +01:00
2019-11-01 21:22:35 +01:00
/// <summary>
/// Releases unmanaged and - optionally - managed resources.
/// </summary>
/// <param name="dispose"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
protected virtual void Dispose(bool dispose)
2016-03-31 20:46:03 +02:00
{
2019-11-01 21:22:35 +01:00
if (_disposed)
2014-02-26 05:38:21 +01:00
{
2019-11-01 21:22:35 +01:00
return;
2016-04-04 21:07:43 +02:00
}
2019-11-02 10:31:14 +01:00
_config.ConfigurationUpdated -= OnConfigurationUpdated;
2019-11-01 21:22:35 +01:00
Stop();
2018-09-12 19:26:21 +02:00
2019-11-01 21:22:35 +01:00
_timer = null;
2018-09-12 19:26:21 +02:00
2019-11-01 21:22:35 +01:00
_disposed = true;
2014-02-26 05:38:21 +01:00
}
}
2018-12-28 16:48:26 +01:00
}