mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-15 15:48:03 +00:00
Fix missing logging of connections by disallowed IPs (#14011)
This commit is contained in:
@@ -12,7 +12,7 @@ namespace MediaBrowser.Common.Extensions
|
||||
/// Checks the origin of the HTTP context.
|
||||
/// </summary>
|
||||
/// <param name="context">The incoming HTTP context.</param>
|
||||
/// <returns><c>true</c> if the request is coming from LAN, <c>false</c> otherwise.</returns>
|
||||
/// <returns><c>true</c> if the request is coming from the same machine as is running the server, <c>false</c> otherwise.</returns>
|
||||
public static bool IsLocal(this HttpContext context)
|
||||
{
|
||||
return (context.Connection.LocalIpAddress is null
|
||||
|
||||
@@ -127,7 +127,7 @@ namespace MediaBrowser.Common.Net
|
||||
/// Checks if <paramref name="remoteIP"/> has access to the server.
|
||||
/// </summary>
|
||||
/// <param name="remoteIP">IP address of the client.</param>
|
||||
/// <returns><b>True</b> if it has access, otherwise <b>false</b>.</returns>
|
||||
bool HasRemoteAccess(IPAddress remoteIP);
|
||||
/// <returns>The result of evaluating the access policy, <c>Allow</c> if it should be allowed.</returns>
|
||||
RemoteAccessPolicyResult ShouldAllowServerAccess(IPAddress remoteIP);
|
||||
}
|
||||
}
|
||||
|
||||
29
MediaBrowser.Common/Net/RemoteAccessPolicyResult.cs
Normal file
29
MediaBrowser.Common/Net/RemoteAccessPolicyResult.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Common.Net;
|
||||
|
||||
/// <summary>
|
||||
/// Result of <see cref="INetworkManager.ShouldAllowServerAccess" />.
|
||||
/// </summary>
|
||||
public enum RemoteAccessPolicyResult
|
||||
{
|
||||
/// <summary>
|
||||
/// The connection should be allowed.
|
||||
/// </summary>
|
||||
Allow,
|
||||
|
||||
/// <summary>
|
||||
/// The connection should be rejected since it is not from a local IP and remote access is disabled.
|
||||
/// </summary>
|
||||
RejectDueToRemoteAccessDisabled,
|
||||
|
||||
/// <summary>
|
||||
/// The connection should be rejected since it is from a blocklisted IP.
|
||||
/// </summary>
|
||||
RejectDueToIPBlocklist,
|
||||
|
||||
/// <summary>
|
||||
/// The connection should be rejected since it is from a remote IP that is not in the allowlist.
|
||||
/// </summary>
|
||||
RejectDueToNotAllowlistedRemoteIP,
|
||||
}
|
||||
Reference in New Issue
Block a user