jellyfin/Emby.Server.Implementations/Session/SessionWebSocketListener.cs

287 lines
9.9 KiB
C#
Raw Normal View History

using System;
2020-04-28 14:12:06 +02:00
using System.Collections.Generic;
2020-04-17 13:47:00 +02:00
using System.Linq;
using System.Net.WebSockets;
using System.Threading;
using System.Threading.Tasks;
using Jellyfin.Api.Extensions;
using MediaBrowser.Controller.Net;
2023-07-03 00:14:44 +02:00
using MediaBrowser.Controller.Net.WebSocketMessages.Outbound;
using MediaBrowser.Controller.Session;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Logging;
2016-11-04 00:35:19 +01:00
namespace Emby.Server.Implementations.Session
{
/// <summary>
/// Class SessionWebSocketListener.
/// </summary>
2020-11-28 09:50:16 +01:00
public sealed class SessionWebSocketListener : IWebSocketListener, IDisposable
{
2020-04-17 13:47:00 +02:00
/// <summary>
/// The timeout in seconds after which a WebSocket is considered to be lost.
/// </summary>
private const int WebSocketLostTimeout = 60;
2020-04-17 13:47:00 +02:00
/// <summary>
2020-04-28 14:12:06 +02:00
/// The keep-alive interval factor; controls how often the watcher will check on the status of the WebSockets.
2020-04-17 13:47:00 +02:00
/// </summary>
private const float IntervalFactor = 0.2f;
2020-04-17 13:47:00 +02:00
/// <summary>
/// The ForceKeepAlive factor; controls when a ForceKeepAlive is sent.
/// </summary>
private const float ForceKeepAliveFactor = 0.75f;
2020-04-17 13:47:00 +02:00
/// <summary>
/// The WebSocket watchlist.
2013-05-10 14:18:07 +02:00
/// </summary>
private readonly HashSet<IWebSocketConnection> _webSockets = new HashSet<IWebSocketConnection>();
2020-11-28 09:50:16 +01:00
2020-04-17 13:47:00 +02:00
/// <summary>
/// Lock used for accessing the WebSockets watchlist.
2020-04-28 14:12:06 +02:00
/// </summary>
private readonly object _webSocketsLock = new object();
2020-04-28 14:12:06 +02:00
private readonly ISessionManager _sessionManager;
private readonly ILogger<SessionWebSocketListener> _logger;
private readonly ILoggerFactory _loggerFactory;
2020-04-28 14:12:06 +02:00
/// <summary>
/// The KeepAlive cancellation token.
2020-04-28 14:12:06 +02:00
/// </summary>
private System.Timers.Timer _keepAlive;
2015-03-08 20:48:30 +01:00
2013-05-10 14:18:07 +02:00
/// <summary>
/// Initializes a new instance of the <see cref="SessionWebSocketListener" /> class.
/// </summary>
2019-12-17 23:15:02 +01:00
/// <param name="logger">The logger.</param>
/// <param name="sessionManager">The session manager.</param>
/// <param name="loggerFactory">The logger factory.</param>
2019-12-17 23:15:02 +01:00
public SessionWebSocketListener(
ILogger<SessionWebSocketListener> logger,
ISessionManager sessionManager,
ILoggerFactory loggerFactory)
{
2019-12-17 23:15:02 +01:00
_logger = logger;
_sessionManager = sessionManager;
2019-12-17 23:15:02 +01:00
_loggerFactory = loggerFactory;
_keepAlive = new System.Timers.Timer(TimeSpan.FromSeconds(WebSocketLostTimeout * IntervalFactor))
{
AutoReset = true,
Enabled = false
};
_keepAlive.Elapsed += KeepAliveSockets;
}
2020-11-28 09:50:16 +01:00
/// <inheritdoc />
public void Dispose()
{
if (_keepAlive is not null)
{
_keepAlive.Stop();
_keepAlive.Elapsed -= KeepAliveSockets;
_keepAlive.Dispose();
_keepAlive = null!;
}
lock (_webSocketsLock)
{
foreach (var webSocket in _webSockets)
{
webSocket.Closed -= OnWebSocketClosed;
}
_webSockets.Clear();
}
2015-03-08 20:48:30 +01:00
}
/// <summary>
/// Processes the message.
/// </summary>
/// <param name="message">The message.</param>
/// <returns>Task.</returns>
public Task ProcessMessageAsync(WebSocketMessageInfo message)
=> Task.CompletedTask;
/// <inheritdoc />
public async Task ProcessWebSocketConnectedAsync(IWebSocketConnection connection, HttpContext httpContext)
2015-03-08 20:48:30 +01:00
{
var session = await GetSession(httpContext, connection.RemoteEndPoint?.ToString()).ConfigureAwait(false);
2022-12-05 15:01:13 +01:00
if (session is not null)
2015-03-08 20:48:30 +01:00
{
EnsureController(session, connection);
await KeepAliveWebSocket(connection).ConfigureAwait(false);
2015-03-08 20:48:30 +01:00
}
else
{
_logger.LogWarning("Unable to determine session based on query string: {0}", httpContext.Request.QueryString);
2015-03-08 20:48:30 +01:00
}
}
2023-02-15 23:41:28 +01:00
private async Task<SessionInfo?> GetSession(HttpContext httpContext, string? remoteEndpoint)
2015-03-08 20:48:30 +01:00
{
if (!httpContext.User.Identity?.IsAuthenticated ?? false)
2015-03-16 17:47:14 +01:00
{
return null;
2015-03-16 17:47:14 +01:00
}
var deviceId = httpContext.User.GetDeviceId();
if (httpContext.Request.Query.TryGetValue("deviceId", out var queryDeviceId))
{
deviceId = queryDeviceId;
}
return await _sessionManager.GetSessionByAuthenticationToken(httpContext.User.GetToken(), deviceId, remoteEndpoint)
.ConfigureAwait(false);
2015-03-08 20:48:30 +01:00
}
2018-09-12 19:26:21 +02:00
private void EnsureController(SessionInfo session, IWebSocketConnection connection)
2014-04-16 04:17:48 +02:00
{
2019-12-17 23:15:02 +01:00
var controllerInfo = session.EnsureController<WebSocketController>(
s => new WebSocketController(_loggerFactory.CreateLogger<WebSocketController>(), s, _sessionManager));
2014-04-16 04:17:48 +02:00
2018-09-12 19:26:21 +02:00
var controller = (WebSocketController)controllerInfo.Item1;
controller.AddWebSocket(connection);
2020-12-07 01:04:48 +01:00
_sessionManager.OnSessionControllerConnected(session);
2013-10-03 03:22:50 +02:00
}
2020-04-17 13:47:00 +02:00
/// <summary>
/// Called when a WebSocket is closed.
/// </summary>
/// <param name="sender">The WebSocket.</param>
/// <param name="e">The event arguments.</param>
2023-02-15 23:41:28 +01:00
private void OnWebSocketClosed(object? sender, EventArgs e)
2020-04-17 13:47:00 +02:00
{
2023-02-15 23:41:28 +01:00
if (sender is null)
{
return;
}
2020-05-26 11:37:52 +02:00
var webSocket = (IWebSocketConnection)sender;
2020-05-04 19:46:02 +02:00
_logger.LogDebug("WebSocket {0} is closed.", webSocket);
2020-04-21 23:37:37 +02:00
RemoveWebSocket(webSocket);
2020-04-17 13:47:00 +02:00
}
/// <summary>
/// Adds a WebSocket to the KeepAlive watchlist.
/// </summary>
/// <param name="webSocket">The WebSocket to monitor.</param>
2020-05-26 11:37:52 +02:00
private async Task KeepAliveWebSocket(IWebSocketConnection webSocket)
2020-04-17 13:47:00 +02:00
{
2020-04-28 14:12:06 +02:00
lock (_webSocketsLock)
2020-04-21 23:37:37 +02:00
{
2020-04-28 14:12:06 +02:00
if (!_webSockets.Add(webSocket))
{
_logger.LogWarning("Multiple attempts to keep alive single WebSocket {0}", webSocket);
return;
}
2020-06-15 23:43:52 +02:00
2020-04-28 14:12:06 +02:00
webSocket.Closed += OnWebSocketClosed;
webSocket.LastKeepAliveDate = DateTime.UtcNow;
_keepAlive.Start();
2020-04-21 23:37:37 +02:00
}
2020-04-17 13:47:00 +02:00
// Notify WebSocket about timeout
try
{
2020-07-24 16:37:54 +02:00
await SendForceKeepAlive(webSocket).ConfigureAwait(false);
2020-04-17 13:47:00 +02:00
}
catch (WebSocketException exception)
{
2020-05-04 19:46:02 +02:00
_logger.LogWarning(exception, "Cannot send ForceKeepAlive message to WebSocket {0}.", webSocket);
2020-04-17 13:47:00 +02:00
}
}
2020-04-21 23:37:37 +02:00
/// <summary>
/// Removes a WebSocket from the KeepAlive watchlist.
/// </summary>
/// <param name="webSocket">The WebSocket to remove.</param>
private void RemoveWebSocket(IWebSocketConnection webSocket)
{
2020-04-28 14:12:06 +02:00
lock (_webSocketsLock)
{
if (_webSockets.Remove(webSocket))
2020-04-28 14:12:06 +02:00
{
webSocket.Closed -= OnWebSocketClosed;
}
else
2020-04-28 14:12:06 +02:00
{
_logger.LogWarning("WebSocket {0} not on watchlist.", webSocket);
2020-04-28 14:12:06 +02:00
}
2020-04-17 13:47:00 +02:00
if (_webSockets.Count == 0)
2020-04-28 14:12:06 +02:00
{
_keepAlive.Stop();
2020-04-28 14:12:06 +02:00
}
2020-04-17 13:47:00 +02:00
}
}
/// <summary>
2020-05-04 19:46:02 +02:00
/// Checks status of KeepAlive of WebSockets.
2020-04-17 13:47:00 +02:00
/// </summary>
private async void KeepAliveSockets(object? o, EventArgs? e)
2020-04-17 13:47:00 +02:00
{
2020-05-09 14:34:07 +02:00
List<IWebSocketConnection> inactive;
List<IWebSocketConnection> lost;
2020-05-04 19:46:02 +02:00
lock (_webSocketsLock)
2020-04-17 13:47:00 +02:00
{
2020-05-04 19:46:02 +02:00
_logger.LogDebug("Watching {0} WebSockets.", _webSockets.Count);
2020-04-17 13:47:00 +02:00
2020-05-04 19:46:02 +02:00
inactive = _webSockets.Where(i =>
2020-04-28 14:12:06 +02:00
{
2020-05-04 19:46:02 +02:00
var elapsed = (DateTime.UtcNow - i.LastKeepAliveDate).TotalSeconds;
return (elapsed > WebSocketLostTimeout * ForceKeepAliveFactor) && (elapsed < WebSocketLostTimeout);
2020-05-09 14:34:07 +02:00
}).ToList();
lost = _webSockets.Where(i => (DateTime.UtcNow - i.LastKeepAliveDate).TotalSeconds >= WebSocketLostTimeout).ToList();
2020-05-04 19:46:02 +02:00
}
2020-04-17 13:47:00 +02:00
2020-07-24 16:37:54 +02:00
if (inactive.Count > 0)
2020-05-04 19:46:02 +02:00
{
2020-05-15 20:06:41 +02:00
_logger.LogInformation("Sending ForceKeepAlive message to {0} inactive WebSockets.", inactive.Count);
2020-05-04 19:46:02 +02:00
}
foreach (var webSocket in inactive)
{
try
2020-04-17 13:47:00 +02:00
{
2020-07-24 16:37:54 +02:00
await SendForceKeepAlive(webSocket).ConfigureAwait(false);
2020-04-17 13:47:00 +02:00
}
2020-05-04 19:46:02 +02:00
catch (WebSocketException exception)
2020-04-17 13:47:00 +02:00
{
2020-05-04 19:46:02 +02:00
_logger.LogInformation(exception, "Error sending ForceKeepAlive message to WebSocket.");
2020-05-09 14:34:07 +02:00
lost.Add(webSocket);
2020-04-17 13:47:00 +02:00
}
2020-05-04 19:46:02 +02:00
}
2020-04-17 13:47:00 +02:00
2020-05-04 19:46:02 +02:00
lock (_webSocketsLock)
{
2020-07-24 16:37:54 +02:00
if (lost.Count > 0)
2020-04-21 23:37:37 +02:00
{
2020-05-15 20:06:41 +02:00
_logger.LogInformation("Lost {0} WebSockets.", lost.Count);
2020-05-09 14:34:07 +02:00
foreach (var webSocket in lost)
2020-04-28 14:12:06 +02:00
{
2020-05-04 19:46:02 +02:00
// TODO: handle session relative to the lost webSocket
RemoveWebSocket(webSocket);
2020-04-28 14:12:06 +02:00
}
2020-04-21 23:37:37 +02:00
}
2020-04-17 13:47:00 +02:00
}
}
/// <summary>
/// Sends a ForceKeepAlive message to a WebSocket.
/// </summary>
/// <param name="webSocket">The WebSocket.</param>
/// <returns>Task.</returns>
private Task SendForceKeepAlive(IWebSocketConnection webSocket)
{
2020-07-24 16:37:54 +02:00
return webSocket.SendAsync(
2023-07-03 00:14:44 +02:00
new ForceKeepAliveMessage(WebSocketLostTimeout),
2020-07-24 16:37:54 +02:00
CancellationToken.None);
2020-04-17 13:47:00 +02:00
}
}
}