jellyfin/Emby.Server.Implementations/HttpServer/Security/AuthService.cs

247 lines
7.8 KiB
C#
Raw Normal View History

2019-11-01 18:38:54 +01:00
#pragma warning disable CS1591
using System;
using System.Linq;
using Emby.Server.Implementations.SocketSharp;
2020-05-20 01:05:17 +02:00
using Jellyfin.Data.Entities;
2020-05-13 04:10:35 +02:00
using Jellyfin.Data.Enums;
using MediaBrowser.Common.Net;
using MediaBrowser.Controller.Authentication;
using MediaBrowser.Controller.Configuration;
2014-07-02 07:16:59 +02:00
using MediaBrowser.Controller.Net;
2014-11-15 03:31:03 +01:00
using MediaBrowser.Controller.Security;
2014-11-15 16:51:49 +01:00
using MediaBrowser.Controller.Session;
2017-09-03 20:38:26 +02:00
using MediaBrowser.Model.Services;
using Microsoft.AspNetCore.Http;
2016-11-04 02:18:51 +01:00
namespace Emby.Server.Implementations.HttpServer.Security
{
public class AuthService : IAuthService
{
private readonly IAuthorizationContext _authorizationContext;
private readonly ISessionManager _sessionManager;
2014-07-08 03:41:03 +02:00
private readonly IServerConfigurationManager _config;
private readonly INetworkManager _networkManager;
2014-07-08 03:41:03 +02:00
public AuthService(
IAuthorizationContext authorizationContext,
IServerConfigurationManager config,
ISessionManager sessionManager,
INetworkManager networkManager)
2014-07-02 07:16:59 +02:00
{
_authorizationContext = authorizationContext;
2014-07-08 03:41:03 +02:00
_config = config;
_sessionManager = sessionManager;
_networkManager = networkManager;
2014-07-02 07:16:59 +02:00
}
public void Authenticate(IRequest request, IAuthenticationAttributes authAttributes)
{
ValidateUser(request, authAttributes);
}
public User Authenticate(HttpRequest request, IAuthenticationAttributes authAttributes)
{
2020-06-06 02:15:56 +02:00
var req = new WebSocketSharpRequest(request, null, request.Path);
var user = ValidateUser(req, authAttributes);
return user;
}
public AuthorizationInfo Authenticate(HttpRequest request)
{
var auth = _authorizationContext.GetAuthorizationInfo(request);
if (auth?.User == null)
{
return null;
}
if (auth.User.HasPermission(PermissionKind.IsDisabled))
{
throw new SecurityException("User account has been disabled.");
}
return auth;
}
private User ValidateUser(IRequest request, IAuthenticationAttributes authAttributes)
{
2014-10-07 01:58:46 +02:00
// This code is executed before the service
var auth = _authorizationContext.GetAuthorizationInfo(request);
2014-07-02 07:16:59 +02:00
if (!IsExemptFromAuthenticationToken(authAttributes, request))
2014-07-02 07:16:59 +02:00
{
2018-12-11 01:27:54 +01:00
ValidateSecurityToken(request, auth.Token);
2014-07-08 03:41:03 +02:00
}
2014-07-02 07:16:59 +02:00
if (authAttributes.AllowLocalOnly && !request.IsLocal)
2018-09-12 19:26:21 +02:00
{
throw new SecurityException("Operation not found.");
}
2014-07-02 07:16:59 +02:00
2018-09-12 19:26:21 +02:00
var user = auth.User;
2019-09-20 12:42:08 +02:00
if (user == null && auth.UserId != Guid.Empty)
2014-07-15 03:25:58 +02:00
{
throw new AuthenticationException("User with Id " + auth.UserId + " not found");
2014-07-15 03:25:58 +02:00
}
if (user != null)
2014-07-08 03:41:03 +02:00
{
ValidateUserAccess(user, request, authAttributes);
2014-07-02 07:16:59 +02:00
}
2014-07-08 03:41:03 +02:00
2015-02-07 04:25:23 +01:00
var info = GetTokenInfo(request);
2015-02-06 06:39:07 +01:00
if (!IsExemptFromRoles(auth, authAttributes, request, info))
2014-11-15 03:31:03 +01:00
{
var roles = authAttributes.GetRoles();
2014-11-15 03:31:03 +01:00
ValidateRoles(roles, user);
}
2014-11-15 16:51:49 +01:00
2018-09-12 19:26:21 +02:00
if (!string.IsNullOrEmpty(auth.DeviceId) &&
!string.IsNullOrEmpty(auth.Client) &&
!string.IsNullOrEmpty(auth.Device))
2014-11-15 16:51:49 +01:00
{
2020-05-13 04:10:35 +02:00
_sessionManager.LogSessionActivity(
auth.Client,
2014-11-15 16:51:49 +01:00
auth.Version,
auth.DeviceId,
auth.Device,
request.RemoteIp,
user);
}
return user;
2014-11-15 03:31:03 +01:00
}
private void ValidateUserAccess(
User user,
IRequest request,
IAuthenticationAttributes authAttributes)
2014-12-29 21:18:48 +01:00
{
2020-05-13 04:10:35 +02:00
if (user.HasPermission(PermissionKind.IsDisabled))
2014-12-29 21:18:48 +01:00
{
throw new SecurityException("User account has been disabled.");
2014-12-29 21:18:48 +01:00
}
2020-05-13 04:10:35 +02:00
if (!user.HasPermission(PermissionKind.EnableRemoteAccess) && !_networkManager.IsInLocalNetwork(request.RemoteIp))
2018-09-12 19:26:21 +02:00
{
throw new SecurityException("User account has been disabled.");
2018-09-12 19:26:21 +02:00
}
2020-05-13 04:10:35 +02:00
if (!user.HasPermission(PermissionKind.IsAdministrator)
2020-05-20 01:05:17 +02:00
&& !authAttributes.EscapeParentalControl
&& !user.IsParentalScheduleAllowed())
2014-12-29 21:18:48 +01:00
{
request.Response.Headers.Add("X-Application-Error-Code", "ParentalControl");
2014-12-29 21:18:48 +01:00
throw new SecurityException("This user account is not allowed access at this time.");
2014-12-29 21:18:48 +01:00
}
}
private bool IsExemptFromAuthenticationToken(IAuthenticationAttributes authAttribtues, IRequest request)
2014-11-15 03:31:03 +01:00
{
2016-02-18 19:27:46 +01:00
if (!_config.Configuration.IsStartupWizardCompleted && authAttribtues.AllowBeforeStartupWizard)
2014-11-15 03:31:03 +01:00
{
return true;
}
2017-09-03 20:38:26 +02:00
if (authAttribtues.AllowLocal && request.IsLocal)
{
return true;
}
2020-06-01 20:42:59 +02:00
2018-09-12 19:26:21 +02:00
if (authAttribtues.AllowLocalOnly && request.IsLocal)
{
return true;
}
2017-09-03 20:38:26 +02:00
2020-06-01 20:42:59 +02:00
if (authAttribtues.IgnoreLegacyAuth)
{
return true;
}
2016-02-18 19:27:46 +01:00
return false;
2014-11-15 03:31:03 +01:00
}
2017-09-03 20:38:26 +02:00
private bool IsExemptFromRoles(AuthorizationInfo auth, IAuthenticationAttributes authAttribtues, IRequest request, AuthenticationInfo tokenInfo)
2014-11-15 03:31:03 +01:00
{
2016-02-18 19:27:46 +01:00
if (!_config.Configuration.IsStartupWizardCompleted && authAttribtues.AllowBeforeStartupWizard)
2014-11-15 03:31:03 +01:00
{
return true;
}
2017-09-03 20:38:26 +02:00
if (authAttribtues.AllowLocal && request.IsLocal)
{
return true;
}
2018-09-12 19:26:21 +02:00
if (authAttribtues.AllowLocalOnly && request.IsLocal)
{
return true;
}
if (string.IsNullOrEmpty(auth.Token))
2015-02-06 06:39:07 +01:00
{
return true;
}
2018-09-12 19:26:21 +02:00
if (tokenInfo != null && tokenInfo.UserId.Equals(Guid.Empty))
2015-02-06 06:39:07 +01:00
{
return true;
}
2014-11-15 03:31:03 +01:00
return false;
}
2014-10-29 00:17:55 +01:00
private static void ValidateRoles(string[] roles, User user)
2014-11-15 03:31:03 +01:00
{
2014-09-14 19:42:23 +02:00
if (roles.Contains("admin", StringComparer.OrdinalIgnoreCase))
{
2020-05-13 04:10:35 +02:00
if (user == null || !user.HasPermission(PermissionKind.IsAdministrator))
2014-09-14 19:42:23 +02:00
{
throw new SecurityException("User does not have admin access.");
2014-09-14 19:42:23 +02:00
}
}
2014-11-15 03:31:03 +01:00
if (roles.Contains("delete", StringComparer.OrdinalIgnoreCase))
{
2020-05-13 04:10:35 +02:00
if (user == null || !user.HasPermission(PermissionKind.EnableContentDeletion))
2014-11-15 03:31:03 +01:00
{
throw new SecurityException("User does not have delete access.");
2014-11-15 03:31:03 +01:00
}
}
2015-02-06 06:39:07 +01:00
if (roles.Contains("download", StringComparer.OrdinalIgnoreCase))
{
2020-05-13 04:10:35 +02:00
if (user == null || !user.HasPermission(PermissionKind.EnableContentDownloading))
2015-02-06 06:39:07 +01:00
{
throw new SecurityException("User does not have download access.");
2015-02-06 06:39:07 +01:00
}
}
}
private static AuthenticationInfo GetTokenInfo(IRequest request)
2015-02-07 04:25:23 +01:00
{
request.Items.TryGetValue("OriginalAuthenticationInfo", out var info);
2015-02-07 04:25:23 +01:00
return info as AuthenticationInfo;
}
2017-09-03 20:38:26 +02:00
private void ValidateSecurityToken(IRequest request, string token)
{
2018-09-12 19:26:21 +02:00
if (string.IsNullOrEmpty(token))
{
throw new AuthenticationException("Access token is required.");
}
2015-02-07 04:25:23 +01:00
var info = GetTokenInfo(request);
2014-11-15 03:31:03 +01:00
if (info == null)
{
throw new AuthenticationException("Access token is invalid or expired.");
}
}
}
}