jellyfin/Jellyfin.Server/Middleware/IpBasedAccessValidationMiddleware.cs

78 lines
2.9 KiB
C#
Raw Normal View History

2020-09-03 11:32:22 +02:00
using System.Linq;
using System.Threading.Tasks;
using MediaBrowser.Common.Extensions;
using MediaBrowser.Common.Net;
using MediaBrowser.Controller.Configuration;
using Microsoft.AspNetCore.Http;
2020-09-12 17:41:37 +02:00
using NetworkCollection;
2020-09-03 11:32:22 +02:00
namespace Jellyfin.Server.Middleware
{
/// <summary>
/// Validates the IP of requests coming from local networks wrt. remote access.
/// </summary>
public class IpBasedAccessValidationMiddleware
{
private readonly RequestDelegate _next;
/// <summary>
/// Initializes a new instance of the <see cref="IpBasedAccessValidationMiddleware"/> class.
/// </summary>
/// <param name="next">The next delegate in the pipeline.</param>
public IpBasedAccessValidationMiddleware(RequestDelegate next)
{
_next = next;
}
/// <summary>
/// Executes the middleware action.
/// </summary>
/// <param name="httpContext">The current HTTP context.</param>
/// <param name="networkManager">The network manager.</param>
/// <param name="serverConfigurationManager">The server configuration manager.</param>
/// <returns>The async task.</returns>
public async Task Invoke(HttpContext httpContext, INetworkManager networkManager, IServerConfigurationManager serverConfigurationManager)
{
2020-09-12 18:21:03 +02:00
if (httpContext.Connection.RemoteIpAddress == null)
2020-09-03 11:32:22 +02:00
{
2020-09-12 18:21:03 +02:00
// Running locally.
2020-09-03 11:32:22 +02:00
await _next(httpContext).ConfigureAwait(false);
return;
}
2020-09-12 17:41:37 +02:00
var remoteIp = httpContext.Connection.RemoteIpAddress;
2020-09-03 11:32:22 +02:00
if (serverConfigurationManager.Configuration.EnableRemoteAccess)
{
2020-09-12 17:41:37 +02:00
// Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely.
// If left blank, all remote addresses will be allowed.
NetCollection remoteAddressFilter = networkManager.RemoteAddressFilter;
2020-09-03 11:32:22 +02:00
2020-09-12 17:41:37 +02:00
if (remoteAddressFilter.Count > 0 && !networkManager.IsInLocalNetwork(remoteIp))
2020-09-03 11:32:22 +02:00
{
2020-09-12 17:41:37 +02:00
// remoteAddressFilter is a whitelist or blacklist.
bool isListed = remoteAddressFilter.Contains(remoteIp);
if (!serverConfigurationManager.Configuration.IsRemoteIPFilterBlacklist)
2020-09-03 11:32:22 +02:00
{
2020-09-12 17:41:37 +02:00
// Black list, so flip over.
isListed = !isListed;
2020-09-03 11:32:22 +02:00
}
2020-09-12 17:41:37 +02:00
if (!isListed)
2020-09-03 11:32:22 +02:00
{
2020-09-12 17:41:37 +02:00
// If your name isn't on the list, you arn't coming in.
return;
2020-09-03 11:32:22 +02:00
}
}
}
2020-09-12 17:41:37 +02:00
else if (!networkManager.IsInLocalNetwork(remoteIp))
2020-09-03 11:32:22 +02:00
{
2020-09-12 17:41:37 +02:00
// Remote not enabled. So everyone should be LAN.
return;
2020-09-03 11:32:22 +02:00
}
await _next(httpContext).ConfigureAwait(false);
}
}
}