2019-01-06 20:50:43 +00:00
|
|
|
using MediaBrowser.Controller.Configuration;
|
2014-11-03 03:38:43 +00:00
|
|
|
using MediaBrowser.Controller.Connect;
|
2014-12-29 20:18:48 +00:00
|
|
|
using MediaBrowser.Controller.Devices;
|
2014-11-15 02:31:03 +00:00
|
|
|
using MediaBrowser.Controller.Entities;
|
2014-07-02 05:16:59 +00:00
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
using MediaBrowser.Controller.Net;
|
2014-11-15 02:31:03 +00:00
|
|
|
using MediaBrowser.Controller.Security;
|
2014-11-15 15:51:49 +00:00
|
|
|
using MediaBrowser.Controller.Session;
|
2014-07-02 04:57:18 +00:00
|
|
|
using System;
|
|
|
|
using System.Linq;
|
2017-09-03 18:38:26 +00:00
|
|
|
using MediaBrowser.Model.Services;
|
2018-09-12 17:26:21 +00:00
|
|
|
using MediaBrowser.Common.Net;
|
2014-07-02 04:57:18 +00:00
|
|
|
|
2016-11-04 01:18:51 +00:00
|
|
|
namespace Emby.Server.Implementations.HttpServer.Security
|
2014-07-02 04:57:18 +00:00
|
|
|
{
|
|
|
|
public class AuthService : IAuthService
|
|
|
|
{
|
2014-07-08 01:41:03 +00:00
|
|
|
private readonly IServerConfigurationManager _config;
|
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public AuthService(IUserManager userManager, IAuthorizationContext authorizationContext, IServerConfigurationManager config, ISessionManager sessionManager, INetworkManager networkManager)
|
2014-07-02 05:16:59 +00:00
|
|
|
{
|
|
|
|
AuthorizationContext = authorizationContext;
|
2014-07-08 01:41:03 +00:00
|
|
|
_config = config;
|
2014-11-15 15:51:49 +00:00
|
|
|
SessionManager = sessionManager;
|
2014-07-02 05:16:59 +00:00
|
|
|
UserManager = userManager;
|
2018-09-12 17:26:21 +00:00
|
|
|
NetworkManager = networkManager;
|
2014-07-02 05:16:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public IUserManager UserManager { get; private set; }
|
|
|
|
public IAuthorizationContext AuthorizationContext { get; private set; }
|
2014-11-15 15:51:49 +00:00
|
|
|
public ISessionManager SessionManager { get; private set; }
|
2018-09-12 17:26:21 +00:00
|
|
|
public INetworkManager NetworkManager { get; private set; }
|
2014-07-02 05:16:59 +00:00
|
|
|
|
2014-07-02 04:57:18 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Redirect the client to a specific URL if authentication failed.
|
|
|
|
/// If this property is null, simply `401 Unauthorized` is returned.
|
|
|
|
/// </summary>
|
|
|
|
public string HtmlRedirect { get; set; }
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
public void Authenticate(IRequest request, IAuthenticationAttributes authAttribtues)
|
2014-07-02 04:57:18 +00:00
|
|
|
{
|
2014-11-15 02:31:03 +00:00
|
|
|
ValidateUser(request, authAttribtues);
|
2014-07-02 04:57:18 +00:00
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
private void ValidateUser(IRequest request, IAuthenticationAttributes authAttribtues)
|
2014-07-02 04:57:18 +00:00
|
|
|
{
|
2014-10-06 23:58:46 +00:00
|
|
|
// This code is executed before the service
|
2014-11-15 02:31:03 +00:00
|
|
|
var auth = AuthorizationContext.GetAuthorizationInfo(request);
|
2014-07-02 05:16:59 +00:00
|
|
|
|
2017-09-03 18:38:26 +00:00
|
|
|
if (!IsExemptFromAuthenticationToken(auth, authAttribtues, request))
|
2014-07-02 05:16:59 +00:00
|
|
|
{
|
2018-12-11 00:27:54 +00:00
|
|
|
ValidateSecurityToken(request, auth.Token);
|
2014-07-08 01:41:03 +00:00
|
|
|
}
|
2014-07-02 05:16:59 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
if (authAttribtues.AllowLocalOnly && !request.IsLocal)
|
|
|
|
{
|
|
|
|
throw new SecurityException("Operation not found.");
|
|
|
|
}
|
2014-07-02 05:16:59 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
var user = auth.User;
|
|
|
|
|
|
|
|
if (user == null & !auth.UserId.Equals(Guid.Empty))
|
2014-07-15 01:25:58 +00:00
|
|
|
{
|
2014-11-15 02:31:03 +00:00
|
|
|
throw new SecurityException("User with Id " + auth.UserId + " not found");
|
2014-07-15 01:25:58 +00:00
|
|
|
}
|
|
|
|
|
2014-10-15 00:05:09 +00:00
|
|
|
if (user != null)
|
2014-07-08 01:41:03 +00:00
|
|
|
{
|
2014-12-29 20:18:48 +00:00
|
|
|
ValidateUserAccess(user, request, authAttribtues, auth);
|
2014-07-02 05:16:59 +00:00
|
|
|
}
|
2014-07-08 01:41:03 +00:00
|
|
|
|
2015-02-07 03:25:23 +00:00
|
|
|
var info = GetTokenInfo(request);
|
2015-02-06 05:39:07 +00:00
|
|
|
|
2017-09-03 18:38:26 +00:00
|
|
|
if (!IsExemptFromRoles(auth, authAttribtues, request, info))
|
2014-11-15 02:31:03 +00:00
|
|
|
{
|
2017-08-30 18:52:29 +00:00
|
|
|
var roles = authAttribtues.GetRoles();
|
2014-11-15 02:31:03 +00:00
|
|
|
|
|
|
|
ValidateRoles(roles, user);
|
|
|
|
}
|
2014-11-15 15:51:49 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
if (!string.IsNullOrEmpty(auth.DeviceId) &&
|
|
|
|
!string.IsNullOrEmpty(auth.Client) &&
|
|
|
|
!string.IsNullOrEmpty(auth.Device))
|
2014-11-15 15:51:49 +00:00
|
|
|
{
|
|
|
|
SessionManager.LogSessionActivity(auth.Client,
|
|
|
|
auth.Version,
|
|
|
|
auth.DeviceId,
|
|
|
|
auth.Device,
|
|
|
|
request.RemoteIp,
|
|
|
|
user);
|
|
|
|
}
|
2014-11-15 02:31:03 +00:00
|
|
|
}
|
|
|
|
|
2017-09-03 18:38:26 +00:00
|
|
|
private void ValidateUserAccess(User user, IRequest request,
|
2014-12-29 20:18:48 +00:00
|
|
|
IAuthenticationAttributes authAttribtues,
|
|
|
|
AuthorizationInfo auth)
|
|
|
|
{
|
|
|
|
if (user.Policy.IsDisabled)
|
|
|
|
{
|
|
|
|
throw new SecurityException("User account has been disabled.")
|
|
|
|
{
|
|
|
|
SecurityExceptionType = SecurityExceptionType.Unauthenticated
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
if (!user.Policy.EnableRemoteAccess && !NetworkManager.IsInLocalNetwork(request.RemoteIp))
|
|
|
|
{
|
|
|
|
throw new SecurityException("User account has been disabled.")
|
|
|
|
{
|
|
|
|
SecurityExceptionType = SecurityExceptionType.Unauthenticated
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2014-12-29 20:18:48 +00:00
|
|
|
if (!user.Policy.IsAdministrator &&
|
|
|
|
!authAttribtues.EscapeParentalControl &&
|
|
|
|
!user.IsParentalScheduleAllowed())
|
|
|
|
{
|
2017-09-03 18:38:26 +00:00
|
|
|
request.Response.AddHeader("X-Application-Error-Code", "ParentalControl");
|
2014-12-29 20:18:48 +00:00
|
|
|
|
|
|
|
throw new SecurityException("This user account is not allowed access at this time.")
|
|
|
|
{
|
|
|
|
SecurityExceptionType = SecurityExceptionType.ParentalControl
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-03 18:38:26 +00:00
|
|
|
private bool IsExemptFromAuthenticationToken(AuthorizationInfo auth, IAuthenticationAttributes authAttribtues, IRequest request)
|
2014-11-15 02:31:03 +00:00
|
|
|
{
|
2016-02-18 18:27:46 +00:00
|
|
|
if (!_config.Configuration.IsStartupWizardCompleted && authAttribtues.AllowBeforeStartupWizard)
|
2014-11-15 02:31:03 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-09-03 18:38:26 +00:00
|
|
|
if (authAttribtues.AllowLocal && request.IsLocal)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2018-09-12 17:26:21 +00:00
|
|
|
if (authAttribtues.AllowLocalOnly && request.IsLocal)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2017-09-03 18:38:26 +00:00
|
|
|
|
2016-02-18 18:27:46 +00:00
|
|
|
return false;
|
2014-11-15 02:31:03 +00:00
|
|
|
}
|
|
|
|
|
2017-09-03 18:38:26 +00:00
|
|
|
private bool IsExemptFromRoles(AuthorizationInfo auth, IAuthenticationAttributes authAttribtues, IRequest request, AuthenticationInfo tokenInfo)
|
2014-11-15 02:31:03 +00:00
|
|
|
{
|
2016-02-18 18:27:46 +00:00
|
|
|
if (!_config.Configuration.IsStartupWizardCompleted && authAttribtues.AllowBeforeStartupWizard)
|
2014-11-15 02:31:03 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-09-03 18:38:26 +00:00
|
|
|
if (authAttribtues.AllowLocal && request.IsLocal)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
if (authAttribtues.AllowLocalOnly && request.IsLocal)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(auth.Token))
|
2015-02-06 05:39:07 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
if (tokenInfo != null && tokenInfo.UserId.Equals(Guid.Empty))
|
2015-02-06 05:39:07 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-11-15 02:31:03 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-10-28 23:17:55 +00:00
|
|
|
|
2019-01-06 20:50:43 +00:00
|
|
|
private static void ValidateRoles(string[] roles, User user)
|
2014-11-15 02:31:03 +00:00
|
|
|
{
|
2014-09-14 17:42:23 +00:00
|
|
|
if (roles.Contains("admin", StringComparer.OrdinalIgnoreCase))
|
|
|
|
{
|
2014-12-20 06:06:27 +00:00
|
|
|
if (user == null || !user.Policy.IsAdministrator)
|
2014-09-14 17:42:23 +00:00
|
|
|
{
|
2014-11-15 02:31:03 +00:00
|
|
|
throw new SecurityException("User does not have admin access.")
|
|
|
|
{
|
|
|
|
SecurityExceptionType = SecurityExceptionType.Unauthenticated
|
|
|
|
};
|
2014-09-14 17:42:23 +00:00
|
|
|
}
|
|
|
|
}
|
2014-11-15 02:31:03 +00:00
|
|
|
if (roles.Contains("delete", StringComparer.OrdinalIgnoreCase))
|
2014-07-02 04:57:18 +00:00
|
|
|
{
|
2014-12-20 06:06:27 +00:00
|
|
|
if (user == null || !user.Policy.EnableContentDeletion)
|
2014-11-15 02:31:03 +00:00
|
|
|
{
|
|
|
|
throw new SecurityException("User does not have delete access.")
|
|
|
|
{
|
|
|
|
SecurityExceptionType = SecurityExceptionType.Unauthenticated
|
|
|
|
};
|
|
|
|
}
|
2014-07-02 04:57:18 +00:00
|
|
|
}
|
2015-02-06 05:39:07 +00:00
|
|
|
if (roles.Contains("download", StringComparer.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
if (user == null || !user.Policy.EnableContentDownloading)
|
|
|
|
{
|
|
|
|
throw new SecurityException("User does not have download access.")
|
|
|
|
{
|
|
|
|
SecurityExceptionType = SecurityExceptionType.Unauthenticated
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2014-07-02 04:57:18 +00:00
|
|
|
}
|
|
|
|
|
2019-01-06 20:50:43 +00:00
|
|
|
private static AuthenticationInfo GetTokenInfo(IRequest request)
|
2015-02-07 03:25:23 +00:00
|
|
|
{
|
|
|
|
object info;
|
|
|
|
request.Items.TryGetValue("OriginalAuthenticationInfo", out info);
|
|
|
|
return info as AuthenticationInfo;
|
|
|
|
}
|
|
|
|
|
2017-09-03 18:38:26 +00:00
|
|
|
private void ValidateSecurityToken(IRequest request, string token)
|
2014-07-02 04:57:18 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
if (string.IsNullOrEmpty(token))
|
2014-07-02 04:57:18 +00:00
|
|
|
{
|
2015-10-04 22:04:56 +00:00
|
|
|
throw new SecurityException("Access token is required.");
|
2014-07-02 04:57:18 +00:00
|
|
|
}
|
|
|
|
|
2015-02-07 03:25:23 +00:00
|
|
|
var info = GetTokenInfo(request);
|
2014-11-15 02:31:03 +00:00
|
|
|
|
|
|
|
if (info == null)
|
2014-07-02 04:57:18 +00:00
|
|
|
{
|
2014-11-15 02:31:03 +00:00
|
|
|
throw new SecurityException("Access token is invalid or expired.");
|
2014-07-02 04:57:18 +00:00
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
//if (!string.IsNullOrEmpty(info.UserId))
|
2014-11-15 02:31:03 +00:00
|
|
|
//{
|
|
|
|
// var user = _userManager.GetUserById(info.UserId);
|
2014-07-02 04:57:18 +00:00
|
|
|
|
2014-11-15 02:31:03 +00:00
|
|
|
// if (user == null || user.Configuration.IsDisabled)
|
|
|
|
// {
|
|
|
|
// throw new SecurityException("User account has been disabled.");
|
|
|
|
// }
|
|
|
|
//}
|
2014-07-02 04:57:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|