2019-11-01 10:38:54 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2014-11-14 19:31:03 -07:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2019-09-01 23:19:29 -07:00
|
|
|
using System.Net;
|
2021-05-16 05:49:11 -07:00
|
|
|
using MediaBrowser.Common.Extensions;
|
2018-09-12 10:26:21 -07:00
|
|
|
using MediaBrowser.Controller.Library;
|
2019-01-13 12:20:41 -07:00
|
|
|
using MediaBrowser.Controller.Net;
|
|
|
|
using MediaBrowser.Controller.Security;
|
2020-06-15 12:21:18 -07:00
|
|
|
using Microsoft.AspNetCore.Http;
|
2019-03-05 11:20:28 -07:00
|
|
|
using Microsoft.Net.Http.Headers;
|
2014-07-01 21:57:18 -07:00
|
|
|
|
2016-11-03 18:18:51 -07:00
|
|
|
namespace Emby.Server.Implementations.HttpServer.Security
|
2014-07-01 21:57:18 -07:00
|
|
|
{
|
|
|
|
public class AuthorizationContext : IAuthorizationContext
|
|
|
|
{
|
2014-11-14 19:31:03 -07:00
|
|
|
private readonly IAuthenticationRepository _authRepo;
|
2018-09-12 10:26:21 -07:00
|
|
|
private readonly IUserManager _userManager;
|
2014-11-14 19:31:03 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public AuthorizationContext(IAuthenticationRepository authRepo, IUserManager userManager)
|
2014-11-14 19:31:03 -07:00
|
|
|
{
|
|
|
|
_authRepo = authRepo;
|
2018-09-12 10:26:21 -07:00
|
|
|
_userManager = userManager;
|
2014-11-14 19:31:03 -07:00
|
|
|
}
|
|
|
|
|
2020-09-02 03:22:14 -07:00
|
|
|
public AuthorizationInfo GetAuthorizationInfo(HttpContext requestContext)
|
2014-11-14 19:31:03 -07:00
|
|
|
{
|
2020-09-02 03:22:14 -07:00
|
|
|
if (requestContext.Request.HttpContext.Items.TryGetValue("AuthorizationInfo", out var cached))
|
2014-11-14 19:31:03 -07:00
|
|
|
{
|
2021-05-20 12:28:18 -07:00
|
|
|
return (AuthorizationInfo)cached!; // Cache should never contain null
|
2014-11-14 19:31:03 -07:00
|
|
|
}
|
|
|
|
|
2014-07-01 21:57:18 -07:00
|
|
|
return GetAuthorization(requestContext);
|
|
|
|
}
|
|
|
|
|
2020-06-15 12:21:18 -07:00
|
|
|
public AuthorizationInfo GetAuthorizationInfo(HttpRequest requestContext)
|
|
|
|
{
|
|
|
|
var auth = GetAuthorizationDictionary(requestContext);
|
2020-11-08 08:10:33 -07:00
|
|
|
var authInfo = GetAuthorizationInfoFromDictionary(auth, requestContext.Headers, requestContext.Query);
|
2020-06-15 12:21:18 -07:00
|
|
|
return authInfo;
|
|
|
|
}
|
|
|
|
|
2014-07-01 21:57:18 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the authorization.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="httpReq">The HTTP req.</param>
|
|
|
|
/// <returns>Dictionary{System.StringSystem.String}.</returns>
|
2020-09-02 03:22:14 -07:00
|
|
|
private AuthorizationInfo GetAuthorization(HttpContext httpReq)
|
2014-07-01 21:57:18 -07:00
|
|
|
{
|
|
|
|
var auth = GetAuthorizationDictionary(httpReq);
|
2020-11-08 08:10:33 -07:00
|
|
|
var authInfo = GetAuthorizationInfoFromDictionary(auth, httpReq.Request.Headers, httpReq.Request.Query);
|
2014-07-01 21:57:18 -07:00
|
|
|
|
2020-09-02 03:22:14 -07:00
|
|
|
httpReq.Request.HttpContext.Items["AuthorizationInfo"] = authInfo;
|
2020-06-15 12:21:18 -07:00
|
|
|
return authInfo;
|
|
|
|
}
|
|
|
|
|
2020-11-08 08:10:33 -07:00
|
|
|
private AuthorizationInfo GetAuthorizationInfoFromDictionary(
|
2021-05-20 12:28:18 -07:00
|
|
|
in Dictionary<string, string>? auth,
|
2020-06-15 12:21:18 -07:00
|
|
|
in IHeaderDictionary headers,
|
|
|
|
in IQueryCollection queryString)
|
|
|
|
{
|
2021-05-20 12:28:18 -07:00
|
|
|
string? deviceId = null;
|
|
|
|
string? device = null;
|
|
|
|
string? client = null;
|
|
|
|
string? version = null;
|
|
|
|
string? token = null;
|
2014-07-01 21:57:18 -07:00
|
|
|
|
|
|
|
if (auth != null)
|
|
|
|
{
|
|
|
|
auth.TryGetValue("DeviceId", out deviceId);
|
|
|
|
auth.TryGetValue("Device", out device);
|
|
|
|
auth.TryGetValue("Client", out client);
|
|
|
|
auth.TryGetValue("Version", out version);
|
2017-01-13 14:05:12 -07:00
|
|
|
auth.TryGetValue("Token", out token);
|
2014-07-01 21:57:18 -07:00
|
|
|
}
|
|
|
|
|
2020-06-15 12:21:18 -07:00
|
|
|
if (string.IsNullOrEmpty(token))
|
|
|
|
{
|
|
|
|
token = headers["X-Emby-Token"];
|
2017-01-13 14:05:12 -07:00
|
|
|
}
|
2014-07-03 19:22:57 -07:00
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
if (string.IsNullOrEmpty(token))
|
2015-10-04 15:04:56 -07:00
|
|
|
{
|
2020-06-15 12:21:18 -07:00
|
|
|
token = headers["X-MediaBrowser-Token"];
|
2015-10-04 15:04:56 -07:00
|
|
|
}
|
2020-06-15 12:21:18 -07:00
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
if (string.IsNullOrEmpty(token))
|
2014-07-03 19:22:57 -07:00
|
|
|
{
|
2020-06-15 12:21:18 -07:00
|
|
|
token = queryString["ApiKey"];
|
2014-07-03 19:22:57 -07:00
|
|
|
}
|
|
|
|
|
2020-06-16 15:45:17 -07:00
|
|
|
// TODO deprecate this query parameter.
|
2020-06-15 12:21:18 -07:00
|
|
|
if (string.IsNullOrEmpty(token))
|
|
|
|
{
|
|
|
|
token = queryString["api_key"];
|
|
|
|
}
|
|
|
|
|
|
|
|
var authInfo = new AuthorizationInfo
|
2014-07-01 21:57:18 -07:00
|
|
|
{
|
|
|
|
Client = client,
|
|
|
|
Device = device,
|
|
|
|
DeviceId = deviceId,
|
2014-07-02 11:34:08 -07:00
|
|
|
Version = version,
|
2020-11-08 08:10:33 -07:00
|
|
|
Token = token,
|
2020-12-01 14:47:42 -07:00
|
|
|
IsAuthenticated = false,
|
|
|
|
HasToken = false
|
2014-07-01 21:57:18 -07:00
|
|
|
};
|
2014-11-14 19:31:03 -07:00
|
|
|
|
2020-10-14 16:58:33 -07:00
|
|
|
if (string.IsNullOrWhiteSpace(token))
|
2014-11-14 19:31:03 -07:00
|
|
|
{
|
2020-10-14 16:58:33 -07:00
|
|
|
// Request doesn't contain a token.
|
2020-11-08 08:10:33 -07:00
|
|
|
return authInfo;
|
2020-10-14 16:58:33 -07:00
|
|
|
}
|
2014-11-14 19:31:03 -07:00
|
|
|
|
2020-12-01 14:47:42 -07:00
|
|
|
authInfo.HasToken = true;
|
2020-10-14 16:58:33 -07:00
|
|
|
var result = _authRepo.Get(new AuthenticationInfoQuery
|
|
|
|
{
|
|
|
|
AccessToken = token
|
|
|
|
});
|
2014-11-14 19:31:03 -07:00
|
|
|
|
2020-11-08 08:10:33 -07:00
|
|
|
if (result.Items.Count > 0)
|
|
|
|
{
|
|
|
|
authInfo.IsAuthenticated = true;
|
|
|
|
}
|
|
|
|
|
2020-10-14 16:58:33 -07:00
|
|
|
var originalAuthenticationInfo = result.Items.Count > 0 ? result.Items[0] : null;
|
2017-10-17 12:50:10 -07:00
|
|
|
|
2020-10-14 16:58:33 -07:00
|
|
|
if (originalAuthenticationInfo != null)
|
|
|
|
{
|
|
|
|
var updateToken = false;
|
2017-10-17 12:50:10 -07:00
|
|
|
|
2020-10-14 16:58:33 -07:00
|
|
|
// TODO: Remove these checks for IsNullOrWhiteSpace
|
|
|
|
if (string.IsNullOrWhiteSpace(authInfo.Client))
|
|
|
|
{
|
|
|
|
authInfo.Client = originalAuthenticationInfo.AppName;
|
|
|
|
}
|
2017-10-17 12:50:10 -07:00
|
|
|
|
2020-10-14 16:58:33 -07:00
|
|
|
if (string.IsNullOrWhiteSpace(authInfo.DeviceId))
|
|
|
|
{
|
|
|
|
authInfo.DeviceId = originalAuthenticationInfo.DeviceId;
|
|
|
|
}
|
2017-10-17 12:50:10 -07:00
|
|
|
|
2020-10-14 16:58:33 -07:00
|
|
|
// Temporary. TODO - allow clients to specify that the token has been shared with a casting device
|
|
|
|
var allowTokenInfoUpdate = authInfo.Client == null || authInfo.Client.IndexOf("chromecast", StringComparison.OrdinalIgnoreCase) == -1;
|
2017-10-17 12:50:10 -07:00
|
|
|
|
2020-10-14 16:58:33 -07:00
|
|
|
if (string.IsNullOrWhiteSpace(authInfo.Device))
|
|
|
|
{
|
|
|
|
authInfo.Device = originalAuthenticationInfo.DeviceName;
|
|
|
|
}
|
|
|
|
else if (!string.Equals(authInfo.Device, originalAuthenticationInfo.DeviceName, StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
if (allowTokenInfoUpdate)
|
2017-10-17 12:50:10 -07:00
|
|
|
{
|
2020-10-14 16:58:33 -07:00
|
|
|
updateToken = true;
|
|
|
|
originalAuthenticationInfo.DeviceName = authInfo.Device;
|
2018-09-12 10:26:21 -07:00
|
|
|
}
|
2020-10-14 16:58:33 -07:00
|
|
|
}
|
2018-09-12 10:26:21 -07:00
|
|
|
|
2020-10-14 16:58:33 -07:00
|
|
|
if (string.IsNullOrWhiteSpace(authInfo.Version))
|
|
|
|
{
|
|
|
|
authInfo.Version = originalAuthenticationInfo.AppVersion;
|
|
|
|
}
|
|
|
|
else if (!string.Equals(authInfo.Version, originalAuthenticationInfo.AppVersion, StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
if (allowTokenInfoUpdate)
|
2018-09-12 10:26:21 -07:00
|
|
|
{
|
2017-10-17 12:50:10 -07:00
|
|
|
updateToken = true;
|
2020-10-14 16:58:33 -07:00
|
|
|
originalAuthenticationInfo.AppVersion = authInfo.Version;
|
2018-09-12 10:26:21 -07:00
|
|
|
}
|
2020-10-14 16:58:33 -07:00
|
|
|
}
|
2018-09-12 10:26:21 -07:00
|
|
|
|
2020-10-14 16:58:33 -07:00
|
|
|
if ((DateTime.UtcNow - originalAuthenticationInfo.DateLastActivity).TotalMinutes > 3)
|
|
|
|
{
|
|
|
|
originalAuthenticationInfo.DateLastActivity = DateTime.UtcNow;
|
|
|
|
updateToken = true;
|
|
|
|
}
|
2018-09-12 10:26:21 -07:00
|
|
|
|
2020-10-14 16:58:33 -07:00
|
|
|
if (!originalAuthenticationInfo.UserId.Equals(Guid.Empty))
|
|
|
|
{
|
|
|
|
authInfo.User = _userManager.GetUserById(originalAuthenticationInfo.UserId);
|
2017-10-17 12:50:10 -07:00
|
|
|
|
2020-10-14 16:58:33 -07:00
|
|
|
if (authInfo.User != null && !string.Equals(authInfo.User.Username, originalAuthenticationInfo.UserName, StringComparison.OrdinalIgnoreCase))
|
2017-10-17 12:50:10 -07:00
|
|
|
{
|
2020-10-14 16:58:33 -07:00
|
|
|
originalAuthenticationInfo.UserName = authInfo.User.Username;
|
|
|
|
updateToken = true;
|
2017-10-17 12:50:10 -07:00
|
|
|
}
|
2020-10-28 07:40:11 -07:00
|
|
|
|
2020-12-09 23:15:33 -07:00
|
|
|
authInfo.IsApiKey = false;
|
2020-10-28 07:40:11 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-12-09 23:15:33 -07:00
|
|
|
authInfo.IsApiKey = true;
|
2014-11-14 19:31:03 -07:00
|
|
|
}
|
2020-10-14 16:58:33 -07:00
|
|
|
|
|
|
|
if (updateToken)
|
|
|
|
{
|
|
|
|
_authRepo.Update(originalAuthenticationInfo);
|
2014-11-14 19:31:03 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-08 08:10:33 -07:00
|
|
|
return authInfo;
|
2014-07-01 21:57:18 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the auth.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="httpReq">The HTTP req.</param>
|
|
|
|
/// <returns>Dictionary{System.StringSystem.String}.</returns>
|
2021-05-20 12:28:18 -07:00
|
|
|
private Dictionary<string, string>? GetAuthorizationDictionary(HttpContext httpReq)
|
2014-07-01 21:57:18 -07:00
|
|
|
{
|
2020-09-02 03:22:14 -07:00
|
|
|
var auth = httpReq.Request.Headers["X-Emby-Authorization"];
|
2020-06-15 12:21:18 -07:00
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(auth))
|
|
|
|
{
|
2020-09-02 03:22:14 -07:00
|
|
|
auth = httpReq.Request.Headers[HeaderNames.Authorization];
|
2020-06-15 12:21:18 -07:00
|
|
|
}
|
|
|
|
|
2021-05-16 05:49:11 -07:00
|
|
|
return GetAuthorization(auth.Count > 0 ? auth[0] : null);
|
2020-06-15 12:21:18 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the auth.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="httpReq">The HTTP req.</param>
|
|
|
|
/// <returns>Dictionary{System.StringSystem.String}.</returns>
|
2021-05-20 12:28:18 -07:00
|
|
|
private Dictionary<string, string>? GetAuthorizationDictionary(HttpRequest httpReq)
|
2020-06-15 12:21:18 -07:00
|
|
|
{
|
2020-06-17 05:52:15 -07:00
|
|
|
var auth = httpReq.Headers["X-Emby-Authorization"];
|
2015-07-03 04:51:45 -07:00
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
if (string.IsNullOrEmpty(auth))
|
2015-07-03 04:51:45 -07:00
|
|
|
{
|
2019-03-05 11:20:28 -07:00
|
|
|
auth = httpReq.Headers[HeaderNames.Authorization];
|
2015-07-03 04:51:45 -07:00
|
|
|
}
|
2014-07-01 21:57:18 -07:00
|
|
|
|
2021-05-16 05:49:11 -07:00
|
|
|
return GetAuthorization(auth.Count > 0 ? auth[0] : null);
|
2014-07-01 21:57:18 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the authorization.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="authorizationHeader">The authorization header.</param>
|
|
|
|
/// <returns>Dictionary{System.StringSystem.String}.</returns>
|
2021-05-20 12:28:18 -07:00
|
|
|
private Dictionary<string, string>? GetAuthorization(ReadOnlySpan<char> authorizationHeader)
|
2014-07-01 21:57:18 -07:00
|
|
|
{
|
2019-09-01 23:19:29 -07:00
|
|
|
if (authorizationHeader == null)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
2014-07-01 21:57:18 -07:00
|
|
|
|
2021-05-16 05:49:11 -07:00
|
|
|
var firstSpace = authorizationHeader.IndexOf(' ');
|
2014-07-01 21:57:18 -07:00
|
|
|
|
2021-05-16 05:49:11 -07:00
|
|
|
// There should be at least two parts
|
|
|
|
if (firstSpace == -1)
|
2019-09-01 23:19:29 -07:00
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
2014-07-01 21:57:18 -07:00
|
|
|
|
2021-05-16 05:49:11 -07:00
|
|
|
var name = authorizationHeader[..firstSpace];
|
2017-01-13 14:05:12 -07:00
|
|
|
|
2021-05-16 05:49:11 -07:00
|
|
|
if (!name.Equals("MediaBrowser", StringComparison.OrdinalIgnoreCase)
|
2021-05-16 06:27:31 -07:00
|
|
|
&& !name.Equals("Emby", StringComparison.OrdinalIgnoreCase))
|
2014-07-01 21:57:18 -07:00
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2021-02-26 07:30:00 -07:00
|
|
|
// Remove up until the first space
|
2021-06-03 08:37:42 -07:00
|
|
|
authorizationHeader = authorizationHeader[(firstSpace + 1)..];
|
|
|
|
return GetParts(authorizationHeader.ToString());
|
2020-12-14 06:05:53 -07:00
|
|
|
}
|
2020-12-15 13:01:42 -07:00
|
|
|
|
2020-12-15 13:06:47 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Get the authorization header components.
|
|
|
|
/// </summary>
|
2021-06-03 08:07:25 -07:00
|
|
|
/// <param name="authorizationHeader">The authorization header.</param>
|
2020-12-15 13:06:47 -07:00
|
|
|
/// <returns>string</returns>
|
2021-06-03 08:12:16 -07:00
|
|
|
public static Dictionary<string, string> GetParts(string authorizationHeader)
|
2020-12-15 13:01:42 -07:00
|
|
|
{
|
2021-02-26 07:30:00 -07:00
|
|
|
var result = new Dictionary<string, string>();
|
2020-12-15 13:01:42 -07:00
|
|
|
var escaped = false;
|
2021-01-02 10:18:47 -07:00
|
|
|
int start = 0;
|
2021-02-26 07:30:00 -07:00
|
|
|
string key = string.Empty;
|
|
|
|
|
2021-06-03 08:10:19 -07:00
|
|
|
int i;
|
2021-06-03 08:12:16 -07:00
|
|
|
for (i = 0; i < authorizationHeader.Length; i++)
|
2020-12-15 13:01:42 -07:00
|
|
|
{
|
2021-06-03 08:12:16 -07:00
|
|
|
var token = authorizationHeader[i];
|
2021-06-03 08:10:19 -07:00
|
|
|
if (token == '"' || token == ',')
|
2020-12-15 13:01:42 -07:00
|
|
|
{
|
2021-01-02 10:18:47 -07:00
|
|
|
// Applying a XOR logic to evaluate whether it is opening or closing a value
|
|
|
|
escaped = (!escaped) == (token == '"');
|
|
|
|
if (token == ',' && !escaped)
|
2020-12-15 13:01:42 -07:00
|
|
|
{
|
2021-01-02 10:18:47 -07:00
|
|
|
// Meeting a comma after a closing escape char means the value is complete
|
|
|
|
if (start < i)
|
2020-12-15 13:01:42 -07:00
|
|
|
{
|
2021-06-03 08:12:16 -07:00
|
|
|
result[key] = WebUtility.UrlDecode(authorizationHeader[start..i].Trim('"'));
|
2021-02-26 07:30:00 -07:00
|
|
|
key = string.Empty;
|
2020-12-15 13:01:42 -07:00
|
|
|
}
|
2021-01-02 10:18:47 -07:00
|
|
|
|
|
|
|
start = i + 1;
|
2020-12-15 13:01:42 -07:00
|
|
|
}
|
|
|
|
}
|
2021-02-26 07:30:00 -07:00
|
|
|
else if (!escaped && token == '=')
|
|
|
|
{
|
2021-06-03 08:12:16 -07:00
|
|
|
key = authorizationHeader[start.. i];
|
2021-02-26 07:30:00 -07:00
|
|
|
start = i + 1;
|
|
|
|
}
|
2020-12-15 13:01:42 -07:00
|
|
|
}
|
2021-01-02 10:18:47 -07:00
|
|
|
|
2020-12-15 13:01:42 -07:00
|
|
|
// Add last value
|
2021-01-02 10:18:47 -07:00
|
|
|
if (start < i)
|
|
|
|
{
|
2021-06-03 08:12:16 -07:00
|
|
|
result[key] = WebUtility.UrlDecode(authorizationHeader[start..i].Trim('"'));
|
2021-01-02 10:18:47 -07:00
|
|
|
}
|
2020-12-15 13:01:42 -07:00
|
|
|
|
2021-02-26 07:30:00 -07:00
|
|
|
return result;
|
2020-12-15 13:01:42 -07:00
|
|
|
}
|
2014-07-01 21:57:18 -07:00
|
|
|
}
|
|
|
|
}
|